2025-07-15, Version 22.17.1 'Jod' (LTS)

This is a security release.

Notable changes:

lib:
  * (CVE-2025-27210) handle all windows reserved driver name

PR-URL: https://github.com/nodejs-private/node-private/pull/726
This commit is contained in:
RafaelGSS 2025-07-11 15:29:14 -03:00
parent 9c0cb487ec
commit 1073ab06c8
No known key found for this signature in database
GPG key ID: 8BEAB4DFCF555EF4
3 changed files with 19 additions and 2 deletions

View file

@ -37,7 +37,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.17.0">22.17.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.17.1">22.17.1</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.17.0">22.17.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.16.0">22.16.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.15.1">22.15.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.15.0">22.15.0</a><br/>

View file

@ -9,6 +9,7 @@
</tr>
<tr>
<td>
<a href="#22.17.1">22.17.1</a><br/>
<a href="#22.17.0">22.17.0</a><br/>
<a href="#22.16.0">22.16.0</a><br/>
<a href="#22.15.1">22.15.1</a><br/>
@ -61,6 +62,21 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="22.17.1"></a>
## 2025-07-15, Version 22.17.1 'Jod' (LTS), @RafaelGSS
This is a security release.
### Notable Changes
* (CVE-2025-27210) Windows Device Names (CON, PRN, AUX) Bypass Path Traversal Protection in path.normalize()
### Commits
* \[[`8cf5d66ab7`](https://github.com/nodejs/node/commit/8cf5d66ab7)] - **(CVE-2025-27210)** **lib**: handle all windows reserved driver name (RafaelGSS) [nodejs-private/node-private#721](https://github.com/nodejs-private/node-private/pull/721)
* \[[`9c0cb487ec`](https://github.com/nodejs/node/commit/9c0cb487ec)] - **win,build**: fix MSVS v17.14 compilation issue (StefanStojanovic) [#58902](https://github.com/nodejs/node/pull/58902)
<a id="22.17.0"></a>
## 2025-06-24, Version 22.17.0 'Jod' (LTS), @aduh95

View file

@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Jod"
#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)