Skip to content

Commit 7039b12

Browse files
committed
2025-05-14, Version 22.15.1 'Jod' (LTS)
This is a security release. Notable changes: src: * (CVE-2025-23166) fix error handling on async crypto operation fs: * (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup PR-URL: nodejs-private/node-private#712
1 parent f4494d3 commit 7039b12

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
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.15.0">22.15.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.15.1">22.15.1</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.15.0">22.15.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.14.0">22.14.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.0">22.13.0</a><br/>

doc/changelogs/CHANGELOG_V22.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#22.15.1">22.15.1</a><br/>
1213
<a href="#22.15.0">22.15.0</a><br/>
1314
<a href="#22.14.0">22.14.0</a><br/>
1415
<a href="#22.13.1">22.13.1</a><br/>
@@ -58,6 +59,23 @@
5859
* [io.js](CHANGELOG_IOJS.md)
5960
* [Archive](CHANGELOG_ARCHIVE.md)
6061

62+
<a id="22.15.1"></a>
63+
64+
## 2025-05-14, Version 22.15.1 'Jod' (LTS), @RafaelGSS
65+
66+
This is a security release.
67+
68+
### Notable Changes
69+
70+
* (CVE-2025-23166) fix error handling on async crypto operation
71+
* (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup
72+
73+
### Commits
74+
75+
* \[[`edaf54da00`](https://github.com/nodejs/node/commit/edaf54da00)] - **fs**: added test for missing call to uv\_fs\_req\_cleanup (Justin Nietzel) [#57811](https://github.com/nodejs/node/pull/57811)
76+
* \[[`9f403e98ef`](https://github.com/nodejs/node/commit/9f403e98ef)] - **(CVE-2025-23165)** **fs**: add missing call to uv\_fs\_req\_cleanup (Justin Nietzel) [#57811](https://github.com/nodejs/node/pull/57811)
77+
* \[[`f4494d38f1`](https://github.com/nodejs/node/commit/f4494d38f1)] - **(CVE-2025-23166)** **src**: fix error handling on async crypto operations (RafaelGSS) [nodejs-private/node-private#709](https://github.com/nodejs-private/node-private/pull/709)
78+
6179
<a id="22.15.0"></a>
6280

6381
## 2025-04-23, Version 22.15.0 'Jod' (LTS), @UlisesGascon prepared by @RafaelGSS

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