Skip to content

Commit cde6450

Browse files
committed
2018-12-03, Version 6.15.1 'Boron' (LTS)
Notable Changes: This is a patch release to address a bad backport of the fix for "Slowloris HTTP Denial of Service" (CVE-2018-12122). Node.js 6.15.0 misapplies the headers timeout to an entire keep-alive HTTP session, resulting in prematurely disconnected sockets. PR-URL: #24803 Refs: #24796 Refs: #24760 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 5d9005c commit cde6450

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ release.
2626
</tr>
2727
<tr>
2828
<td valign="top">
29-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.15.0">6.15.0</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.15.1">6.15.1</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.15.0">6.15.0</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.4">6.14.4</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.3">6.14.3</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.2">6.14.2</a><br/>

doc/changelogs/CHANGELOG_V6.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</tr>
88
<tr>
99
<td valign="top">
10+
<a href="#6.15.1">6.15.1</a><br/>
1011
<a href="#6.15.0">6.15.0</a><br/>
1112
<a href="#6.14.4">6.14.4</a><br/>
1213
<a href="#6.14.3">6.14.3</a><br/>
@@ -66,6 +67,17 @@
6667
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
6768
will be supported actively until April 2018 and maintained until April 2019.
6869

70+
<a id="6.15.1"></a>
71+
## 2018-12-03, Version 6.15.1 'Boron' (LTS), @rvagg
72+
73+
### Notable Changes
74+
75+
This is a patch release to address a bad backport of the fix for "Slowloris HTTP Denial of Service" (CVE-2018-12122). Node.js 6.15.0 misapplies the headers timeout to an entire keep-alive HTTP session, resulting in prematurely disconnected sockets.
76+
77+
### Commits
78+
79+
* [[`5d9005c359`](https://github.com/nodejs/node/commit/5d9005c359)] - **http**: fix backport of Slowloris headers (Matteo Collina) [#24796](https://github.com/nodejs/node/pull/24796)
80+
6981
<a id="6.15.0"></a>
7082
## 2018-11-27, Version 6.15.0 'Boron' (LTS), @rvagg
7183

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define NODE_VERSION_IS_LTS 1
99
#define NODE_VERSION_LTS_CODENAME "Boron"
1010

11-
#define NODE_VERSION_IS_RELEASE 0
11+
#define NODE_VERSION_IS_RELEASE 1
1212

1313
#ifndef NODE_STRINGIFY
1414
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)