Skip to content

Commit 8051716

Browse files
committed
2019-04-02, Version 6.17.1 'Boron' (LTS)
Notable changes: * **http**: - fix error check in `Execute()` (Brian White) [#25939](#25939)
1 parent c9d21a0 commit 8051716

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

+2-1
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_V6.md#6.17.0">6.17.0</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.17.1">6.17.1</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.17.0">6.17.0</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.16.0">6.16.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.15.1">6.15.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.15.0">6.15.0</a><br/>

doc/changelogs/CHANGELOG_V6.md

+21
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</tr>
88
<tr>
99
<td valign="top">
10+
<a href="#6.17.1">6.17.1</a><br/>
1011
<a href="#6.17.0">6.17.0</a><br/>
1112
<a href="#6.16.0">6.16.0</a><br/>
1213
<a href="#6.15.1">6.15.1</a><br/>
@@ -69,6 +70,26 @@
6970
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
7071
will be supported actively until April 2018 and maintained until April 2019.
7172

73+
<a id="6.17.1"></a>
74+
## 2019-04-02, Version 6.17.1'Boron' (LTS), @BethGriggs
75+
76+
Node 6 is due to go End-of-Life on 2019-04-30.
77+
78+
### Notable Changes
79+
80+
* **http**:
81+
- fix error check in `Execute()` (Brian White) [#25939](https://github.com/nodejs/node/pull/25939)
82+
83+
### Commits
84+
85+
* [[`c9d21a0c10`](https://github.com/nodejs/node/commit/c9d21a0c10)] - **build**: set `-blibpath:` for AIX (Richard Lau) [#25447](https://github.com/nodejs/node/pull/25447)
86+
* [[`9ba5fd6bad`](https://github.com/nodejs/node/commit/9ba5fd6bad)] - **build**: only check REPLACEME & DEP...X for releases (Rod Vagg) [#24575](https://github.com/nodejs/node/pull/24575)
87+
* [[`1371a6f88b`](https://github.com/nodejs/node/commit/1371a6f88b)] - **doc**: simplify CODE\_OF\_CONDUCT.md (Rich Trott) [#23989](https://github.com/nodejs/node/pull/23989)
88+
* [[`ad62971573`](https://github.com/nodejs/node/commit/ad62971573)] - **doc**: document that addMembership must be called once in a cluster (James M Snell) [#23746](https://github.com/nodejs/node/pull/23746)
89+
* [[`8080a9bf40`](https://github.com/nodejs/node/commit/8080a9bf40)] - **http**: fix error check in `Execute()` (Brian White) [#25939](https://github.com/nodejs/node/pull/25939)
90+
* [[`aedc7120ea`](https://github.com/nodejs/node/commit/aedc7120ea)] - **src**: fix bootstrap\_node on bsd (sylkat) [#22663](https://github.com/nodejs/node/pull/22663)
91+
* [[`b5d464955a`](https://github.com/nodejs/node/commit/b5d464955a)] - **test**: fix test-repl-envvars (Anna Henningsen) [#25226](https://github.com/nodejs/node/pull/25226)
92+
7293
<a id="6.17.0"></a>
7394
## 2018-02-28, Version 6.17.0 'Boron' (LTS), @rvagg
7495

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define NODE_VERSION_IS_LTS 1
99
#define NODE_VERSION_LTS_CODENAME "Boron"
1010

11-
#define NODE_VERSION_IS_RELEASE 0
11+
#define NODE_VERSION_IS_RELEASE 1
1212

1313
#ifndef NODE_STRINGIFY
1414
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)