From 64219741218aa87e259cf8257596073b8e747f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 3 Jun 2019 14:10:53 +0200 Subject: 2019-06-04, Version 12.4.0 (Current) Notable changes: * doc: * The JSON variant of the API documentation is no longer experimental (Rich Trott) https://github.com/nodejs/node/pull/27842. * esm: * JSON module support is always enabled under `--experimental-modules`. The `--experimental-json-modules` flag has been removed (Myles Borins) https://github.com/nodejs/node/pull/27752. * http,http2: * A new flag has been added for overriding the default HTTP server socket timeout (which is two minutes). Pass `--http-server-default-timeout=milliseconds` or `--http-server-default-timeout=0` to respectively change or disable the timeout. Starting with Node.js 13.0.0, the timeout will be disabled by default (Ali Ijaz Sheikh) https://github.com/nodejs/node/pull/27704. * inspector: * Added an experimental `--heap-prof` flag to start the V8 heap profiler on startup and write the heap profile to disk before exit (Joyee Cheung) https://github.com/nodejs/node/pull/27596. * stream: * The `readable.unshift()` method now correctly converts strings to buffers. Additionally, a new optional argument is accepted to specify the string's encoding, such as `'utf8'` or `'ascii'` (Marcos Casagrande) https://github.com/nodejs/node/pull/27194. * v8: * The object returned by `v8.getHeapStatistics()` has two new properties: `number_of_native_contexts` and `number_of_detached_contexts` (Yuriy Vasiyarov) https://github.com/nodejs/node/pull/27933. PR-URL: https://github.com/nodejs/node/pull/28040 --- CHANGELOG.md | 3 +- doc/api/cli.md | 10 +-- doc/api/http2.md | 2 +- doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 137 ++++++++++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 6 files changed, 149 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7bf4737208..6d36375decd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,8 @@ release. -12.3.1
+12.4.0
+12.3.1
12.3.0
12.2.0
12.1.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index e307406206e..e6e507ddb6c 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -254,7 +254,7 @@ added: v12.0.0 ### `--heap-prof` > Stability: 1 - Experimental @@ -276,7 +276,7 @@ Heap.20190409.202950.15293.0.001.heapprofile ### `--heap-prof-dir` > Stability: 1 - Experimental @@ -286,7 +286,7 @@ be placed. ### `--heap-prof-interval` > Stability: 1 - Experimental @@ -296,7 +296,7 @@ by `--heap-prof`. The default is 512 * 1024 bytes. ### `--heap-prof-name` > Stability: 1 - Experimental @@ -324,7 +324,7 @@ This flag is likely to become a no-op and removed at some point in the future. ### `--http-server-default-timeout=milliseconds` Overrides the default value of `http`, `https` and `http2` server socket diff --git a/doc/api/http2.md b/doc/api/http2.md index e3c4eac6aaf..64a0c7f9af0 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1911,7 +1911,7 @@ error will be thrown.