Skip to content

Commit bf9b821

Browse files
benglRafaelGSS
authored andcommitted
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 2e92e5b commit bf9b821

3 files changed

Lines changed: 27 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ release.
9595
<a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/>
9696
</td>
9797
<td valign="top">
98-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a></b><br/>
98+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.1">14.20.1</a></b><br/>
99+
<a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a><br/>
99100
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.3">14.19.3</a><br/>
100101
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.2">14.19.2</a><br/>
101102
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.1">14.19.1</a><br/>

doc/changelogs/CHANGELOG_V14.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
</tr>
1010
<tr>
1111
<td valign="top">
12+
<a href="#14.20.1">14.20.1</a><br/>
13+
<a href="#14.20.0">14.20.0</a><br/>
1214
<a href="#14.19.3">14.19.3</a><br/>
1315
<a href="#14.19.2">14.19.2</a><br/>
1416
<a href="#14.19.1">14.19.1</a><br/>
@@ -75,6 +77,28 @@
7577
* [io.js](CHANGELOG_IOJS.md)
7678
* [Archive](CHANGELOG_ARCHIVE.md)
7779

80+
<a id="14.20.1"></a>
81+
82+
## 2022-09-23, Version 14.20.1 'Fermium' (LTS), @bengl
83+
84+
This is a security release.
85+
86+
### Notable changes
87+
88+
The following CVEs are fixed in this release:
89+
90+
* **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect on macOS (High)
91+
* **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: bypass via obs-fold mechanic (Medium)
92+
* **[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)
93+
94+
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.
95+
96+
### Commits
97+
98+
* \[[`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)
99+
* \[[`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)
100+
* \[[`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)
101+
78102
<a id="14.20.0"></a>
79103

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

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)