Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit 8a44289

Browse files
committed
2017-12-08, Version 8.9.3 'Carbon' (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-15897 * CVE-2017-3738 (from the openssl project) Notable Changes: * buffer: * buffer allocated with an invalid content will now be zero filled (Anna Henningsen) nodejs/node#17428 * deps: * openssl updated to 1.0.2n (Shigeki Ohtsu) nodejs/node#17526 PR-URL: nodejs/node#17532
1 parent 42f09ed commit 8a44289

File tree

5 files changed

+53
-11
lines changed

5 files changed

+53
-11
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.9.2">8.9.2</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.9.3">8.9.3</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.2">8.9.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.1">8.9.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.0">8.9.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.8.1">8.8.1</a><br/>

doc/api/buffer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ console.log(buf2.toString());
511511
<!-- YAML
512512
added: v5.10.0
513513
changes:
514-
- version: REPLACEME
514+
- version: v8.9.3
515515
pr-url: https://github.com/nodejs/node/pull/17428
516516
description: Specifying an invalid string for `fill` now results in a
517517
zero-filled buffer.

doc/api/http2.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ frames have been acknowledged.
344344

345345
#### http2session.ping([payload, ]callback)
346346
<!-- YAML
347-
added: REPLACEME
347+
added: v8.9.3
348348
-->
349349

350350
* `payload` {Buffer|TypedArray|DataView} Optional ping payload.
@@ -1473,11 +1473,11 @@ not be emitted.
14731473
<!-- YAML
14741474
added: v8.4.0
14751475
changes:
1476-
- version: REPLACEME
1476+
- version: v8.9.3
14771477
pr-url: https://github.com/nodejs/node/pull/17105
14781478
description: Added the `maxOutstandingPings` option with a default limit of
14791479
10.
1480-
- version: REPLACEME
1480+
- version: v8.9.3
14811481
pr-url: https://github.com/nodejs/node/pull/16676
14821482
description: Added the `maxHeaderListPairs` option with a default limit of
14831483
128 header pairs.
@@ -1541,11 +1541,11 @@ server.listen(80);
15411541
<!-- YAML
15421542
added: v8.4.0
15431543
changes:
1544-
- version: REPLACEME
1544+
- version: v8.9.3
15451545
pr-url: https://github.com/nodejs/node/pull/17105
15461546
description: Added the `maxOutstandingPings` option with a default limit of
15471547
10.
1548-
- version: REPLACEME
1548+
- version: v8.9.3
15491549
pr-url: https://github.com/nodejs/node/pull/16676
15501550
description: Added the `maxHeaderListPairs` option with a default limit of
15511551
128 header pairs.
@@ -1619,11 +1619,11 @@ server.listen(80);
16191619
<!-- YAML
16201620
added: v8.4.0
16211621
changes:
1622-
- version: REPLACEME
1622+
- version: v8.9.3
16231623
pr-url: https://github.com/nodejs/node/pull/17105
16241624
description: Added the `maxOutstandingPings` option with a default limit of
16251625
10.
1626-
- version: REPLACEME
1626+
- version: v8.9.3
16271627
pr-url: https://github.com/nodejs/node/pull/16676
16281628
description: Added the `maxHeaderListPairs` option with a default limit of
16291629
128 header pairs.
@@ -1791,7 +1791,7 @@ server.on('stream', (stream, headers) => {
17911791
<!-- YAML
17921792
added: v8.4.0
17931793
changes:
1794-
- version: REPLACEME
1794+
- version: v8.9.3
17951795
pr-url: https://github.com/nodejs/node/pull/16676
17961796
description: The `maxHeaderListSize` setting is now strictly enforced.
17971797
-->

doc/changelogs/CHANGELOG_V8.md

+41
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</tr>
88
<tr>
99
<td valign="top">
10+
<a href="#8.9.3">8.9.3</a><br/>
1011
<a href="#8.9.2">8.9.2</a><br/>
1112
<a href="#8.9.1">8.9.1</a><br/>
1213
<a href="#8.9.0">8.9.0</a><br/>
@@ -45,6 +46,46 @@
4546
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
4647
will be supported actively until April 2019 and maintained until December 2019.
4748

49+
<a id="8.9.3"></a>
50+
## 2017-12-08, Version 8.9.3 'Carbon' (LTS), @MylesBorins
51+
52+
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.
53+
54+
Fixes for the following CVEs are included in this release:
55+
56+
* CVE-2017-15896
57+
* CVE-2017-15897
58+
* CVE-2017-3738 (from the openssl project)
59+
60+
### Notable Changes
61+
62+
* **buffer**:
63+
* buffer allocated with an invalid content will now be zero filled (Anna Henningsen) [#17428](https://github.com/nodejs/node/pull/17428)
64+
* **deps**:
65+
* openssl updated to 1.0.2n (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
66+
67+
### Commits
68+
69+
* [[`b05ef978d3`](https://github.com/nodejs/node/commit/b05ef978d3)] - **buffer**: zero-fill buffer allocated with invalid content (Anna Henningsen) [#17428](https://github.com/nodejs/node/pull/17428)
70+
* [[`18652b6860`](https://github.com/nodejs/node/commit/18652b6860)] - **deps**: update openssl asm and asm_obsolete files (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
71+
* [[`e6c308e237`](https://github.com/nodejs/node/commit/e6c308e237)] - **deps**: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) [nodejs/io.js#1836](https://github.com/nodejs/io.js/pull/1836)
72+
* [[`a85f94bd59`](https://github.com/nodejs/node/commit/a85f94bd59)] - **deps**: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
73+
* [[`b5552c854c`](https://github.com/nodejs/node/commit/b5552c854c)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
74+
* [[`afad1f23a2`](https://github.com/nodejs/node/commit/afad1f23a2)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
75+
* [[`9fdd3bddf5`](https://github.com/nodejs/node/commit/9fdd3bddf5)] - **deps**: upgrade openssl sources to 1.0.2n (Shigeki Ohtsu) [#17526](https://github.com/nodejs/node/pull/17526)
76+
* [[`db09f245bf`](https://github.com/nodejs/node/commit/db09f245bf)] - **doc**: warn against filling buffer with invalid data (Anna Henningsen) [#17428](https://github.com/nodejs/node/pull/17428)
77+
* [[`42f09ed461`](https://github.com/nodejs/node/commit/42f09ed461)] - **http2**: use correct connect event for TLS Socket (James M Snell) [#17328](https://github.com/nodejs/node/pull/17328)
78+
* [[`aba3544b50`](https://github.com/nodejs/node/commit/aba3544b50)] - **http2**: use 'close' event instead of 'streamClosed' (James M Snell) [#17328](https://github.com/nodejs/node/pull/17328)
79+
* [[`bd035d75bd`](https://github.com/nodejs/node/commit/bd035d75bd)] - **http2**: general cleanups in core.js (James M Snell) [#17209](https://github.com/nodejs/node/pull/17209)
80+
* [[`a5e3ba2cb3`](https://github.com/nodejs/node/commit/a5e3ba2cb3)] - **http2**: major update to internals (James M Snell) [#17105](https://github.com/nodejs/node/pull/17105)
81+
* [[`d7f37cebed`](https://github.com/nodejs/node/commit/d7f37cebed)] - **http2**: simplify subsequent rstStream calls (Anatoli Papirovski) [#16753](https://github.com/nodejs/node/pull/16753)
82+
* [[`22ee960775`](https://github.com/nodejs/node/commit/22ee960775)] - **http2**: refactor multiple internals (James M Snell) [#16676](https://github.com/nodejs/node/pull/16676)
83+
* [[`319beaf45b`](https://github.com/nodejs/node/commit/319beaf45b)] - **http2**: allocate on every chunk send (James M Snell) [#16669](https://github.com/nodejs/node/pull/16669)
84+
* [[`7d68488524`](https://github.com/nodejs/node/commit/7d68488524)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
85+
* [[`8e8fac29de`](https://github.com/nodejs/node/commit/8e8fac29de)] - **src**: fix -Winconsistent-missing-override warning (Ben Noordhuis) [#16726](https://github.com/nodejs/node/pull/16726)
86+
* [[`26b43c87ee`](https://github.com/nodejs/node/commit/26b43c87ee)] - **src**: add method to compute storage in WriteWrap (Anna Henningsen) [#16727](https://github.com/nodejs/node/pull/16727)
87+
* [[`99d775ca07`](https://github.com/nodejs/node/commit/99d775ca07)] - **test**: fix flaky test-http2-create-client-connect (David Benjamin) [#16130](https://github.com/nodejs/node/pull/16130)
88+
4889
<a id="8.9.2"></a>
4990
## 2017-12-05, Version 8.9.2 'Carbon' (LTS), @gibfahn
5091

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
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)