From e65a904f111276c244ab5ab1ee35f6ba27b1fd52 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Fri, 19 Apr 2019 11:18:38 -0700 Subject: [PATCH] 2019-04-30, Version 11.15.0 (Current) Notable changes: * deps: add s390 asm rules for OpenSSL-1.1.1 (Shigeki Ohtsu) [#19794](https://github.com/nodejs/node/pull/19794) * src: add .code and SSL specific error properties (Sam Roberts) [#25093](https://github.com/nodejs/node/pull/25093) * tls: * add --tls-min-v1.2 CLI switch (Sam Roberts) [#26951](https://github.com/nodejs/node/pull/26951) * supported shared openssl 1.1.0 (Sam Roberts) [#26951](https://github.com/nodejs/node/pull/26951) * revert default max toTLSv1.2 (Sam Roberts) [#26951](https://github.com/nodejs/node/pull/26951) * revert change to invalid protocol error type (Sam Roberts) [#26951](https://github.com/nodejs/node/pull/26951) * support TLSv1.3 (Sam Roberts) [#26209](https://github.com/nodejs/node/pull/26209) * add code for ERR\_TLS\_INVALID\_PROTOCOL\_METHOD (Sam Roberts) [#24729](https://github.com/nodejs/node/pull/24729) PR-URL: https://github.com/nodejs/node/pull/27314 --- CHANGELOG.md | 3 ++- doc/api/cli.md | 12 ++++++------ doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V11.md | 33 +++++++++++++++++++++++++++++++++ src/node_version.h | 6 +++--- 5 files changed, 45 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0c8b516091ad..625d3b44b114b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -11.14.0
+11.15.0
+11.14.0
11.13.0
11.12.0
11.11.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 3d4a1adb91aee2..f1236a088abd5b 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -445,7 +445,7 @@ with crypto support (default). ### `--tls-max-v1.2` Set [`tls.DEFAULT_MAX_VERSION`][] to 'TLSv1.2'. Use to disable support for @@ -453,7 +453,7 @@ TLSv1.3. ### `--tls-max-v1.3` Set default [`tls.DEFAULT_MAX_VERSION`][] to 'TLSv1.3'. Use to enable support @@ -461,7 +461,7 @@ for TLSv1.3. ### `--tls-min-v1.0` Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1'. Use for compatibility with @@ -469,7 +469,7 @@ old TLS clients or servers. ### `--tls-min-v1.1` Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.1'. Use for compatibility @@ -477,7 +477,7 @@ with old TLS clients or servers. ### `--tls-min-v1.2` Set default [`minVersion`][] to `'TLSv1.2'`. Use to disable support for TLSv1 @@ -485,7 +485,7 @@ and TLSv1.1 in favour of TLSv1.2, which is more secure. ### `--tls-min-v1.3` Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.3'. Use to disable support diff --git a/doc/api/tls.md b/doc/api/tls.md index 574f5519e71d47..d4a333279d9d56 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1256,7 +1256,7 @@ argument.