-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Backport fixes to v1.x #1560
Backport fixes to v1.x #1560
Conversation
LGTM |
fwiw I'd like to sort out #1559 first just in the case that we create further issues. |
When these commits are cherry-picked, it'd probably be good to add metadata to the messages along the lines of |
@chrisdickinson original shas are easy-ish to find via the original PR. I'm more concerned about these port PRs actually. It's been hard to find PRs where colin merged in commits from node in the past, for example. (Although we could do both, doesn't need the full original SHA.) |
Going to land with this metadata, and create a second backport pr.
|
tls.connect(options) with no options.host should accept a certificate with CN: 'localhost'. Fix Error: Hostname/IP doesn't match certificate's altnames: "Host: undefined. is not cert's CN: localhost" 'localhost' is not added directly to defaults because that is not always desired (for example, when using options.socket) PR-URL: nodejs#1493 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / a7d7463 Fixes: nodejs#1489 Reviewed-By: Brendan Ashworth <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
PR-URL: nodejs#1530 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / 5472139 Reviewed-By: Johan Bergström <[email protected]>
parallel tests still not working on most build slaves PR-URL: nodejs#1544 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / 2a3c8c1 Reviewed-By: Johan Bergström <[email protected]>
Some modules are monkey-patching Buffer.isEncoding, so without this they cannot do that. Fixes: nodejs#1547 PR-URL: nodejs#1548 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / 0fa6c4a Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
PR-URL: nodejs#1553 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / f9c681c Reviewed-By: Colin Ihrig <[email protected]>
Based on tests running on original Raspberry Pi PR-URL: nodejs#1554 PORT-PR-URL: nodejs#1560 PORT-FROM: v2.x / f9b226c Reviewed-By: Roman Reiss <[email protected]>
fe08db9
to
32a6dbc
Compare
What's the benefit of adding branch in port-from? Edit: gotcha. Full history. |
Just fixes. Especially to the tests and how the CI runs are now run, this will make v1.x CI runs viable again.
Also, due to the
string_decoder
thing, might be worthwhile to do a 1.8.2 in the coming weeks.