Skip to content

Commit 53a57ef

Browse files
committed
2025-01-21, Version 20.18.2 'Iron' (LTS)
This is a security release. Notable changes: * CVE-2025-23083 - throw on InternalWorker use when permission model is enabled (High) * CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium) * CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium) * CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium) PR-URL: nodejs-private/node-private#664
1 parent 8187a4b commit 53a57ef

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.18.1">20.18.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.18.2">20.18.2</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V20.md#20.18.1">20.18.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V20.md#20.18.0">20.18.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.17.0">20.17.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.16.0">20.16.0</a><br/>

doc/changelogs/CHANGELOG_V20.md

+24
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#20.18.2">20.18.2</a><br/>
1213
<a href="#20.18.1">20.18.1</a><br/>
1314
<a href="#20.18.0">20.18.0</a><br/>
1415
<a href="#20.17.0">20.17.0</a><br/>
@@ -66,6 +67,29 @@
6667
* [io.js](CHANGELOG_IOJS.md)
6768
* [Archive](CHANGELOG_ARCHIVE.md)
6869

70+
<a id="20.18.2"></a>
71+
72+
## 2025-01-21, Version 20.18.2 'Iron' (LTS), @RafaelGSS
73+
74+
This is a security release.
75+
76+
### Notable Changes
77+
78+
* CVE-2025-23083 - throw on InternalWorker use when permission model is enabled (High)
79+
* CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR\_PROTO (Medium)
80+
* CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium)
81+
82+
Dependency update:
83+
84+
* CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium)
85+
86+
### Commits
87+
88+
* \[[`df8b9f2c3e`](https://github.com/nodejs/node/commit/df8b9f2c3e)] - **(CVE-2025-22150)** **deps**: update undici to v6.21.1 (Matteo Collina) [nodejs-private/node-private#663](https://github.com/nodejs-private/node-private/pull/663)
89+
* \[[`42d5821873`](https://github.com/nodejs/node/commit/42d5821873)] - **(CVE-2025-23084)** **path**: fix path traversal in normalize() on Windows (Tobias Nießen) [nodejs-private/node-private#555](https://github.com/nodejs-private/node-private/pull/555)
90+
* \[[`8187a4b9bb`](https://github.com/nodejs/node/commit/8187a4b9bb)] - **src**: fix HTTP2 mem leak on premature close and ERR\_PROTO (RafaelGSS)
91+
* \[[`389f239a28`](https://github.com/nodejs/node/commit/389f239a28)] - **(CVE-2025-23083)** **src,loader,permission**: throw on InternalWorker use (RafaelGSS) [nodejs-private/node-private#652](https://github.com/nodejs-private/node-private/pull/652)
92+
6993
<a id="20.18.1"></a>
7094

7195
## 2024-11-20, Version 20.18.1 'Iron' (LTS), @marco-ippolito

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