From 21e8f36e709039316f7d94e1972a5ce2b1feb098 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 24 Sep 2019 18:32:02 +0200 Subject: [PATCH] 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 --- CHANGELOG.md | 3 +- doc/api/crypto.md | 4 +- doc/api/inspector.md | 2 +- doc/api/stream.md | 2 +- doc/api/tls.md | 4 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 175 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 8 files changed, 187 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a80f38766bb4f6..c6b3fd29f2cf48 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 112865f180c895..169e73bea07e21 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/stream.md b/doc/api/stream.md index 557e37ed7c0183..0d3a9ee6cfe87f 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1776,7 +1776,7 @@ const myWritable = new Writable({ #### writable.\_write(chunk, encoding, callback) diff --git a/doc/api/tls.md b/doc/api/tls.md index c9a30d97d72bcc..1f593e37ce04c4 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.