Skip to content

Commit 7546686

Browse files
committed
2020-03-04 Version 13.10.0 (Current)
Notable changes: * async_hooks * introduce async-context API (vdeturckheim) #26540 * stream * support passing generator functions into pipeline() (Robert Nagy) #31223 * tls * expose SSL\_export\_keying\_material (simon) #31814 * vm * implement vm.measureMemory() for per-context memory measurement (Joyee Cheung) #31824 PR-URL: #32027
1 parent 37287d3 commit 7546686

File tree

7 files changed

+122
-13
lines changed

7 files changed

+122
-13
lines changed

CHANGELOG.md

+2-1
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_V13.md#13.9.0">13.9.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V13.md#13.8.0">13.8.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.7.0">13.7.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a><br/>

doc/api/async_hooks.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ for (let i = 0; i < 10; i++) {
861861

862862
## Class: `AsyncLocalStorage`
863863
<!-- YAML
864-
added: REPLACEME
864+
added: v13.10.0
865865
-->
866866

867867
This class is used to create asynchronous state within callbacks and promise
@@ -911,15 +911,15 @@ from each other. It is safe to instantiate this class multiple times.
911911

912912
### `new AsyncLocalStorage()`
913913
<!-- YAML
914-
added: REPLACEME
914+
added: v13.10.0
915915
-->
916916

917917
Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
918918
`run` or a `runSyncAndReturn` method call.
919919

920920
### `asyncLocalStorage.disable()`
921921
<!-- YAML
922-
added: REPLACEME
922+
added: v13.10.0
923923
-->
924924

925925
This method disables the instance of `AsyncLocalStorage`. All subsequent calls
@@ -940,7 +940,7 @@ in the current process.
940940

941941
### `asyncLocalStorage.getStore()`
942942
<!-- YAML
943-
added: REPLACEME
943+
added: v13.10.0
944944
-->
945945

946946
* Returns: {any}
@@ -952,7 +952,7 @@ return `undefined`.
952952

953953
### `asyncLocalStorage.run(store, callback[, ...args])`
954954
<!-- YAML
955-
added: REPLACEME
955+
added: v13.10.0
956956
-->
957957

958958
* `store` {any}
@@ -987,7 +987,7 @@ asyncLocalStorage.getStore(); // Returns undefined
987987

988988
### `asyncLocalStorage.exit(callback[, ...args])`
989989
<!-- YAML
990-
added: REPLACEME
990+
added: v13.10.0
991991
-->
992992

993993
* `callback` {Function}
@@ -1019,7 +1019,7 @@ asyncLocalStorage.run('store value', () => {
10191019

10201020
### `asyncLocalStorage.runSyncAndReturn(store, callback[, ...args])`
10211021
<!-- YAML
1022-
added: REPLACEME
1022+
added: v13.10.0
10231023
-->
10241024

10251025
* `store` {any}
@@ -1054,7 +1054,7 @@ try {
10541054

10551055
### `asyncLocalStorage.exitSyncAndReturn(callback[, ...args])`
10561056
<!-- YAML
1057-
added: REPLACEME
1057+
added: v13.10.0
10581058
-->
10591059

10601060
* `callback` {Function}

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ The context must be a `SecureContext`.
18641864
<a id="ERR_TLS_INVALID_STATE"></a>
18651865
### `ERR_TLS_INVALID_STATE`
18661866
<!-- YAML
1867-
added: REPLACEME
1867+
added: v13.10.0
18681868
-->
18691869

18701870
The TLS socket must be connected and securily established. Ensure the 'secure'

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ const cleanup = finished(rs, (err) => {
15721572
<!-- YAML
15731573
added: v10.0.0
15741574
changes:
1575-
- version: REPLACEME
1575+
- version: v13.10.0
15761576
pr-url: https://github.com/nodejs/node/pull/31223
15771577
description: Add support for async generators.
15781578
-->

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ for more information.
10961096

10971097
### `tlsSocket.exportKeyingMaterial(length, label[, context])`
10981098
<!-- YAML
1099-
added: REPLACEME
1099+
added: v13.10.0
11001100
-->
11011101

11021102
* `length` {number} number of bytes to retrieve from keying material

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ console.log(globalVar);
298298
## `vm.measureMemory([options])`
299299

300300
<!-- YAML
301-
added: REPLACEME
301+
added: v13.10.0
302302
-->
303303

304304
> Stability: 1 - Experimental

doc/changelogs/CHANGELOG_V13.md

+108
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)