summaryrefslogtreecommitdiff
path: root/lib/punycode.js
AgeCommit message (Collapse)Author
2018-07-16lib: update punycode to 2.1.1Rich Trott
PR-URL: https://github.com/nodejs/node/pull/21768 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Yuta Hiroto <hello@hiroppy.me> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
2016-10-04lib: remove let from for loopsMyles Borins
This is a known de-opt. It may not be 100% necessary in all cases but it seems like a decent enough idea to avoid it. PR-URL: https://github.com/nodejs/node/pull/8873 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
2016-06-17punycode: update to v2.0.0Mathias Bynens
Punycode v2.0.0 drops support for old and non-Node environments. PR-URL: https://github.com/nodejs/node/pull/7267 Fixes: https://github.com/nodejs/node/issues/7224 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Roman Reiss <me@silverwind.io>
2015-03-24lib: add missing `new` for errors lib/*.jsMayhem
Not including `new` adds a useless frame and removes a potentially useful frame. PR-URL: https://github.com/iojs/io.js/pull/1246 Reviewed-By: Petka Antonov <petka_antonov@hotmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
2014-11-28punycode: update to v1.3.2Mathias Bynens
Changes since v1.2.3: * Email address support in `toASCII` and `toUnicode` * `punycode.ucs2.encode` now no longer mutates the `codePoints` argument * Ensure trailing `.` in domain names are preserved * Some minor code cleanup + bug fixes Reviewed-By: Fedor Indutny <fedor@indutny.com> PR-URL: https://github.com/iojs/io.js/pull/6
2013-08-15lib: remove unused variables and functionsBrian White
2013-06-20punycode: update to v1.2.3Mathias Bynens
2013-01-16punycode: update to v1.2.0Mathias Bynens
This update adds support for RFC 3490 separators for improved compatibility with web browsers.
2012-07-04punycode: update to v1.1.1Mathias Bynens
2012-02-27punycode: Update to v1.0.0Mathias Bynens
2012-01-11punycode: Update to v0.3.0Mathias Bynens
2011-11-30punycode: Update to v0.2.1Mathias Bynens
2011-11-13punycode: Update to v0.1.1.Mathias Bynens
2011-11-11punycode: replace with Mathias Bynens's implementationBen Noordhuis
The currently bundled library doesn't pass all the test cases from RFC 3492. Mathias's library does. Home: https://github.com/bestiejs/punycode.js
2011-07-06punycode: Test for integer overflowisaacs
2011-07-06Close #1149 IDNA and Punycode support in url.parseJeremy Selier
Using @bnoordhuis's punycode lib. Close #1174 also