Skip to content

Commit d2c4e06

Browse files
committed
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: #42363
1 parent c372ec2 commit d2c4e06

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.10">12.22.10</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.22.11">12.22.11</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.10">12.22.10</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.9">12.22.9</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.8">12.22.8</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.22.7">12.22.7</a><br/>

doc/changelogs/CHANGELOG_V12.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#12.22.11">12.22.11</a><br/>
1415
<a href="#12.22.10">12.22.10</a><br/>
1516
<a href="#12.22.9">12.22.9</a><br/>
1617
<a href="#12.22.8">12.22.8</a><br/>
@@ -80,6 +81,28 @@
8081
* [io.js](CHANGELOG_IOJS.md)
8182
* [Archive](CHANGELOG_ARCHIVE.md)
8283

84+
<a id="12.22.11"></a>
85+
86+
## 2022-03-17, Version 12.22.11 'Erbium' (LTS), @richardlau
87+
88+
This is a security release.
89+
90+
### Notable changes
91+
92+
Update to OpenSSL 1.1.1n, which addresses the following vulnerability:
93+
* Infinite loop in BN\_mod\_sqrt() reachable when parsing certificates (High)(CVE-2022-0778)
94+
More details are available at https://www.openssl.org/news/secadv/20220315.txt
95+
96+
Fix for building Node.js 12.x with Visual Studio 2019 to allow us to continue to
97+
run CI tests.
98+
99+
### Commits
100+
101+
* \[[`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)
102+
* \[[`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)
103+
* \[[`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)
104+
* \[[`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)
105+
83106
<a id="12.22.10"></a>
84107

85108
## 2022-02-01, Version 12.22.10 'Erbium' (LTS), @ruyadorno

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Erbium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)