Skip to content

Commit 6421974

Browse files
committed
2019-06-04, Version 12.4.0 (Current)
Notable changes: * doc: * The JSON variant of the API documentation is no longer experimental (Rich Trott) #27842. * esm: * JSON module support is always enabled under `--experimental-modules`. The `--experimental-json-modules` flag has been removed (Myles Borins) #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) #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) #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) #27194. * v8: * The object returned by `v8.getHeapStatistics()` has two new properties: `number_of_native_contexts` and `number_of_detached_contexts` (Yuriy Vasiyarov) #27933. PR-URL: #28040
1 parent 23119ca commit 6421974

File tree

6 files changed

+149
-11
lines changed

6 files changed

+149
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.2.0">12.2.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V12.md#12.1.0">12.1.0</a><br/>

doc/api/cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ added: v12.0.0
254254

255255
### `--heap-prof`
256256
<!-- YAML
257-
added: REPLACEME
257+
added: v12.4.0
258258
-->
259259

260260
> Stability: 1 - Experimental
@@ -276,7 +276,7 @@ Heap.20190409.202950.15293.0.001.heapprofile
276276

277277
### `--heap-prof-dir`
278278
<!-- YAML
279-
added: REPLACEME
279+
added: v12.4.0
280280
-->
281281

282282
> Stability: 1 - Experimental
@@ -286,7 +286,7 @@ be placed.
286286

287287
### `--heap-prof-interval`
288288
<!-- YAML
289-
added: REPLACEME
289+
added: v12.4.0
290290
-->
291291

292292
> Stability: 1 - Experimental
@@ -296,7 +296,7 @@ by `--heap-prof`. The default is 512 * 1024 bytes.
296296

297297
### `--heap-prof-name`
298298
<!-- YAML
299-
added: REPLACEME
299+
added: v12.4.0
300300
-->
301301

302302
> Stability: 1 - Experimental
@@ -324,7 +324,7 @@ This flag is likely to become a no-op and removed at some point in the future.
324324

325325
### `--http-server-default-timeout=milliseconds`
326326
<!-- YAML
327-
added: REPLACEME
327+
added: v12.4.0
328328
-->
329329

330330
Overrides the default value of `http`, `https` and `http2` server socket

doc/api/http2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ error will be thrown.
19111911
<!-- YAML
19121912
added: v8.4.0
19131913
changes:
1914-
- version: REPLACEME
1914+
- version: v12.4.0
19151915
pr-url: https://github.com/nodejs/node/pull/27782
19161916
description: The `options` parameter now supports `net.createServer()`
19171917
options.

doc/api/tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ being issued by trusted CA (`options.ca`).
11781178
<!-- YAML
11791179
added: v0.11.3
11801180
changes:
1181-
- version: REPLACEME
1181+
- version: v12.4.0
11821182
pr-url: https://github.com/nodejs/node/pull/27816
11831183
description: The `hints` option is now supported.
11841184
- version: v12.2.0

0 commit comments

Comments
 (0)