Skip to content

Commit c11b821

Browse files
committed
2022-09-23, Version 14.20.1 'Fermium' (LTS)
This is a security release. Notable changes: The following CVEs are fixed in this release: * CVE-2022-32212: DNS rebinding in --inspect on macOS (High) * CVE-2022-32213: bypass via obs-fold mechanic (Medium) * CVE-2022-35256: HTTP Request Smuggling Due to Incorrect Parsing of Header Fields (Medium) PR-URL: nodejs-private/node-private#348
1 parent a9f1146 commit c11b821

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
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.1">14.20.1</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.3">14.19.3</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.2">14.19.2</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.1">14.19.1</a><br/>

doc/changelogs/CHANGELOG_V14.md

+24
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#14.20.1">14.20.1</a><br/>
15+
<a href="#14.20.0">14.20.0</a><br/>
1416
<a href="#14.19.3">14.19.3</a><br/>
1517
<a href="#14.19.2">14.19.2</a><br/>
1618
<a href="#14.19.1">14.19.1</a><br/>
@@ -73,6 +75,28 @@
7375
* [io.js](CHANGELOG_IOJS.md)
7476
* [Archive](CHANGELOG_ARCHIVE.md)
7577

78+
<a id="14.20.1"></a>
79+
80+
## 2022-09-23, Version 14.20.1 'Fermium' (LTS), @bengl
81+
82+
This is a security release.
83+
84+
### Notable changes
85+
86+
The following CVEs are fixed in this release:
87+
88+
* **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect on macOS (High)
89+
* **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: bypass via obs-fold mechanic (Medium)
90+
* **[CVE-2022-35256](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35256)**: HTTP Request Smuggling Due to Incorrect Parsing of Header Fields (Medium)
91+
92+
More detailed information on each of the vulnerabilities can be found in [September 22nd 2022 Security Releases](https://nodejs.org/en/blog/vulnerability/september-2022-security-releases/) blog post.
93+
94+
### Commits
95+
96+
* \[[`a9f1146b88`](https://github.com/nodejs/node/commit/a9f1146b88)] - **http**: disable chunked encoding when OBS fold is used (Paolo Insogna) [nodejs-private/node-private#341](https://github.com/nodejs-private/node-private/pull/341)
97+
* \[[`a1121b456c`](https://github.com/nodejs/node/commit/a1121b456c)] - **src**: fix IPv4 non routable validation (RafaelGSS) [nodejs-private/node-private#337](https://github.com/nodejs-private/node-private/pull/337)
98+
* \[[`de80707870`](https://github.com/nodejs/node/commit/de80707870)] - **src**: fix IS\_LTS and IS\_RELEASE flags (Richard Lau) [#43761](https://github.com/nodejs/node/pull/43761)
99+
76100
<a id="14.20.0"></a>
77101

78102
## 2022-07-07, Version 14.20.0 'Fermium' (LTS), @danielleadams prepared by @juanarbol

src/node_version.h

+1-1
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 "Fermium"
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)