Skip to content

Commit b34a9d7

Browse files
committed
2021-04-06, Version 14.16.1 'Fermium' (LTS)
This is a security release. Notable Changes: Vulnerabilities fixed: - **CVE-2021-3450**: OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High) - **CVE-2021-3449**: OpenSSL - NULL pointer deref in signature_algorithms processing (High) - **CVE-2020-7774**: npm upgrade - Update y18n to fix Prototype-Pollution (High) PR-URL: #38082
1 parent 467be7a commit b34a9d7

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.16.0">14.16.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.16.1">14.16.1</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V14.md#14.16.0">14.16.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.5">14.15.5</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.4">14.15.4</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.3">14.15.3</a><br/>

doc/changelogs/CHANGELOG_V14.md

Lines changed: 29 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="#14.16.1">14.16.1</a><br/>
1415
<a href="#14.16.0">14.16.0</a><br/>
1516
<a href="#14.15.5">14.15.5</a><br/>
1617
<a href="#14.15.4">14.15.4</a><br/>
@@ -57,6 +58,34 @@
5758
* [io.js](CHANGELOG_IOJS.md)
5859
* [Archive](CHANGELOG_ARCHIVE.md)
5960

61+
<a id="14.16.1"></a>
62+
## 2021-04-06, Version 14.16.1 'Fermium' (LTS), @mylesborins
63+
64+
This is a security release.
65+
66+
### Notable Changes
67+
68+
Vulnerabilities fixed:
69+
70+
* **CVE-2021-3450**: OpenSSL - CA certificate check bypass with X509_V_FLAG_X509_STRICT (High)
71+
* This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt
72+
* Impacts:
73+
* All versions of the 15.x, 14.x, 12.x and 10.x releases lines
74+
* **CVE-2021-3449**: OpenSSL - NULL pointer deref in signature_algorithms processing (High)
75+
* This is a vulnerability in OpenSSL which may be exploited through Node.js. You can read more about it in https://www.openssl.org/news/secadv/20210325.txt
76+
* Impacts:
77+
* All versions of the 15.x, 14.x, 12.x and 10.x releases lines
78+
* **CVE-2020-7774**: npm upgrade - Update y18n to fix Prototype-Pollution (High)
79+
* This is a vulnerability in the y18n npm module which may be exploited by prototype pollution. You can read more about it in https://github.com/advisories/GHSA-c4w7-xm78-47vh
80+
* Impacts:
81+
* All versions of the 14.x, 12.x and 10.x releases lines
82+
83+
### Commits
84+
85+
* [[`467be7a950`](https://github.com/nodejs/node/commit/467be7a950)] - **deps**: upgrade npm to 6.14.12 (Ruy Adorno) [#37918](https://github.com/nodejs/node/pull/37918)
86+
* [[`6bc8f58182`](https://github.com/nodejs/node/commit/6bc8f58182)] - **deps**: update archs files for OpenSSL-1.1.1k (Tobias Nießen) [#37938](https://github.com/nodejs/node/pull/37938)
87+
* [[`403a014ef6`](https://github.com/nodejs/node/commit/403a014ef6)] - **deps**: upgrade openssl sources to 1.1.1k (Tobias Nießen) [#37938](https://github.com/nodejs/node/pull/37938)
88+
6089
<a id="14.16.0"></a>
6190
## 2021-02-23, Version 14.16.0 'Fermium' (LTS), @BethGriggs
6291

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 "Fermium"
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)