Skip to content

Commit af3cc71

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

File tree

6 files changed

+236
-8
lines changed

6 files changed

+236
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2484,11 +2484,11 @@ The legacy HTTP parser, used by default in versions of Node.js prior to 12.0.0,
24842484
is deprecated. This deprecation applies to users of the
24852485
[`--http-parser=legacy`][] command-line flag.
24862486
2487-
<a id="DEP0XXX"></a>
2488-
### DEP0XXX: worker.terminate() with callback
2487+
<a id="DEP0132"></a>
2488+
### DEP0132: worker.terminate() with callback
24892489
<!-- YAML
24902490
changes:
2491-
- version: REPLACEME
2491+
- version: v12.5.0
24922492
pr-url: https://github.com/nodejs/node/pull/28021
24932493
description: Runtime deprecation.
24942494
-->

doc/api/errors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ A constructor for a class was called without `new`.
708708
<a id="ERR_CONSTRUCT_CALL_INVALID"></a>
709709
### ERR_CONSTRUCT_CALL_INVALID
710710
<!--
711-
added: REPLACEME
711+
added: v12.5.0
712712
-->
713713

714714
A class constructor was called that is not callable.
@@ -2021,7 +2021,7 @@ A module file could not be resolved while attempting a [`require()`][] or
20212021
### ERR_CANNOT_TRANSFER_OBJECT
20222022
<!--
20232023
added: v10.5.0
2024-
removed: REPLACEME
2024+
removed: v12.5.0
20252025
-->
20262026

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

doc/api/https.md

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

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

0 commit comments

Comments
 (0)