Skip to content

Commit f5e0b17

Browse files
committed
2019-06-26, Version 12.5.0 (Current)
Notable changes: * build: * The startup time is reduced by enabling V8 snapshots by default #28181 * deps: * Updated `V8` to 7.5.288.22 #27375 * The numeric separator (v8.dev/features/numeric-separators) feature is now enabled by default * Updated `OpenSSL` to 1.1.1c #28211 * inspector: * The `--inspect-publish-uid` flag was added to specify ways of the inspector web socket url exposure #27741 * n-api: * Accessors on napi_define_* are now ECMAScript-compliant #27851 * report: * The cpu info got added to the report output #28188 * src: * Restore the original state of the stdio file descriptors on exit to prevent leaving stdio in raw or non-blocking mode #24260 * tools,gyp: * Introduce MSVS 2019 #27375 * util: * inspect: * Array grouping became more compact and uses more columns than before #28059 #28070 * Long strings will not be split at 80 characters anymore. Instead they will be split on new lines #28055 * worker: * `worker.terminate()` now returns a promise and using the callback is deprecated #28021 PR-URL: #28268
1 parent 47366d7 commit f5e0b17

File tree

7 files changed

+239
-11
lines changed

7 files changed

+239
-11
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.5.0">12.5.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.2.0">12.2.0</a><br/>

doc/api/deprecations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2477,11 +2477,11 @@ The legacy HTTP parser, used by default in versions of Node.js prior to 12.0.0,
24772477
is deprecated. This deprecation applies to users of the
24782478
[`--http-parser=legacy`][] command-line flag.
24792479
2480-
<a id="DEP0XXX"></a>
2481-
### DEP0XXX: worker.terminate() with callback
2480+
<a id="DEP0132"></a>
2481+
### DEP0132: worker.terminate() with callback
24822482
<!-- YAML
24832483
changes:
2484-
- version: REPLACEME
2484+
- version: v12.5.0
24852485
pr-url: https://github.com/nodejs/node/pull/28021
24862486
description: Runtime deprecation.
24872487
-->

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ A constructor for a class was called without `new`.
706706
<a id="ERR_CONSTRUCT_CALL_INVALID"></a>
707707
### ERR_CONSTRUCT_CALL_INVALID
708708
<!--
709-
added: REPLACEME
709+
added: v12.5.0
710710
-->
711711

712712
A class constructor was called that is not callable.
@@ -2019,7 +2019,7 @@ A module file could not be resolved while attempting a [`require()`][] or
20192019
### ERR_CANNOT_TRANSFER_OBJECT
20202020
<!--
20212021
added: v10.5.0
2022-
removed: REPLACEME
2022+
removed: v12.5.0
20232023
-->
20242024

20252025
The value passed to `postMessage()` contained an object that is not supported

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ An [`Agent`][] object for HTTPS similar to [`http.Agent`][]. See
2626
### new Agent([options])
2727
<!-- YAML
2828
changes:
29-
- version: REPLACEME
29+
- version: v12.5.0
3030
pr-url: https://github.com/nodejs/node/pull/28209
3131
description: do not automatically set servername if the target host was
3232
specified using an IP address.

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ inside the worker thread. If `stdout: true` was not passed to the
621621
<!-- YAML
622622
added: v10.5.0
623623
changes:
624-
- version: REPLACEME
624+
- version: v12.5.0
625625
pr-url: https://github.com/nodejs/node/pull/28021
626626
description: This function now returns a Promise.
627627
Passing a callback is deprecated, and was useless up to this

doc/changelogs/CHANGELOG_V12.md

+227
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 12
26-
#define NODE_MINOR_VERSION 4
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 5
27+
#define NODE_PATCH_VERSION 0
2828

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)