Skip to content

Commit 7b6ab5e

Browse files
committed
2021-02-08, Version 14.15.5 'Fermium' (LTS)
Notable changes: - **deps**: - upgrade npm to 6.14.11 (Ruy Adorno) (#37173) - V8: backport dfcf1e86fac0 (Michaël Zasso) (#37245) - Note: Node.js is not believed to be vulnerable to CVE-2021-21148. - **stream,zlib**: do not use \_stream\_\* anymore (Matteo Collina) (#36618) PR-URL: #37074
1 parent 20b1e6c commit 7b6ab5e

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

+2-1
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.15.4">14.15.4</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.15.5">14.15.5</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.4">14.15.4</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.3">14.15.3</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.2">14.15.2</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.15.1">14.15.1</a><br/>

doc/changelogs/CHANGELOG_V14.md

+23
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#14.15.5">14.15.5</a><br/>
1415
<a href="#14.15.4">14.15.4</a><br/>
1516
<a href="#14.15.3">14.15.3</a><br/>
1617
<a href="#14.15.2">14.15.2</a><br/>
@@ -55,6 +56,28 @@
5556
* [io.js](CHANGELOG_IOJS.md)
5657
* [Archive](CHANGELOG_ARCHIVE.md)
5758

59+
<a id="14.15.5"></a>
60+
## 2021-02-08, Version 14.15.5 'Fermium' (LTS), @BethGriggs
61+
62+
### Notable Changes
63+
64+
* **deps**:
65+
* upgrade npm to 6.14.11 (Ruy Adorno) [#37173](https://github.com/nodejs/node/pull/37173)
66+
* V8: backport dfcf1e86fac0 (Michaël Zasso) [#37245](https://github.com/nodejs/node/pull/37245)
67+
* **Note**: Node.js is not believed to be vulnerable to CVE-2021-21148.
68+
* **stream,zlib**: do not use \_stream\_\* anymore (Matteo Collina) [#36618](https://github.com/nodejs/node/pull/36618)
69+
70+
### Commits
71+
72+
* [[`20b1e6c802`](https://github.com/nodejs/node/commit/20b1e6c802)] - **deps**: V8: backport dfcf1e86fac0 (Michaël Zasso) [#37245](https://github.com/nodejs/node/pull/37245)
73+
* [[`408c7a65f3`](https://github.com/nodejs/node/commit/408c7a65f3)] - **deps**: upgrade npm to 6.14.11 (Ruy Adorno) [#37173](https://github.com/nodejs/node/pull/37173)
74+
* [[`25a3204fe2`](https://github.com/nodejs/node/commit/25a3204fe2)] - **http**: don't cork .end when not needed (Dimitris Halatsis) [#36633](https://github.com/nodejs/node/pull/36633)
75+
* [[`2a1e4e9244`](https://github.com/nodejs/node/commit/2a1e4e9244)] - **stream**: accept iterable as a valid first argument (ZiJian Liu) [#36479](https://github.com/nodejs/node/pull/36479)
76+
* [[`9ff73fcdbe`](https://github.com/nodejs/node/commit/9ff73fcdbe)] - **stream,zlib**: do not use \_stream\_\* anymore (Matteo Collina) [#36618](https://github.com/nodejs/node/pull/36618)
77+
* [[`c03cddb46f`](https://github.com/nodejs/node/commit/c03cddb46f)] - **test**: http complete response after socket double end (Dimitris Halatsis) [#36633](https://github.com/nodejs/node/pull/36633)
78+
* [[`f206505e9d`](https://github.com/nodejs/node/commit/f206505e9d)] - **util**: fix instanceof checks with null prototypes during inspection (Ruben Bridgewater) [#36178](https://github.com/nodejs/node/pull/36178)
79+
* [[`2f7944b18b`](https://github.com/nodejs/node/commit/2f7944b18b)] - **util**: fix module prefixes during inspection (Ruben Bridgewater) [#36178](https://github.com/nodejs/node/pull/36178)
80+
5881
<a id="14.15.4"></a>
5982
## 2021-01-04, Version 14.15.4 'Fermium' (LTS), @BethGriggs
6083

src/node_version.h

+1-1
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)