From 9e0bba5648e9c4116b06a31afeb216bbba39c134 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 16 Mar 2022 19:43:09 -0400 Subject: [PATCH] 2022-03-17, Version 14.19.1 'Fermium' (LTS) This is a security release. Notable changes: Update to OpenSSL 1.1.1n, which addresses the following vulnerability: - Infinite loop in BN_mod_sqrt() reachable when parsing certificates (High)(CVE-2022-0778) More details are available at https://www.openssl.org/news/secadv/20220315.txt PR-URL: https://github.com/nodejs/node/pull/42371 --- CHANGELOG.md | 3 ++- doc/changelogs/CHANGELOG_V14.md | 19 +++++++++++++++++++ src/node_version.h | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52b608314b78a4..fc1ff76341b801 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ release. -14.19.0
+14.19.1
+14.19.0
14.18.3
14.18.2
14.18.1
diff --git a/doc/changelogs/CHANGELOG_V14.md b/doc/changelogs/CHANGELOG_V14.md index bf6cd9406a2f3a..ceb1ded84a9668 100644 --- a/doc/changelogs/CHANGELOG_V14.md +++ b/doc/changelogs/CHANGELOG_V14.md @@ -11,6 +11,7 @@ +14.19.1
14.19.0
14.18.3
14.18.2
@@ -70,6 +71,24 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-03-17, Version 14.19.1 'Fermium' (LTS), @richardlau + +This is a security release. + +### Notable Changes + +Update to OpenSSL 1.1.1n, which addresses the following vulnerability: +* Infinite loop in `BN_mod_sqrt()` reachable when parsing certificates (High)(CVE-2022-0778) + More details are available at https://www.openssl.org/news/secadv/20220315.txt + +### Commits + +* \[[`b5c52e337e`](https://github.com/nodejs/node/commit/b5c52e337e)] - **build**: pin Windows GitHub runner to windows-2019 (Richard Lau) [#42350](https://github.com/nodejs/node/pull/42350) +* \[[`3b1a0b24f0`](https://github.com/nodejs/node/commit/3b1a0b24f0)] - **deps**: update archs files for OpenSSL-1.1.1n (Richard Lau) [#42347](https://github.com/nodejs/node/pull/42347) +* \[[`c83dd99e0b`](https://github.com/nodejs/node/commit/c83dd99e0b)] - **deps**: upgrade openssl sources to 1.1.1n (Richard Lau) [#42347](https://github.com/nodejs/node/pull/42347) + ## 2022-02-01, Version 14.19.0 'Fermium' (LTS), @richardlau diff --git a/src/node_version.h b/src/node_version.h index 1616f3028bf80f..44912595b3089b 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Fermium" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)