Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05214c7

Browse files
committedDec 13, 2019
2019-12-17, Version 12.14.0 'Erbium' (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: #30938
1 parent d586682 commit 05214c7

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed
 

‎CHANGELOG.md

+2-1
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_V12.md#12.13.1">12.13.1</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.14.0">12.14.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.13.1">12.13.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.13.0">12.13.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.12.0">12.12.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.11.1">12.11.1</a><br/>

‎doc/changelogs/CHANGELOG_V12.md

+20
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td valign="top">
13+
<a href="#12.14.0">12.14.0</a><br/>
1314
<a href="#12.13.1">12.13.1</a><br/>
1415
<a href="#12.13.0">12.13.0</a><br/>
1516
</td>
@@ -49,6 +50,25 @@
4950
* [io.js](CHANGELOG_IOJS.md)
5051
* [Archive](CHANGELOG_ARCHIVE.md)
5152

53+
<a id="12.14.0"></a>
54+
## 2019-12-17, Version 12.14.0 'Erbium' (LTS), @MylesBorins
55+
56+
This is a security release.
57+
58+
This release includes a single commit, an update to npm to 6.13.4.
59+
60+
For more details about the vulnerability please consult the npm blog:
61+
62+
https://blog.npmjs.org/post/189618601100/binary-planting-with-the-npm-cli
63+
64+
### Notable changes
65+
66+
* **deps**: update npm to 6.13.4 [#30904](https://github.com/nodejs/node/pull/30904)
67+
68+
### Commits
69+
70+
* [[`d586682b0b`](https://github.com/nodejs/node/commit/d586682b0b)] - **deps**: update npm to 6.13.4 (Ruy Adorno) [#30904](https://github.com/nodejs/node/pull/30904)
71+
5272
<a id="12.13.1"></a>
5373
## 2019-11-19, Version 12.13.1 'Erbium' (LTS), @targos
5474

‎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 12
26-
#define NODE_MINOR_VERSION 13
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 14
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Erbium"
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)
Please sign in to comment.