-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib: update punycode to 2.1.1 #21768
Conversation
@@ -419,7 +419,7 @@ const punycode = { | |||
* @memberOf punycode | |||
* @type String | |||
*/ | |||
'version': '2.0.0', | |||
'version': '2.1.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this correct? The PR title says this is an upgrade to 2.1.1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did npm install punycode@2.1.1
so...uh...mistake in the punycode release? /cc @mathiasbynens
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was missed in the 2.1.1 release. The code did not change in that release so it should be fine to land this as is.
@Trott let / var can also be an issue on 8 but that is not likely anymore, especially in these cases. |
Unblocking. PTAL |
PR-URL: nodejs#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>
Landed in ab10bfe |
PR-URL: #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>
Blocked to give deference to a potential pull request resulting from #21761. If the OP there doesn't open something in a few days, this can land.
I'm not concerned about the
var
/let
in loop stuff. This is legacy/deprecated. But just to be on the safe side, I'll add labels to indicate this should not land on 6.x , where the version of V8 is such that the wholelet
-in-loops thing matters.Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes