From af3cc714f90ca68ccc67324fc0f7f6e3f997185f Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Mon, 17 Jun 2019 21:31:37 +0200 Subject: 2019-06-27, Version 12.5.0 (Current) Notable changes: * build: * The startup time is reduced by enabling V8 snapshots by default https://github.com/nodejs/node/pull/28181 * deps: * Updated `V8` to 7.5.288.22 https://github.com/nodejs/node/pull/27375 * The numeric separator (v8.dev/features/numeric-separators) feature is now enabled by default * Updated `OpenSSL` to 1.1.1c https://github.com/nodejs/node/pull/28211 * inspector: * The `--inspect-publish-uid` flag was added to specify ways of the inspector web socket url exposure https://github.com/nodejs/node/pull/27741 * n-api: * Accessors on napi_define_* are now ECMAScript-compliant https://github.com/nodejs/node/pull/27851 * report: * The cpu info got added to the report output https://github.com/nodejs/node/pull/28188 * src: * Restore the original state of the stdio file descriptors on exit to prevent leaving stdio in raw or non-blocking mode https://github.com/nodejs/node/pull/24260 * tools,gyp: * Introduce MSVS 2019 https://github.com/nodejs/node/pull/27375 * util: * inspect: * Array grouping became more compact and uses more columns than before https://github.com/nodejs/node/pull/28059 https://github.com/nodejs/node/pull/28070 * Long strings will not be split at 80 characters anymore. Instead they will be split on new lines https://github.com/nodejs/node/pull/28055 * worker: * `worker.terminate()` now returns a promise and using the callback is deprecated https://github.com/nodejs/node/pull/28021 PR-URL: https://github.com/nodejs/node/pull/28268 --- doc/api/deprecations.md | 6 +- doc/api/errors.md | 4 +- doc/api/https.md | 2 +- doc/api/worker_threads.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 227 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 234 insertions(+), 7 deletions(-) (limited to 'doc') diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index af28278f23..a285db698a 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2484,11 +2484,11 @@ The legacy HTTP parser, used by default in versions of Node.js prior to 12.0.0, is deprecated. This deprecation applies to users of the [`--http-parser=legacy`][] command-line flag. - -### DEP0XXX: worker.terminate() with callback + +### DEP0132: worker.terminate() with callback diff --git a/doc/api/errors.md b/doc/api/errors.md index 350c631b76..60f995479f 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -708,7 +708,7 @@ A constructor for a class was called without `new`. ### ERR_CONSTRUCT_CALL_INVALID 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 ### ERR_CANNOT_TRANSFER_OBJECT The value passed to `postMessage()` contained an object that is not supported diff --git a/doc/api/https.md b/doc/api/https.md index b544b420a1..9bde6cfab1 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -26,7 +26,7 @@ An [`Agent`][] object for HTTPS similar to [`http.Agent`][]. See ### new Agent([options])