Skip to content

Commit 9b666af

Browse files
committed
2025-05-14, Version 23.11.1 (Current)
This is a security release. Notable changes: src: * (CVE-2025-23166) fix error handling on async crypto operations PR-URL: nodejs-private/node-private#708
1 parent a12107f commit 9b666af

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.11.0">23.11.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.11.1">23.11.1</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V23.md#23.11.0">23.11.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V23.md#23.10.0">23.10.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V23.md#23.9.0">23.9.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V23.md#23.8.0">23.8.0</a><br/>

doc/changelogs/CHANGELOG_V23.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</tr>
99
<tr>
1010
<td>
11+
<a href="#23.11.1">23.11.1</a><br/>
1112
<a href="#23.11.0">23.11.0</a><br/>
1213
<a href="#23.10.0">23.10.0</a><br/>
1314
<a href="#23.9.0">23.9.0</a><br/>
@@ -50,6 +51,23 @@
5051
* [io.js](CHANGELOG_IOJS.md)
5152
* [Archive](CHANGELOG_ARCHIVE.md)
5253

54+
<a id="23.11.1"></a>
55+
56+
## 2025-05-14, Version 23.11.1 (Current), @RafaelGSS
57+
58+
This is a security release.
59+
60+
### Notable Changes
61+
62+
src:
63+
64+
* (CVE-2025-23166) fix error handling on async crypto operation
65+
66+
### Commits
67+
68+
* \[[`a271810ce2`](https://github.com/nodejs/node/commit/a271810ce2)] - **deps**: update c-ares to v1.34.5 (Node.js GitHub Bot) [#57792](https://github.com/nodejs/node/pull/57792)
69+
* \[[`a12107f0dd`](https://github.com/nodejs/node/commit/a12107f0dd)] - **(CVE-2025-23166)** **src**: fix error handling on async crypto operations (RafaelGSS) [nodejs-private/node-private#688](https://github.com/nodejs-private/node-private/pull/688)
70+
5371
<a id="23.11.0"></a>
5472

5573
## 2025-04-01, Version 23.11.0 (Current), @aduh95

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