File tree Expand file tree Collapse file tree 4 files changed +26
-5
lines changed Expand file tree Collapse file tree 4 files changed +26
-5
lines changed Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff 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
189189Specify the maximum size, in bytes, of HTTP headers. Defaults to 8KB.
Original file line number Diff line number Diff line change 1010</tr>
1111<tr>
1212<td valign="top">
13+ <a href="#10.14.2">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/>
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**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
61+
62+ ### Commits
63+
64+ * [[`c155eafc27`](https://github.com/nodejs/node/commit/c155eafc27)] - **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
65+ * [[`6a0ef61c67`](https://github.com/nodejs/node/commit/6a0ef61c67)] - **deps**: cherry-pick http\_parser\_set\_max\_header\_size (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
66+ * [[`8c6e7f547c`](https://github.com/nodejs/node/commit/8c6e7f547c)] - **http**: fix regression of binary upgrade response body (Matteo Collina) [#25039](https://github.com/nodejs/node/pull/25039)
67+ * [[`b3cc598804`](https://github.com/nodejs/node/commit/b3cc598804)] - **src**: add kUInteger parsing (Matteo Collina) [#24811](https://github.com/nodejs/node/pull/24811)
68+ * [[`659ef782fd`](https://github.com/nodejs/node/commit/659ef782fd)] - **test**: fix expectation in test-bootstrap-modules (Ali Ijaz Sheikh) [#25112](https://github.com/nodejs/node/pull/25112)
69+
5070<a id="10.14.2"></a>
5171## 2018-12-11, Version 10.14.2 'Dubnium' (LTS), @MylesBorins prepared by @codebytere
5272
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments