File tree 4 files changed +24
-5
lines changed
4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ release.
26
26
</tr >
27
27
<tr >
28
28
<td valign =" top " >
29
- <b ><a href =" doc/changelogs/CHANGELOG_V6.md#6.15.1 " >6.15.1</a ></b ><br />
29
+ <b ><a href =" doc/changelogs/CHANGELOG_V6.md#6.16.0 " >6.16.0</a ></b ><br />
30
+ <a href =" doc/changelogs/CHANGELOG_V6.md#6.15.1 " >6.15.1</a ><br />
30
31
<a href =" doc/changelogs/CHANGELOG_V6.md#6.15.0 " >6.15.0</a ><br />
31
32
<a href =" doc/changelogs/CHANGELOG_V6.md#6.14.4 " >6.14.4</a ><br />
32
33
<a href =" doc/changelogs/CHANGELOG_V6.md#6.14.3 " >6.14.3</a ><br />
Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ the next argument will be used as a script filename.
295
295
296
296
### ` --max-http-header-size=size `
297
297
<!-- YAML
298
- added: REPLACEME
298
+ added: v6.16.0
299
299
-->
300
300
301
301
Specify the maximum size, in bytes, of HTTP headers. Defaults to 8KB.
Original file line number Diff line number Diff line change 7
7
</tr>
8
8
<tr>
9
9
<td valign="top">
10
+ <a href="#6.15.1">6.16.0</a><br/>
10
11
<a href="#6.15.1">6.15.1</a><br/>
11
12
<a href="#6.15.0">6.15.0</a><br/>
12
13
<a href="#6.14.4">6.14.4</a><br/>
67
68
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
68
69
will be supported actively until April 2018 and maintained until April 2019.
69
70
71
+ <a id="6.16.10"></a>
72
+ ## 2018-12-26, Version 6.16.0 'Boron' (LTS), @MylesBorins
73
+
74
+ The 6.15.0 security release introduced some unexpected breakages on the 6.x release line.
75
+ This is a special release to fix a regression in the HTTP binary upgrade response body and add
76
+ a missing CLI flag to adjust the max header size of the http parser.
77
+
78
+ ### Notable Changes
79
+
80
+ * **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
81
+
82
+ ### Commits
83
+
84
+ * [[`f233b160c9`](https://github.com/nodejs/node/commit/f233b160c9)] - **cli**: add --max-http-header-size flag (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
85
+ * [[`59f83d6896`](https://github.com/nodejs/node/commit/59f83d6896)] - **deps**: cherry-pick http\_parser\_set\_max\_header\_size (cjihrig) [#24811](https://github.com/nodejs/node/pull/24811)
86
+ * [[`8a3e0c0697`](https://github.com/nodejs/node/commit/8a3e0c0697)] - **http**: fix regression of binary upgrade response body (Matteo Collina) [#25036](https://github.com/nodejs/node/pull/25036)
87
+
70
88
<a id="6.15.1"></a>
71
89
## 2018-12-03, Version 6.15.1 'Boron' (LTS), @rvagg
72
90
Original file line number Diff line number Diff line change 2
2
#define SRC_NODE_VERSION_H_
3
3
4
4
#define NODE_MAJOR_VERSION 6
5
- #define NODE_MINOR_VERSION 15
6
- #define NODE_PATCH_VERSION 2
5
+ #define NODE_MINOR_VERSION 16
6
+ #define NODE_PATCH_VERSION 0
7
7
8
8
#define NODE_VERSION_IS_LTS 1
9
9
#define NODE_VERSION_LTS_CODENAME "Boron"
10
10
11
- #define NODE_VERSION_IS_RELEASE 0
11
+ #define NODE_VERSION_IS_RELEASE 1
12
12
13
13
#ifndef NODE_STRINGIFY
14
14
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
You can’t perform that action at this time.
0 commit comments