Skip to content

Commit 25a01ea

Browse files
committed
2025-01-21, Version 23.6.1 (Current)
This is a security release. Notable changes: * CVE-2025-23083: throw on InternalWorker use when permission model is enabled (High) * CVE-2025-23084: fix path traversal in normalize() on Windows (Medium) * CVE-2025-23085: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium) * CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium) PR-URL: nodejs-private/node-private#654
1 parent 3c76861 commit 25a01ea

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
@@ -39,7 +39,8 @@ release.
3939
</tr>
4040
<tr>
4141
<td valign="top">
42-
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.6.0">23.6.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.6.1">23.6.1</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.0">23.6.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V23.md#23.5.0">23.5.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a><br/>

doc/changelogs/CHANGELOG_V23.md

+24
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</tr>
99
<tr>
1010
<td>
11+
<a href="#23.6.1">23.6.1</a><br/>
1112
<a href="#23.6.0">23.6.0</a><br/>
1213
<a href="#23.5.0">23.5.0</a><br/>
1314
<a href="#23.4.0">23.4.0</a><br/>
@@ -44,6 +45,29 @@
4445
* [io.js](CHANGELOG_IOJS.md)
4546
* [Archive](CHANGELOG_ARCHIVE.md)
4647

48+
<a id="23.6.1"></a>
49+
50+
## 2025-01-21, Version 23.6.1 (Current), @RafaelGSS
51+
52+
This is a security release.
53+
54+
### Notable Changes
55+
56+
* CVE-2025-23083 - src,loader,permission: throw on InternalWorker use when permission model is enabled (High)
57+
* CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR\_PROTO (Medium)
58+
* CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium)
59+
60+
Dependency update:
61+
62+
* CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium)
63+
64+
### Commits
65+
66+
* \[[`f2ad4d3af8`](https://github.com/nodejs/node/commit/f2ad4d3af8)] - **(CVE-2025-22150)** **deps**: update undici to v6.21.1 (Matteo Collina) [nodejs-private/node-private#654](https://github.com/nodejs-private/node-private/pull/654)
67+
* \[[`0afc6f9600`](https://github.com/nodejs/node/commit/0afc6f9600)] - **(CVE-2025-23084)** **path**: fix path traversal in normalize() on Windows (RafaelGSS) [nodejs-private/node-private#555](https://github.com/nodejs-private/node-private/pull/555)
68+
* \[[`3c7686163e`](https://github.com/nodejs/node/commit/3c7686163e)] - **(CVE-2025-23085)** **src**: fix HTTP2 mem leak on premature close and ERR\_PROTO (RafaelGSS) [nodejs-private/node-private#650](https://github.com/nodejs-private/node-private/pull/650)
69+
* \[[`51938f023a`](https://github.com/nodejs/node/commit/51938f023a)] - **(CVE-2025-23083)** **src,loader,permission**: throw on InternalWorker use (RafaelGSS) [nodejs-private/node-private#629](https://github.com/nodejs-private/node-private/pull/629)
70+
4771
<a id="23.6.0"></a>
4872

4973
## 2025-01-07, Version 23.6.0 (Current), @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 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)