Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan English <bryan@bryanenglish.com>2022-09-20 05:19:11 +0300
committerBryan English <bryan@bryanenglish.com>2022-09-23 04:42:44 +0300
commitc11b8215bd6388854efcc9302a7383c8c63b8127 (patch)
treede9b19aff889e1e995e5c0553d3d7c8e17f81dd0
parenta9f1146b8827855e342834458a71f2367346ace0 (diff)
2022-09-23, Version 14.20.1 'Fermium' (LTS)v14.20.1
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: https://github.com/nodejs-private/node-private/pull/348
-rw-r--r--CHANGELOG.md3
-rw-r--r--doc/changelogs/CHANGELOG_V14.md24
-rw-r--r--src/node_version.h2
3 files changed, 27 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 04624657aad..58ce21cc5b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,7 +29,8 @@ release.
</tr>
<tr>
<td valign="top">
-<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a></b><br/>
+<b><a href="doc/changelogs/CHANGELOG_V14.md#14.20.1">14.20.1</a></b><br/>
+<a href="doc/changelogs/CHANGELOG_V14.md#14.20.0">14.20.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.3">14.19.3</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.2">14.19.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.19.1">14.19.1</a><br/>
diff --git a/doc/changelogs/CHANGELOG_V14.md b/doc/changelogs/CHANGELOG_V14.md
index b6c0f978e3e..2d08edf4368 100644
--- a/doc/changelogs/CHANGELOG_V14.md
+++ b/doc/changelogs/CHANGELOG_V14.md
@@ -11,6 +11,8 @@
</tr>
<tr>
<td valign="top">
+<a href="#14.20.1">14.20.1</a><br/>
+<a href="#14.20.0">14.20.0</a><br/>
<a href="#14.19.3">14.19.3</a><br/>
<a href="#14.19.2">14.19.2</a><br/>
<a href="#14.19.1">14.19.1</a><br/>
@@ -73,6 +75,28 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
+<a id="14.20.1"></a>
+
+## 2022-09-23, Version 14.20.1 'Fermium' (LTS), @bengl
+
+This is a security release.
+
+### Notable changes
+
+The following CVEs are fixed in this release:
+
+* **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect on macOS (High)
+* **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: bypass via obs-fold mechanic (Medium)
+* **[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)
+
+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.
+
+### Commits
+
+* \[[`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)
+* \[[`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)
+* \[[`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)
+
<a id="14.20.0"></a>
## 2022-07-07, Version 14.20.0 'Fermium' (LTS), @danielleadams prepared by @juanarbol
diff --git a/src/node_version.h b/src/node_version.h
index bcbf0804e04..699d2ebe06b 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Fermium"
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)