Skip to content

Commit d4331bf

Browse files
committed
2018-12-26, Version 8.15.0 'Carbon' (LTS)
The 8.14.0 security release introduced some unexpected breakages on the 8.x release line. This is a special release to fix a regression in the HTTP binary upgrade response body and add a missing CLI flag to adjust the max header size of the http parser. Notable changes: * cli: - add --max-http-header-size flag (cjihrig) #24811 PR-URL: #25177
1 parent 665d415 commit d4331bf

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ release.
2727
</tr>
2828
<tr>
2929
<td valign="top">
30-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.14.1">8.14.1</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.15.0">8.15.0</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.14.1">8.14.1</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.14.0">8.14.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.13.0">8.13.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.12.0">8.12.0</a><br/>

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ the next argument will be used as a script filename.
407407

408408
### `--max-http-header-size=size`
409409
<!-- YAML
410-
added: REPLACEME
410+
added: v8.15.0
411411
-->
412412

413413
Specify the maximum size, in bytes, of HTTP headers. Defaults to 8KB.

doc/changelogs/CHANGELOG_V8.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 valign="top">
13+
<a href="#8.15.0">8.15.0</a><br/>
1314
<a href="#8.14.1">8.14.1</a><br/>
1415
<a href="#8.14.0">8.14.0</a><br/>
1516
<a href="#8.13.0">8.13.0</a><br/>
@@ -60,6 +61,23 @@
6061
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
6162
will be supported actively until April 2019 and maintained until December 2019.
6263

64+
<a id="8.15.0"></a>
65+
## 2018-12-26, Version 8.15.0 'Carbon' (LTS), @MylesBorins
66+
67+
The 8.14.0 security release introduced some unexpected breakages on the 8.x release line.
68+
This is a special release to fix a regression in the HTTP binary upgrade response body and add
69+
a missing CLI flag to adjust the max header size of the http parser.
70+
71+
### Notable changes
72+
73+
* **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
74+
75+
### Commits
76+
77+
* [[`665d415a10`](https://github.com/nodejs/node/commit/665d415a10)] - **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
78+
* [[`c713b4f599`](https://github.com/nodejs/node/commit/c713b4f599)] - **deps**: cherry-pick http\_parser\_set\_max\_header\_size (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
79+
* [[`f31dc1ba08`](https://github.com/nodejs/node/commit/f31dc1ba08)] - **http**: fix regression of binary upgrade response body (Matteo Collina) [#25037](https://github.com/nodejs/node/pull/25037)
80+
6381
<a id="8.14.1"></a>
6482
## 2018-12-18, Version 8.14.1 'Carbon' (LTS), @MylesBorins prepared by @BethGriggs
6583

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 8
26-
#define NODE_MINOR_VERSION 14
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 15
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Carbon"
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)