From d36b6f8da39bda0e2f52680f0f7a81ee0146e23f Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Wed, 25 Sep 2019 00:45:45 +0200 Subject: 2019-09-24, Version 12.11.0 (Current) Notable changes: * crypto: * Add `oaepLabel` option https://github.com/nodejs/node/pull/29489 * deps: * Update V8 to 7.7.299.11 https://github.com/nodejs/node/pull/28918 * More efficient memory handling * Stack trace serialization got faster * The `Intl.NumberFormat` API gained new functionality * For more information: https://v8.dev/blog/v8-release-77 * events: * Add support for `EventTarget` in `once` https://github.com/nodejs/node/pull/29498 * fs: * Expose memory file mapping flag `UV_FS_O_FILEMAP` https://github.com/nodejs/node/pull/29260 * inspector: * New API - `Session.connectToMainThread` https://github.com/nodejs/node/pull/28870 * process: * Initial SourceMap support via `env.NODE_V8_COVERAGE` https://github.com/nodejs/node/pull/28960 * stream: * Make `_write()` optional when `_writev()` is implemented https://github.com/nodejs/node/pull/29639 * tls: * Add option to override signature algorithms https://github.com/nodejs/node/pull/29598 * util: * Add `encodeInto` to `TextEncoder` https://github.com/nodejs/node/pull/29524 * worker: * The `worker_thread` module is now stable https://github.com/nodejs/node/pull/29512 PR-URL: https://github.com/nodejs/node/pull/29695 --- CHANGELOG.md | 3 +- doc/api/crypto.md | 4 +- doc/api/inspector.md | 2 +- doc/api/n-api.md | 2 +- doc/api/stream.md | 2 +- doc/api/tls.md | 4 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 176 ++++++++++++++++++++++++++++++++++++++++ 8 files changed, 186 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6add84b012..e7cf18dcd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,7 +28,8 @@ release. -12.10.0
+12.11.0
+12.10.0
12.9.1
12.9.0
12.8.1
diff --git a/doc/api/crypto.md b/doc/api/crypto.md index e8fd9fee50..7dd4e2ecbf 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2383,7 +2383,7 @@ An array of supported digest functions can be retrieved using Connects a session to the main thread inspector back-end. An exception will diff --git a/doc/api/n-api.md b/doc/api/n-api.md index f67825fe56..bc2737b564 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -167,7 +167,7 @@ listed as supporting a later version. | v9.x | v9.0.0* | v9.3.0* | v9.11.0* | | | | v10.x | | | v10.0.0 | v10.16.0 | | | v11.x | | | v11.0.0 | v11.8.0 | | -| v12.x | | | | v12.0.0 | | +| v12.x | | | | v12.0.0 | v12.11.0 | | v13.x | | | | | REPLACEME | \* Indicates that the N-API version was released as experimental diff --git a/doc/api/stream.md b/doc/api/stream.md index bf7ee7251a..ea741fd745 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1779,7 +1779,7 @@ const myWritable = new Writable({ #### writable.\_write(chunk, encoding, callback) diff --git a/doc/api/tls.md b/doc/api/tls.md index c9a30d97d7..24d826191f 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -844,7 +844,7 @@ for more information. ### tlsSocket.getSharedSigalgs() * Returns: {Array} List of signature algorithms shared between the server and @@ -1358,7 +1358,7 @@ argument.