Skip to content

Commit 8121296

Browse files
committed
2018-03-29, Version 9.10.1 (Current)
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 9.X may be built on the 4.9.X compiler at a later time as the stated minimum compiler requirement for Node.js version 9.X is 4.9.4. Refs: https://github.com/nodejs/node/blob/v9.x/BUILDING.md PR-URL: #19678
1 parent 4844a26 commit 8121296

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.10.0">9.10.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.10.1">9.10.1</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V9.md#9.10.0">9.10.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.9.0">9.9.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V9.md#9.8.0">9.8.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.1">9.7.1</a><br/>

doc/changelogs/CHANGELOG_V9.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#9.10.1">9.10.1</a><br/>
1213
<a href="#9.10.0">9.10.0</a><br/>
1314
<a href="#9.9.0">9.9.0</a><br/>
1415
<a href="#9.8.0">9.8.0</a><br/>
@@ -38,6 +39,23 @@
3839
* [io.js](CHANGELOG_IOJS.md)
3940
* [Archive](CHANGELOG_ARCHIVE.md)
4041

42+
<a id="9.10.1"></a>
43+
## 2018-03-29, Version 9.10.1 (Current), @MylesBorins
44+
45+
### Notable Changes
46+
47+
No additional commits.
48+
49+
Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the latest releases for PPC little
50+
endian were built using GCC 4.9.X instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based
51+
environments. This has been fixed in our infrastructure and we are doing this release to ensure that
52+
the hosted binaries are adhering to our platform support contract.
53+
54+
Note that Node.js versions 10.X and later will be built with version 4.9.X or later of the GCC compiler,
55+
and it is possible that Node.js version 9.X may be built on the 4.9.X compiler at a later
56+
time as the stated [minimum compiler requirement](https://github.com/nodejs/node/blob/v8.x/BUILDING.md)
57+
for Node.js version 9.X is 4.9.4.
58+
4159
<a id="9.10.0"></a>
4260
## 2018-03-28, Version 9.10.0 (Current), @MylesBorins prepared by @targos
4361

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 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)