Skip to content

Commit 0792b61

Browse files
committedMar 29, 2018
2018-03-29, Version 8.11.1 'Carbon' (LTS)
Notable changes: No additional commits. Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the latest releases for PPC little endian were built using GCC 4.9.X instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based environments. This has been fixed in our infrastructure and we are doing this release to ensure that the hosted binaries are adhering to our platform support contract. Note that Node.js versions 10.X and later will be built with version 4.9.X or later of the GCC compiler, and it is possible that Node.js version 8.X may be built on the 4.9.X compiler at a later time as the stated minimum compiler requirement for Node.js version 8.X is 4.9.4. Refs: https://github.com/nodejs/node/blob/v8.x/BUILDING.md PR-URL: #19679
1 parent 2213a4b commit 0792b61

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
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.11.0">8.11.0</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.11.1">8.11.1</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.11.0">8.11.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.10.0">8.10.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.4">8.9.4</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.3">8.9.3</a><br/>

‎doc/changelogs/CHANGELOG_V8.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# Node.js 8 ChangeLog
23

34
<!--lint disable prohibited-strings-->
@@ -9,6 +10,7 @@
910
</tr>
1011
<tr>
1112
<td valign="top">
13+
<a href="#8.11.1">8.11.1</a><br/>
1214
<a href="#8.11.0">8.11.0</a><br/>
1315
<a href="#8.10.0">8.10.0</a><br/>
1416
<a href="#8.9.4">8.9.4</a><br/>
@@ -51,6 +53,23 @@
5153
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
5254
will be supported actively until April 2019 and maintained until December 2019.
5355

56+
<a id="8.11.1"></a>
57+
## 2018-03-29, Version 8.11.1 'Carbon' (LTS), @MylesBorins
58+
59+
### Notable Changes
60+
61+
No additional commits.
62+
63+
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the latest releases for PPC little
64+
endian were built using GCC 4.9.X instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
65+
environments. This has been fixed in our infrastructure and we are doing this release to ensure that
66+
the hosted binaries are adhering to our platform support contract.
67+
68+
Note that Node.js versions 10.X and later will be built with version 4.9.X or later of the GCC compiler,
69+
and it is possible that Node.js version 8.X may be built on the 4.9.X compiler at a later
70+
time as the stated [minimum compiler requirement](https://github.com/nodejs/node/blob/v8.x/BUILDING.md)
71+
for Node.js version 8.X is 4.9.4.
72+
5473
<a id="8.11.0"></a>
5574
## 2018-03-28, Version 8.11.0 'Carbon' (LTS), @MylesBorins
5675

‎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)