Skip to content

Commit 381f5ec

Browse files
committed
2017-12-08, Version 6.12.2 'Boron' (LTS)
This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/december-2017-security-releases/ for details on patched vulnerabilities. Fixes for the following CVEs are included in this release: * CVE-2017-15896 * CVE-2017-3738 (from the openssl project) Notable Changes: * deps: * openssl updated to 1.0.2n (Shigeki Ohtsu) #17526 PR-URL: #17533
1 parent 6314a46 commit 381f5ec

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-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.12.1">6.12.1</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.12.2">6.12.2</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.1">6.12.1</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.12.0">6.12.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.5">6.11.5</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.11.4">6.11.4</a><br/>

doc/changelogs/CHANGELOG_V6.md

+26
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</tr>
88
<tr>
99
<td valign="top">
10+
<a href="#6.12.2">6.12.2</a><br/>
1011
<a href="#6.12.1">6.12.1</a><br/>
1112
<a href="#6.12.0">6.12.0</a><br/>
1213
<a href="#6.11.5">6.11.5</a><br/>
@@ -56,6 +57,31 @@
5657
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
5758
will be supported actively until April 2018 and maintained until April 2019.
5859

60+
<a id="6.12.2"></a>
61+
## 2017-12-08, Version 6.12.2 'Boron' (LTS), @MylesBorins
62+
63+
This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/december-2017-security-releases/ for details on patched vulnerabilities.
64+
65+
Fixes for the following CVEs are included in this release:
66+
67+
* CVE-2017-15896
68+
* CVE-2017-3738 (from the openssl project)
69+
70+
### Notable Changes
71+
72+
* **deps**:
73+
* openssl updated to 1.0.2n (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
74+
75+
### Commits
76+
77+
* [[`6314a46c48`](https://github.com/nodejs/node/commit/6314a46c48)] - **deps**: update openssl asm and asm_obsolete files (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
78+
* [[`f2121a8583`](https://github.com/nodejs/node/commit/f2121a8583)] - **deps**: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) [nodejs/io.js#1836](https://github.com/nodejs/io.js/pull/1836)
79+
* [[`741651cc4b`](https://github.com/nodejs/node/commit/741651cc4b)] - **deps**: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
80+
* [[`5956aead33`](https://github.com/nodejs/node/commit/5956aead33)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
81+
* [[`ac53d01646`](https://github.com/nodejs/node/commit/ac53d01646)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
82+
* [[`03651ad9d6`](https://github.com/nodejs/node/commit/03651ad9d6)] - **deps**: upgrade openssl sources to 1.0.2n (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
83+
* [[`eb30387c6d`](https://github.com/nodejs/node/commit/eb30387c6d)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
84+
5985
<a id="6.12.1"></a>
6086
## 2017-12-05, Version 6.12.1 'Boron' (LTS), @MylesBorins
6187

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)