Skip to content

Commit d844fa0

Browse files
committed
2020-09-15, Version 14.11.0 (Current)
This is a security release. Notable changes: Vulnerabilities fixed: - CVE-2020-8251: Denial of Service by resource exhaustion CWE-400 due to unfinished HTTP/1.1 requests (Critical). - CVE-2020-8201: HTTP Request Smuggling due to CR-to-Hyphen conversion (High). PR-URL: nodejs-private/node-private#225
1 parent 753f3b2 commit d844fa0

5 files changed

Lines changed: 25 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.10.1">14.10.1</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.11.0">14.11.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.10.1">14.10.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.10.0">14.10.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V14.md#14.8.0">14.8.0</a><br/>

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ Limits maximum incoming headers count. If set to 0, no limit will be applied.
12581258

12591259
### `server.requestTimeout`
12601260
<!-- YAML
1261-
added: REPLACEME
1261+
added: v14.11.0
12621262
-->
12631263

12641264
* {number} **Default:** `0`

doc/api/https.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ See [`http.Server#maxHeadersCount`][].
115115

116116
### `server.requestTimeout`
117117
<!-- YAML
118-
added: REPLACEME
118+
added: v14.11.0
119119
-->
120120

121121
* {number} **Default:** `0`

doc/changelogs/CHANGELOG_V14.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td>
13+
<a href="#14.11.0">14.11.0</a><br/>
1314
<a href="#14.10.1">14.10.1</a><br/>
1415
<a href="#14.10.0">14.10.0</a><br/>
1516
<a href="#14.9.0">14.9.0</a><br/>
@@ -42,6 +43,23 @@
4243
* [io.js](CHANGELOG_IOJS.md)
4344
* [Archive](CHANGELOG_ARCHIVE.md)
4445

46+
<a id="14.11.0"></a>
47+
## 2020-09-15, Version 14.11.0 (Current), @richardlau
48+
49+
### Notable Changes
50+
51+
This is a security release.
52+
53+
Vulnerabilities fixed:
54+
55+
* **CVE-2020-8251**: Denial of Service by resource exhaustion CWE-400 due to unfinished HTTP/1.1 requests (Critical).
56+
* **CVE-2020-8201**: HTTP Request Smuggling due to CR-to-Hyphen conversion (High).
57+
58+
### Commits
59+
60+
* [[`dd828376a0`](https://github.com/nodejs/node/commit/dd828376a0)] - **deps**: update llhttp to 2.1.2 (Fedor Indutny) [nodejs-private/node-private#215](https://github.com/nodejs-private/node-private/pull/215)
61+
* [[`753f3b247a`](https://github.com/nodejs/node/commit/753f3b247a)] - **http**: add requestTimeout (Matteo Collina, Paolo Insogna, Robert Nagy) [nodejs-private/node-private#208](https://github.com/nodejs-private/node-private/pull/208)
62+
4563
<a id="14.10.1"></a>
4664
## 2020-09-10, Version 14.10.1 (Current), @richardlau
4765

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 14
26-
#define NODE_MINOR_VERSION 10
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 11
27+
#define NODE_PATCH_VERSION 0
2828

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)