Uh oh!
There was an error while loading. Please reload this page.
[v10.x backport] tls: add min/max protocol version options - #24979
Closed
sam-github wants to merge 2 commits into
Closed
[v10.x backport] tls: add min/max protocol version options#24979sam-github wants to merge 2 commits into
sam-github wants to merge 2 commits into
Conversation
sam-github
commented
Dec 12, 2018
ContributorAuthor
ci: https://ci.nodejs.org/job/node-test-pull-request/19455/ @nodejs/lts @nodejs/crypto |
rvagg
approved these changes
Dec 18, 2018
rvagg
left a comment
Member
There was a problem hiding this comment.
👌 sweet, I don't recall the rules but I think it needs to be live in 11.x for a release or two before going in. Also tagged as semver-minor which may conflict with plans for 10.x, but this really needs to happen because we're running out of time on 1.1.1.
MylesBorins
commented
Dec 21, 2018
Contributor
Our next semver minor isn't planned until march... should we do it earlier? |
sam-github
commented
Dec 23, 2018
ContributorAuthor
no hurry, it's a pre-req for openssl-1.1.1, but can land in the same semver-minor as the openssl update |
MylesBorinsforce-pushed
the
v10.x-staging
branch
from
December 26, 2018 16:20
17f4208 to
d04c3c2Comparesam-githubforce-pushed
the
backport-tls-min-max-to-10.x
branch
from
January 22, 2019 22:19
4d4c651 to
0b06887CompareMylesBorinsforce-pushed
the
v10.x-staging
branch
from
January 29, 2019 05:06
c1ee936 to
c6cffadComparecodebytereforce-pushed
the
v10.x-staging
branch
3 times, most recently
from
January 29, 2019 18:12
2d6e145 to
7840f71Compare Merged
BethGriggsforce-pushed
the
v10.x-staging
branch
from
February 20, 2019 16:06
13f9356 to
5711238Comparesam-githubforce-pushed
the
backport-tls-min-max-to-10.x
branch
from
February 22, 2019 23:52
0b06887 to
d06c259CompareFill in correct pr-url: value in the YAML changelog that was missing from f512f5e. The stanza was also sorted in the wrong order, most recent is supposed to be in the beginning of the changes, not the end. PR-URL: nodejs#24759 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The existing secureProtocol option only allows setting the allowed protocol to a specific version, or setting it to "all supported versions". It also used obscure strings based on OpenSSL C API functions. Directly setting the min or max is easier to use and explain. Backport-PR-URL: nodejs#24676 PR-URL: nodejs#24405 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
sam-githubforce-pushed
the
backport-tls-min-max-to-10.x
branch
from
February 22, 2019 23:52
d06c259 to
a8a0889Comparesam-github
commented
Feb 23, 2019
ContributorAuthor
Closed in favour of #26270 |
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport of a backport... prep work for openssl 1.1.1 to land on v10.x
The existing secureProtocol option only allows setting the allowed
protocol to a specific version, or setting it to "all supported
versions". It also used obscure strings based on OpenSSL C API
functions. Directly setting the min or max is easier to use and explain.
Backport-PR-URL: #24676
PR-URL: #24405
Reviewed-By: Refael Ackermann refack@gmail.com
Reviewed-By: Rod Vagg rod@vagg.org
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes