<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node-new.git/lib/punycode.js, branch try_Python3_on_macOS</title>
<subtitle>github.com: nodejs/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/'/>
<entry>
<title>lib: update punycode to 2.1.1</title>
<updated>2018-07-16T22:55:15+00:00</updated>
<author>
<name>Rich Trott</name>
<email>rtrott@gmail.com</email>
</author>
<published>2018-07-11T17:57:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=ab10bfe376b17f3f3567605148ef6fdcc5caef7c'/>
<id>ab10bfe376b17f3f3567605148ef6fdcc5caef7c</id>
<content type='text'>
PR-URL: https://github.com/nodejs/node/pull/21768
Reviewed-By: Ruben Bridgewater &lt;ruben@bridgewater.de&gt;
Reviewed-By: Yuta Hiroto &lt;hello@hiroppy.me&gt;
Reviewed-By: Tiancheng "Timothy" Gu &lt;timothygu99@gmail.com&gt;
Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
Reviewed-By: Trivikram Kamat &lt;trivikr.dev@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR-URL: https://github.com/nodejs/node/pull/21768
Reviewed-By: Ruben Bridgewater &lt;ruben@bridgewater.de&gt;
Reviewed-By: Yuta Hiroto &lt;hello@hiroppy.me&gt;
Reviewed-By: Tiancheng "Timothy" Gu &lt;timothygu99@gmail.com&gt;
Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
Reviewed-By: Trivikram Kamat &lt;trivikr.dev@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib: remove let from for loops</title>
<updated>2016-10-04T16:17:32+00:00</updated>
<author>
<name>Myles Borins</name>
<email>mborins@us.ibm.com</email>
</author>
<published>2016-09-30T22:31:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=2e568d95bdd689494b163f1cfe8bbc38f32e45ed'/>
<id>2e568d95bdd689494b163f1cfe8bbc38f32e45ed</id>
<content type='text'>
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 &lt;mscdex@mscdex.net&gt;
Reviewed-By: Ilkka Myller &lt;ilkka.myller@nodefield.com&gt;
Reviewed-By: Johan Bergström &lt;bugs@bergstroem.nu&gt;
Reviewed-By: Luigi Pinca &lt;luigipinca@gmail.com&gt;
Reviewed-By: Michaël Zasso &lt;targos@protonmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;mscdex@mscdex.net&gt;
Reviewed-By: Ilkka Myller &lt;ilkka.myller@nodefield.com&gt;
Reviewed-By: Johan Bergström &lt;bugs@bergstroem.nu&gt;
Reviewed-By: Luigi Pinca &lt;luigipinca@gmail.com&gt;
Reviewed-By: Michaël Zasso &lt;targos@protonmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: update to v2.0.0</title>
<updated>2016-06-17T15:03:49+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2016-06-10T16:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=b77eb8c66c01083ddd11408c9660a4b0991ca869'/>
<id>b77eb8c66c01083ddd11408c9660a4b0991ca869</id>
<content type='text'>
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 &lt;info@bnoordhuis.nl&gt;
Reviewed-By: Roman Reiss &lt;me@silverwind.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;info@bnoordhuis.nl&gt;
Reviewed-By: Roman Reiss &lt;me@silverwind.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib: add missing `new` for errors lib/*.js</title>
<updated>2015-03-24T19:42:15+00:00</updated>
<author>
<name>Mayhem</name>
<email>stepien.nicolas@gmail.com</email>
</author>
<published>2015-03-24T14:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=1832743e181149c16ccd3752247f4306d3aa0fe1'/>
<id>1832743e181149c16ccd3752247f4306d3aa0fe1</id>
<content type='text'>
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 &lt;petka_antonov@hotmail.com&gt;
Reviewed-By: Roman Reiss &lt;me@silverwind.io&gt;
Reviewed-By: Brendan Ashworth &lt;brendan.ashworth@me.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;petka_antonov@hotmail.com&gt;
Reviewed-By: Roman Reiss &lt;me@silverwind.io&gt;
Reviewed-By: Brendan Ashworth &lt;brendan.ashworth@me.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: update to v1.3.2</title>
<updated>2014-11-28T10:21:43+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2014-11-28T09:50:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=232c4c27cc3d702da08f1df538d480c2a5063f0e'/>
<id>232c4c27cc3d702da08f1df538d480c2a5063f0e</id>
<content type='text'>
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 &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/iojs/io.js/pull/6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/iojs/io.js/pull/6
</pre>
</div>
</content>
</entry>
<entry>
<title>lib: remove unused variables and functions</title>
<updated>2013-08-16T00:19:17+00:00</updated>
<author>
<name>Brian White</name>
<email>mscdex@mscdex.net</email>
</author>
<published>2013-08-15T21:55:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=6d842897c5966cee1924b5073e273568923c8693'/>
<id>6d842897c5966cee1924b5073e273568923c8693</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: update to v1.2.3</title>
<updated>2013-06-20T11:02:53+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2013-06-20T10:40:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=24ba9fdec8c4ba0fd367aef4a3f266f69d8655aa'/>
<id>24ba9fdec8c4ba0fd367aef4a3f266f69d8655aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: update to v1.2.0</title>
<updated>2013-01-16T15:53:11+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2013-01-11T08:57:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=bc764f3dffe6906abd4df5e7189b7d96f225b4f0'/>
<id>bc764f3dffe6906abd4df5e7189b7d96f225b4f0</id>
<content type='text'>
This update adds support for RFC 3490 separators for improved
compatibility with web browsers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This update adds support for RFC 3490 separators for improved
compatibility with web browsers.
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: update to v1.1.1</title>
<updated>2012-07-04T11:45:14+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2012-06-27T15:47:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=2ba96451a9bf5d91e5df2cbff372c4983da16dd4'/>
<id>2ba96451a9bf5d91e5df2cbff372c4983da16dd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>punycode: Update to v1.0.0</title>
<updated>2012-02-27T22:00:18+00:00</updated>
<author>
<name>Mathias Bynens</name>
<email>mathias@qiwi.be</email>
</author>
<published>2012-02-24T15:05:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node-new.git/commit/?id=cacd651ec6944c7b6596d1c199ab9a37ba9abf7c'/>
<id>cacd651ec6944c7b6596d1c199ab9a37ba9abf7c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
