2022-03-17, Version 12.22.11 'Erbium' (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

Fix for building Node.js 12.x with Visual Studio 2019 to allow us to continue to
run CI tests.

PR-URL: https://github.com/nodejs/node/pull/42363
This commit is contained in:
Richard Lau 2022-03-16 11:46:36 -04:00
parent adbc94c2e6
commit aead813234
No known key found for this signature in database
GPG Key ID: C43CEC45C17AB93C
2 changed files with 26 additions and 1 deletions

View File

@ -111,7 +111,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V14.md#14.0.0">14.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.10">12.22.10</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.11">12.22.11</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.10">12.22.10</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.9">12.22.9</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.8">12.22.8</a><br/>
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.7">12.22.7</a><br/>

View File

@ -9,6 +9,7 @@
</tr>
<tr>
<td valign="top">
<a href="#12.22.11">12.22.11</a><br/>
<a href="#12.22.10">12.22.10</a><br/>
<a href="#12.22.9">12.22.9</a><br/>
<a href="#12.22.8">12.22.8</a><br/>
@ -83,6 +84,29 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="12.22.11"></a>
## 2022-03-17, Version 12.22.11 'Erbium' (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>
Fix for building Node.js 12.x with Visual Studio 2019 to allow us to continue to
run CI tests.
### Commits
* \[[`e3e5bf11ba`](https://github.com/nodejs/node/commit/e3e5bf11ba)] - **build**: pin Windows GitHub runner to windows-2019 (Richard Lau) [#42349](https://github.com/nodejs/node/pull/42349)
* \[[`f41e7771bf`](https://github.com/nodejs/node/commit/f41e7771bf)] - **build**: fix detection of Visual Studio 2019 (Richard Lau) [#42349](https://github.com/nodejs/node/pull/42349)
* \[[`c372ec207d`](https://github.com/nodejs/node/commit/c372ec207d)] - **deps**: update archs files for OpenSSL-1.1.n (Richard Lau) [#42348](https://github.com/nodejs/node/pull/42348)
* \[[`d574a1dccb`](https://github.com/nodejs/node/commit/d574a1dccb)] - **deps**: upgrade openssl sources to 1.1.1n (Richard Lau) [#42348](https://github.com/nodejs/node/pull/42348)
<a id="12.22.10"></a>
## 2022-02-01, Version 12.22.10 'Erbium' (LTS), @ruyadorno