From cb68c04ce1bc4534b2d92bc7319c6ff6dda0180d 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: [PATCH] 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 | 8 +- doc/api/http2.md | 2 +- doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V12.md | 137 ++++++++++++++++++++++++++++++++ 5 files changed, 145 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b62594877bd6d0..bac24ad49231c3 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 d755081b4db39c..6e20596462bda6 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 diff --git a/doc/api/http2.md b/doc/api/http2.md index f5dea9640a4181..1332673bb8aa4a 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1913,7 +1913,7 @@ error will be thrown.