Skip to content

Commit 2817fde

Browse files
committed
2019-05-22, Version v12.3.1 (Current)
Notable changes * deps: * Fix handling of +0/-0 when constant field tracking is enabled (Michaël Zasso) #27792 * Fix `os.freemem()` and `os.totalmem` correctness (cjihrig) #27718 * src: * Fix v12.3.0 regression that prevents native addons from compiling #27804 PR-URL: #27814
1 parent c478884 commit 2817fde

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
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.2.0">12.2.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.1.0">12.1.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>

doc/changelogs/CHANGELOG_V12.md

+19
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#12.3.1">12.3.1</a><br/>
1213
<a href="#12.3.0">12.3.0</a><br/>
1314
<a href="#12.2.0">12.2.0</a><br/>
1415
<a href="#12.1.0">12.1.0</a><br/>
@@ -31,6 +32,24 @@
3132
* [io.js](CHANGELOG_IOJS.md)
3233
* [Archive](CHANGELOG_ARCHIVE.md)
3334

35+
<a id="12.3.1"></a>
36+
## 2019-05-22, Version 12.3.1 (Current), @BridgeAR
37+
38+
### Notable changes
39+
40+
* **deps**:
41+
* Fix handling of +0/-0 when constant field tracking is enabled (Michaël Zasso) [#27792](https://github.com/nodejs/node/pull/27792)
42+
* Fix `os.freemem()` and `os.totalmem` correctness (cjihrig) [#27718](https://github.com/nodejs/node/pull/27718)
43+
* **src**:
44+
* Fix v12.3.0 regression that prevents native addons from compiling [#27804](https://github.com/nodejs/node/pull/27804)
45+
46+
### Commits
47+
48+
* [[`c478884725`](https://github.com/nodejs/node/commit/c478884725)] - **deps**: V8: cherry-pick 94c87fe (Michaël Zasso) [#27792](https://github.com/nodejs/node/pull/27792)
49+
* [[`aed74ccb4c`](https://github.com/nodejs/node/commit/aed74ccb4c)] - **deps**: upgrade to libuv 1.29.1 (cjihrig) [#27718](https://github.com/nodejs/node/pull/27718)
50+
* [[`7438a557af`](https://github.com/nodejs/node/commit/7438a557af)] - **src**: remove util-inl.h include in node.h (Anna Henningsen) [#27804](https://github.com/nodejs/node/pull/27804)
51+
* [[`6f7005465a`](https://github.com/nodejs/node/commit/6f7005465a)] - **src, lib**: take control of prepareStackTrace (Gus Caplan) [#23926](https://github.com/nodejs/node/pull/23926)
52+
3453
<a id="12.3.0"></a>
3554
## 2019-05-21, Version 12.3.0 (Current), @BridgeAR
3655

src/node_version.h

+1-1
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)