Skip to content

Commit 6b06e89

Browse files
committed
2022-09-23, Version 16.17.1 'Gallium' (LTS)
This is a security release. Notable changes: crypto: * fix weak randomness in WebCrypto keygen (Ben Noordhuis) nodejs-private/node-private#346 http: * disable chunked encoding when using OBS fold is used (Paolo Insogna) nodejs-private/node-private#341 src: * fix IPv4 non routable validation (RafaelGSS) nodejs-private/node-private#337 PR-URL: nodejs-private/node-private#352
1 parent 0713e21 commit 6b06e89

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.17.0">16.17.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.17.1">16.17.1</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V16.md#16.17.0">16.17.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V16.md#16.16.0">16.16.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V16.md#16.15.1">16.15.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V16.md#16.15.0">16.15.0</a><br/>

doc/changelogs/CHANGELOG_V16.md

+22
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td valign="top">
12+
<a href="#16.17.1">16.17.1</a><br/>
1213
<a href="#16.17.0">16.17.0</a><br/>
1314
<a href="#16.16.0">16.16.0</a><br/>
1415
<a href="#16.15.1">16.15.1</a><br/>
@@ -63,6 +64,27 @@
6364
* [io.js](CHANGELOG_IOJS.md)
6465
* [Archive](CHANGELOG_ARCHIVE.md)
6566

67+
<a id="16.17.1"></a>
68+
69+
## 2022-09-23, Version 16.17.1 'Gallium' (LTS), @ruyadorno
70+
71+
### Notable changes
72+
73+
The following CVEs are fixed in this release:
74+
75+
* **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect on macOS (High)
76+
* **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: bypass via obs-fold mechanic (Medium)
77+
* **[CVE-2022-35255](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35255)**: Weak randomness in WebCrypto keygen
78+
* **[CVE-2022-35256](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35256)**: HTTP Request Smuggling - Incorrect Parsing of Header Fields (Medium)
79+
80+
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.
81+
82+
### Commits
83+
84+
* \[[`a54283a638`](https://github.com/nodejs/node/commit/a54283a638)] - **crypto**: fix weak randomness in WebCrypto keygen (Ben Noordhuis) [nodejs-private/node-private#346](https://github.com/nodejs-private/node-private/pull/346)
85+
* \[[`0713e21240`](https://github.com/nodejs/node/commit/0713e21240)] - **http**: disable chunked encoding when using OBS fold is used (Paolo Insogna) [nodejs-private/node-private#341](https://github.com/nodejs-private/node-private/pull/341)
86+
* \[[`77fe2f32e4`](https://github.com/nodejs/node/commit/77fe2f32e4)] - **src**: fix IPv4 non routable validation (RafaelGSS) [nodejs-private/node-private#337](https://github.com/nodejs-private/node-private/pull/337)
87+
6688
<a id="16.17.0"></a>
6789

6890
## 2022-08-16, Version 16.17.0 'Gallium' (LTS), @targos

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