Skip to content

Commit 54a86d9

Browse files
committed
2019-12-17, Version 8.17.0 'Carbon' (LTS)
This is a security release. This release includes a single commit, an update to npm to 6.13.4. For more details about the vulnerability please consult the npm blog: https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli Notable Changes: * deps: update npm to 6.13.4 - #30904 PR-URL: #30941
1 parent 208b813 commit 54a86d9

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ release.
2727
</tr>
2828
<tr>
2929
<td valign="top">
30-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.16.2">8.16.2</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.17.0">8.17.0</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.16.2">8.16.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.16.1">8.16.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.16.0">8.16.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.15.1">8.15.1</a><br/>

doc/changelogs/CHANGELOG_V8.md

+21
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td valign="top">
13+
<a href="#8.17.0">8.17.0</a><br/>
1314
<a href="#8.16.2">8.16.2</a><br/>
1415
<a href="#8.16.1">8.16.1</a><br/>
1516
<a href="#8.16.0">8.16.0</a><br/>
@@ -65,6 +66,26 @@
6566
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
6667
will be supported actively until April 2019 and maintained until December 2019.
6768

69+
<a id="8.17.0"></a>
70+
## 2019-12-17, Version 8.17.0 'Carbon' (LTS), @MylesBorins
71+
72+
This is a security release.
73+
74+
This release includes a single commit, an update to npm to 6.13.4.
75+
76+
For more details about the vulnerability please consult the npm blog:
77+
78+
https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli
79+
80+
### Notable changes
81+
82+
* **deps**: update npm to 6.13.4 [#30904](https://github.com/nodejs/node/pull/30904)
83+
84+
### Commits
85+
86+
* [[`208b813e49`](https://github.com/nodejs/node/commit/208b813e49)] - **build,win**: add test-ci-native and test-ci-js (João Reis) [#30724](https://github.com/nodejs/node/pull/30724)
87+
* [[`369a23a670`](https://github.com/nodejs/node/commit/369a23a670)] - **deps**: update npm to 6.13.4 (Audrey Eschright) [#30904](https://github.com/nodejs/node/pull/30904)
88+
6889
<a id="8.16.2"></a>
6990
## 2019-10-09, Version 8.16.2 'Carbon' (LTS), @BethGriggs
7091

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 8
26-
#define NODE_MINOR_VERSION 16
27-
#define NODE_PATCH_VERSION 3
26+
#define NODE_MINOR_VERSION 17
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Carbon"
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)