Skip to content

Commit 1cb5aed

Browse files
committed
2018-08-15, Version 6.14.4 'Boron' (LTS)
This is a security release. All Node.js users should consult the security release summary at: https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/ for details on patched vulnerabilities. Fixes for the following CVEs are included in this release: * CVE-2018-0732 (OpenSSL) * CVE-2018-12115 (Node.js) Notable changes: * buffer: Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115) * deps: Upgrade to OpenSSL 1.0.2p, fixing: * Client DoS due to large DH parameter (CVE-2018-0732) * ECDSA key extraction via local side-channel (CVE not assigned)
1 parent 7ccb042 commit 1cb5aed

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.14.3">6.14.3</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.14.4">6.14.4</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.3">6.14.3</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.2">6.14.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.1">6.14.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.14.0">6.14.0</a><br/>

doc/changelogs/CHANGELOG_V6.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</tr>
88
<tr>
99
<td valign="top">
10+
<a href="#6.14.4">6.14.4</a><br/>
1011
<a href="#6.14.3">6.14.3</a><br/>
1112
<a href="#6.14.2">6.14.2</a><br/>
1213
<a href="#6.14.1">6.14.1</a><br/>
@@ -64,6 +65,41 @@
6465
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
6566
will be supported actively until April 2018 and maintained until April 2019.
6667

68+
<a id="6.14.4"></a>
69+
## 2018-08-15, Version 6.14.4 'Boron' (LTS), @rvagg
70+
71+
This is a security release. All Node.js users should consult the security release summary at:
72+
73+
https://nodejs.org/en/blog/vulnerability/august-2018-security-releases/
74+
75+
for details on patched vulnerabilities.
76+
77+
Fixes for the following CVEs are included in this release:
78+
79+
* CVE-2018-0732 (OpenSSL)
80+
* CVE-2018-12115 (Node.js)
81+
82+
### Notable Changes
83+
84+
* **buffer**: Fix out-of-bounds (OOB) write in `Buffer.write()` for UCS-2 encoding (CVE-2018-12115)
85+
* **deps**: Upgrade to OpenSSL 1.0.2p, fixing:
86+
* Client DoS due to large DH parameter (CVE-2018-0732)
87+
* ECDSA key extraction via local side-channel (CVE not assigned)
88+
89+
### Commits
90+
91+
* [[`0052926476`](https://github.com/nodejs/node/commit/0052926476)] - **buffer**: avoid overrun on UCS-2 string write (Rod Vagg) [nodejs-private/node-private#138](https://github.com/nodejs-private/node-private/pull/138)
92+
* [[`dbe6551b89`](https://github.com/nodejs/node/commit/dbe6551b89)] - **deps**: add -no\_rand\_screen to openssl s\_client (Shigeki Ohtsu) [#1836](https://github.com/nodejs/node/pull/1836)
93+
* [[`7829bbcacb`](https://github.com/nodejs/node/commit/7829bbcacb)] - **deps**: fix asm build error of openssl in x86\_win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
94+
* [[`cddca629b5`](https://github.com/nodejs/node/commit/cddca629b5)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [#1389](https://github.com/nodejs/node/pull/1389)
95+
* [[`e6014aed52`](https://github.com/nodejs/node/commit/e6014aed52)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
96+
* [[`37ddce514d`](https://github.com/nodejs/node/commit/37ddce514d)] - **deps**: upgrade openssl sources to 1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
97+
* [[`08a150fcca`](https://github.com/nodejs/node/commit/08a150fcca)] - **inspector**: don't bind to 0.0.0.0 by default (Ben Noordhuis) [#21376](https://github.com/nodejs/node/pull/21376)
98+
* [[`19b9d7fd77`](https://github.com/nodejs/node/commit/19b9d7fd77)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [#1389](https://github.com/nodejs/node/pull/1389)
99+
* [[`7ccb0422fc`](https://github.com/nodejs/node/commit/7ccb0422fc)] - **test**: fix error messages for OpenSSL-1.0.2p (Shigeki Ohtsu) [#22320](https://github.com/nodejs/node/pull/22320)
100+
* [[`58b9497ca8`](https://github.com/nodejs/node/commit/58b9497ca8)] - **test**: update certificates and private keys (Fedor Indutny) [#22184](https://github.com/nodejs/node/pull/22184)
101+
* [[`9863e11ea8`](https://github.com/nodejs/node/commit/9863e11ea8)] - **test**: update keys/Makefile to clean and build all (Daniel Bevenius) [#19975](https://github.com/nodejs/node/pull/19975)
102+
67103
<a id="6.14.3"></a>
68104
## 2018-06-12, Version 6.14.3 'Boron' (LTS), @evanlucas
69105

src/node_version.h

Lines changed: 1 addition & 1 deletion
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)