Skip to content

Commit db430ff

Browse files
committed
2017-11-07 Node.js v8.9.1 'Carbon' (LTS) Release
PR-URL: #16783
1 parent a815e1b commit db430ff

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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.0">8.9.0</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.9.1">8.9.1</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.0">8.9.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.8.1">8.8.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.8.0">8.8.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.7.0">8.7.0</a><br/>

doc/changelogs/CHANGELOG_V8.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
</tr>
88
<tr>
99
<td valign="top">
10-
<a href="#8.9.0">8.9.0</a><br/>
10+
<a href="#8.9.1">8.9.1</a><br/>
1111
</td>
1212
<td valign="top">
13+
<a href="#8.9.0">8.9.0</a><br/>
1314
<a href="#8.8.1">8.8.1</a><br/>
1415
<a href="#8.8.0">8.8.0</a><br/>
1516
<a href="#8.7.0">8.7.0</a><br/>
@@ -43,6 +44,31 @@
4344
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
4445
will be supported actively until April 2019 and maintained until December 2019.
4546

47+
<a id="8.9.1"></a>
48+
## 2017-11-07, Version 8.9.1 'Carbon' (LTS), @gibfahn
49+
50+
### Notable Changes
51+
52+
- **openssl**:
53+
- upgrade openssl sources to 1.0.2m (Shigeki Ohtsu) [#16691](https://github.com/nodejs/node/pull/16691)
54+
- ***Revert*** "**https**:
55+
- refactor to use http internals" (Myles Borins) [#16660](https://github.com/nodejs/node/pull/16660)
56+
57+
### Commits
58+
59+
* [[`a815e1b6a2`](https://github.com/nodejs/node/commit/a815e1b6a2)] - **deps**: cherry-pick e7f4e9e from upstream libuv (Bartosz Sosnowski) [#16724](https://github.com/nodejs/node/pull/16724)
60+
* [[`7f86e8190c`](https://github.com/nodejs/node/commit/7f86e8190c)] - **deps**: update openssl asm and asm_obsolete files (Shigeki Ohtsu) [#16691](https://github.com/nodejs/node/pull/16691)
61+
* [[`1af2244020`](https://github.com/nodejs/node/commit/1af2244020)] - **deps**: add -no_rand_screen to openssl s_client (Shigeki Ohtsu) [nodejs/io.js#1836](https://github.com/nodejs/io.js/pull/1836)
62+
* [[`9d98dcc395`](https://github.com/nodejs/node/commit/9d98dcc395)] - **deps**: fix asm build error of openssl in x86_win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
63+
* [[`99319efc45`](https://github.com/nodejs/node/commit/99319efc45)] - **deps**: fix openssl assembly error on ia32 win32 (Fedor Indutny) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
64+
* [[`151a8da4b7`](https://github.com/nodejs/node/commit/151a8da4b7)] - **deps**: copy all openssl header files to include dir (Shigeki Ohtsu) [#16691](https://github.com/nodejs/node/pull/16691)
65+
* [[`d68e53452c`](https://github.com/nodejs/node/commit/d68e53452c)] - **deps**: upgrade openssl sources to 1.0.2m (Shigeki Ohtsu) [#16691](https://github.com/nodejs/node/pull/16691)
66+
* [[`a3be5bc560`](https://github.com/nodejs/node/commit/a3be5bc560)] - **doc**: add 9.x to version picker and mark 8.x as LTS (Chris Young) [#16672](https://github.com/nodejs/node/pull/16672)
67+
* [[`08b75c1591`](https://github.com/nodejs/node/commit/08b75c1591)] - ***Revert*** "**https**: refactor to use http internals" (Myles Borins) [#16660](https://github.com/nodejs/node/pull/16660)
68+
* [[`d334a95834`](https://github.com/nodejs/node/commit/d334a95834)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
69+
* [[`bf26b96fd6`](https://github.com/nodejs/node/commit/bf26b96fd6)] - **src**: add 'dynamic' process.release.lts property (Rod Vagg) [#16656](https://github.com/nodejs/node/pull/16656)
70+
* [[`dfac6cc0bb`](https://github.com/nodejs/node/commit/dfac6cc0bb)] - **test**: update process-release for Node 8 Carbon (Jeremiah Senkpiel) [#16656](https://github.com/nodejs/node/pull/16656)
71+
4672
<a id="8.9.0"></a>
4773
## 2017-10-31, Version 8.9.0 'Carbon' (LTS), @gibfahn
4874

src/node_version.h

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