Skip to content

Commit 2c73868

Browse files
committed
2019-03-28, Version 11.13.0 (Current)
Notable changes: * crypto * Allow deriving public from private keys (Tobias Nießen) [#26278](#26278). * events * Added a `once` function to use `EventEmitter` with promises (Matteo Collina) [#26078](#26078). * tty * Added a `hasColors` method to `WriteStream` (Ruben Bridgewater) [#26247](#26247). * Added NO_COLOR and FORCE_COLOR support (Ruben Bridgewater) [#26485](#26485). * v8 * Added `v8.getHeapSnapshot` and `v8.writeHeapSnapshot` to generate snapshots in the format used by tools such as Chrome DevTools (James M Snell) [#26501](#26501). * worker * Added `worker.moveMessagePortToContext`. This enables using MessagePorts in different vm.Contexts, aiding with the isolation that the vm module seeks to provide (Anna Henningsen) [#26497](#26497). * C++ API * `AddPromiseHook` is now deprecated. This API was added to fill an use case that is served by `async_hooks`, since that has `Promise` support (Anna Henningsen) [#26529](#26529). * Added a `Stop` API to shut down Node.js while it is running (Gireesh Punathil) [#21283](#21283). * meta * [Gireesh Punathil](https://github.com/gireeshpunathil) is now a member of the Technical Steering Committee [#26657](#26657). * Added [Yongsheng Zhang](https://github.com/ZYSzys) to collaborators [#26730](#26730). PR-URL: #26949
1 parent c35acc0 commit 2c73868

File tree

7 files changed

+199
-8
lines changed

7 files changed

+199
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.13.0">11.13.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.12.0">11.12.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a><br/>

doc/api/crypto.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ This can be called many times with new data as it is streamed.
11101110
<!-- YAML
11111111
added: v11.6.0
11121112
changes:
1113-
- version: REPLACEME
1113+
- version: v11.13.0
11141114
pr-url: https://github.com/nodejs/node/pull/26438
11151115
description: This class is now exported.
11161116
-->
@@ -1825,7 +1825,7 @@ must be an object with the properties described above.
18251825
<!-- YAML
18261826
added: v11.6.0
18271827
changes:
1828-
- version: REPLACEME
1828+
- version: v11.13.0
18291829
pr-url: https://github.com/nodejs/node/pull/26278
18301830
description: The `key` argument can now be a `KeyObject` with type
18311831
`private`.

doc/api/events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ emitter.emit('log');
655655

656656
## events.once(emitter, name)
657657
<!-- YAML
658-
added: REPLACEME
658+
added: v11.13.0
659659
-->
660660
* `emitter` {EventEmitter}
661661
* `name` {string}

doc/api/tty.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ of columns and rows in the corresponding [TTY](tty.html).
186186

187187
### writeStream.hasColors([count][, env])
188188
<!-- YAML
189-
added: REPLACEME
189+
added: v11.13.0
190190
-->
191191

192192
* `count` {integer} The number of colors that are requested (minimum 2).

doc/api/v8.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The value returned is an array of objects containing the following properties:
8989

9090
## v8.getHeapSnapshot()
9191
<!-- YAML
92-
added: REPLACEME
92+
added: v11.13.0
9393
-->
9494

9595
* Returns: {stream.Readable} A Readable Stream containing the V8 heap snapshot
@@ -179,7 +179,7 @@ setTimeout(() => { v8.setFlagsFromString('--notrace_gc'); }, 60e3);
179179

180180
## v8.writeHeapSnapshot([filename])
181181
<!-- YAML
182-
added: REPLACEME
182+
added: v11.13.0
183183
-->
184184

185185
* `filename` {string} The file path where the V8 heap snapshot is to be

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if (isMainThread) {
7272

7373
## worker.moveMessagePortToContext(port, contextifiedSandbox)
7474
<!-- YAML
75-
added: REPLACEME
75+
added: v11.13.0
7676
-->
7777

7878
* `port` {MessagePort} The message port which will be transferred.

doc/changelogs/CHANGELOG_V11.md

+190
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)