Skip to content

Commit 474bb14

Browse files
committed
2018-12-26, Version 11.6.0 (Current)
This is a special release to add a CLI flag to set the max http header size. This should have been included in the 11.3.0 security release. Notable Changes: * cli: - add --max-http-header-size flag (cjihrig) #24811 PR-URL: #25175
1 parent edd8bd0 commit 474bb14

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.5.0">11.5.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.6.0">11.6.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.5.0">11.5.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.2.0">11.2.0</a><br/>

doc/api/cli.md

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

200200
### `--max-http-header-size=size`
201201
<!-- YAML
202-
added: REPLACEME
202+
added: v11.6.0
203203
-->
204204

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

doc/changelogs/CHANGELOG_V11.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#11.6.0">11.6.0</a><br/>
1213
<a href="#11.5.0">11.5.0</a><br/>
1314
<a href="#11.4.0">11.4.0</a><br/>
1415
<a href="#11.3.0">11.3.0</a><br/>
@@ -32,6 +33,22 @@
3233
* [io.js](CHANGELOG_IOJS.md)
3334
* [Archive](CHANGELOG_ARCHIVE.md)
3435

36+
<a id="11.6.0"></a>
37+
## 2018-12-26, Version 11.6.0 (Current), @MylesBorins
38+
39+
This is a special release to add a CLI flag to set the max http header size.
40+
This should have been included in the 11.3.0 security release.
41+
42+
### Notable Changes
43+
44+
* **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
45+
46+
### Commits
47+
48+
* [[`edd8bd0ee0`](https://github.com/nodejs/node/commit/edd8bd0ee0)] - **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
49+
* [[`0057af293a`](https://github.com/nodejs/node/commit/0057af293a)] - **deps**: cherry-pick http\_parser\_set\_max\_header\_size (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
50+
* [[`c80ac7fae3`](https://github.com/nodejs/node/commit/c80ac7fae3)] - **src**: add kUInteger parsing (Matteo Collina) [#24811](https://github.com/nodejs/node/pull/24811)
51+
3552
<a id="11.5.0"></a>
3653
## 2018-12-18, Version 11.5.0 (Current), @BethGriggs
3754

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 11
26-
#define NODE_MINOR_VERSION 5
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 6
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)