Skip to content

Commit 1ae0511

Browse files
committed
2018-12-26, Version 10.15.0 'Dubnium' (LTS)
The 10.14.0 security release introduced some unexpected breakages on the 10.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 * http: - add maxHeaderSize property (cjihrig) #24860 PR-URL: #25176
1 parent b6d3afb commit 1ae0511

File tree

6 files changed

+35
-7
lines changed

6 files changed

+35
-7
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_V10.md#10.14.2">10.14.2</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.15.0">10.15.0</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V10.md#10.14.2">10.14.2</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V10.md#10.14.1">10.14.1</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V10.md#10.14.0">10.14.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V10.md#10.13.0">10.13.0</a><br/>

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Specify the `file` of the custom [experimental ECMAScript Module][] loader.
183183

184184
### `--max-http-header-size=size`
185185
<!-- YAML
186-
added: REPLACEME
186+
added: v10.15.0
187187
-->
188188

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

doc/api/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,7 @@ Creation of a [`zlib`][] object failed due to incorrect configuration.
18581858
### HPE_HEADER_OVERFLOW
18591859
<!-- YAML
18601860
changes:
1861-
- version: REPLACEME
1861+
- version: v10.15.0
18621862
pr-url: https://github.com/nodejs/node/commit/186035243fad247e3955f
18631863
description: Max header size in `http_parser` was set to 8KB.
18641864
-->

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,7 @@ requests.
18961896

18971897
## http.maxHeaderSize
18981898
<!-- YAML
1899-
added: REPLACEME
1899+
added: v10.15.0
19001900
-->
19011901

19021902
* {number}

doc/changelogs/CHANGELOG_V10.md

Lines changed: 27 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="#10.15.0">10.15.0</a><br/>
1314
<a href="#10.14.2">10.14.2</a><br/>
1415
<a href="#10.14.1">10.14.1</a><br/>
1516
<a href="#10.14.0">10.14.0</a><br/>
@@ -47,6 +48,32 @@
4748
* [io.js](CHANGELOG_IOJS.md)
4849
* [Archive](CHANGELOG_ARCHIVE.md)
4950

51+
<a id="10.15.0"></a>
52+
## 2018-12-26, Version 10.15.0 'Dubnium' (LTS), @MylesBorins
53+
54+
The 10.14.0 security release introduced some unexpected breakages on the 10.x release line.
55+
This is a special release to fix a regression in the HTTP binary upgrade response body and add
56+
a missing CLI flag to adjust the max header size of the http parser.
57+
58+
### Notable Changes
59+
60+
* **cli**:
61+
- add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
62+
* **http**:
63+
- add maxHeaderSize property (cjihrig) [#24860](https://github.com/nodejs/node/pull/24860)
64+
65+
### Commits
66+
67+
* [[`9b2ffc81c0`](https://github.com/nodejs/node/commit/9b2ffc81c0)] - **(SEMVER-MINOR)** **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
68+
* [[`6183c7107d`](https://github.com/nodejs/node/commit/6183c7107d)] - **(SEMVER-MINOR)** **deps**: cherry-pick http\_parser\_set\_max\_header\_size (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
69+
* [[`e669733595`](https://github.com/nodejs/node/commit/e669733595)] - **doc**: describe current HTTP header size limit (Sam Roberts) [#24700](https://github.com/nodejs/node/pull/24700)
70+
* [[`b6d3afb257`](https://github.com/nodejs/node/commit/b6d3afb257)] - **(SEMVER-MINOR)** **http**: add maxHeaderSize property (cjihrig) [#24860](https://github.com/nodejs/node/pull/24860)
71+
* [[`1aea1e3634`](https://github.com/nodejs/node/commit/1aea1e3634)] - **http**: fix regression of binary upgrade response body (Matteo Collina) [#25039](https://github.com/nodejs/node/pull/25039)
72+
* [[`a57aed144a`](https://github.com/nodejs/node/commit/a57aed144a)] - **(SEMVER-MINOR)** **src**: add kUInteger parsing (Matteo Collina) [#24811](https://github.com/nodejs/node/pull/24811)
73+
* [[`527407c49f`](https://github.com/nodejs/node/commit/527407c49f)] - **src**: cache the result of GetOptions() in JS land (Joyee Cheung) [#24091](https://github.com/nodejs/node/pull/24091)
74+
* [[`728bc631e5`](https://github.com/nodejs/node/commit/728bc631e5)] - **test**: fix expectation in test-bootstrap-modules (Ali Ijaz Sheikh) [#25112](https://github.com/nodejs/node/pull/25112)
75+
* [[`3e14212f0e`](https://github.com/nodejs/node/commit/3e14212f0e)] - **test**: remove magic numbers in test-gc-http-client-onerror (Rich Trott) [#24943](https://github.com/nodejs/node/pull/24943)
76+
5077
<a id="10.14.2"></a>
5178
## 2018-12-11, Version 10.14.2 'Dubnium' (LTS), @MylesBorins prepared by @codebytere
5279

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 10
26-
#define NODE_MINOR_VERSION 14
27-
#define NODE_PATCH_VERSION 3
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 "Dubnium"
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)