2024-04-10, Version 20.12.2 'Iron' (LTS)

This is a security release.

Notable changes:

src:
  * disallow direct .bat and .cmd file spawning (Ben Noordhuis) https://github.com/nodejs-private/node-private/pull/563

PR-URL: https://github.com/nodejs-private/node-private/pull/579
This commit is contained in:
RafaelGSS 2024-04-08 10:47:06 -03:00
parent e56adf6795
commit ce4110332e
2 changed files with 17 additions and 1 deletions

View File

@ -51,7 +51,8 @@ release.
<a href="doc/changelogs/CHANGELOG_V21.md#21.0.0">21.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.12.1">20.12.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.12.2">20.12.2</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.12.1">20.12.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.12.0">20.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.11.1">20.11.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.11.0">20.11.0</a><br/>

View File

@ -9,6 +9,7 @@
</tr>
<tr>
<td>
<a href="#20.12.2">20.12.2</a><br/>
<a href="#20.12.1">20.12.1</a><br/>
<a href="#20.12.0">20.12.0</a><br/>
<a href="#20.11.1">20.11.1</a><br/>
@ -57,6 +58,20 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="20.12.2"></a>
## 2024-04-10, Version 20.12.2 'Iron' (LTS), @RafaelGSS
This is a security release.
### Notable Changes
* CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows
### Commits
* \[[`69ffc6d50d`](https://github.com/nodejs/node/commit/69ffc6d50d)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#563](https://github.com/nodejs-private/node-private/pull/563)
<a id="20.12.1"></a>
## 2024-04-03, Version 20.12.1 'Iron' (LTS), @RafaelGSS