Skip to content

Commit 115c9ac

Browse files
committed
2023-03-14, Version 19.8.0 (Current)
Notable changes: buffer: * (SEMVER-MINOR) add Buffer.copyBytesFrom(...) (James M Snell) #46500 doc: * add marco-ippolito to collaborators (Marco Ippolito) #46816 events: * (SEMVER-MINOR) add listener argument to listenerCount (Paolo Insogna) #46523 lib: * (SEMVER-MINOR) add AsyncLocalStorage.bind() and .snapshot() (flakey5) #46387 src: * (SEMVER-MINOR) add `fs.openAsBlob` to support File-backed Blobs (James M Snell) #45258 tls: * (SEMVER-MINOR) support automatic DHE (Tobias Nießen) #46978 url: * (SEMVER-MINOR) implement URLSearchParams size getter (James M Snell) #46308 wasi: * (SEMVER-MINOR) add support for version when creating WASI (Michael Dawson) #46469 worker: * (SEMVER-MINOR) add support for worker name in inspector and trace_events (Debadree Chatterjee) #46832 PR-URL: #47087
1 parent 334bb17 commit 115c9ac

13 files changed

+259
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ release.
3535
</tr>
3636
<tr>
3737
<td valign="top">
38-
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.8.0">19.8.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>

doc/api/async_context.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
139139
### Static method: `AsyncLocalStorage.bind(fn)`
140140

141141
<!-- YAML
142-
added: REPLACEME
142+
added: v19.8.0
143143
-->
144144

145145
> Stability: 1 - Experimental
@@ -153,7 +153,7 @@ Binds the given function to the current execution context.
153153
### Static method: `AsyncLocalStorage.snapshot()`
154154

155155
<!-- YAML
156-
added: REPLACEME
156+
added: v19.8.0
157157
-->
158158

159159
> Stability: 1 - Experimental

doc/api/buffer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ console.log(bufA.length);
10611061
### Static method: `Buffer.copyBytesFrom(view[, offset[, length]])`
10621062

10631063
<!-- YAML
1064-
added: REPLACEME
1064+
added: v19.8.0
10651065
-->
10661066

10671067
* `view` {TypedArray} The {TypedArray} to copy.

doc/api/events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ set by [`emitter.setMaxListeners(n)`][] or defaults to
651651
<!-- YAML
652652
added: v3.2.0
653653
changes:
654-
- version: REPLACEME
654+
- version: v19.8.0
655655
pr-url: https://github.com/nodejs/node/pull/46523
656656
description: Added the `listener` argument.
657657
-->

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3333,7 +3333,7 @@ Functions based on `fs.open()` exhibit this behavior as well:
33333333
### `fs.openAsBlob(path[, options])`
33343334
33353335
<!-- YAML
3336-
added: REPLACEME
3336+
added: v19.8.0
33373337
-->
33383338
33393339
> Stability: 1 - Experimental

doc/api/net.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1645,7 +1645,7 @@ Sets the default value of the `autoSelectFamily` option of [`socket.connect(opt
16451645
## `net.getDefaultAutoSelectFamilyAttemptTimeout()`
16461646

16471647
<!-- YAML
1648-
added: REPLACEME
1648+
added: v19.8.0
16491649
-->
16501650

16511651
Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
@@ -1655,7 +1655,7 @@ Gets the current default value of the `autoSelectFamilyAttemptTimeout` option o
16551655
## `net.setDefaultAutoSelectFamilyAttemptTimeout(value)`
16561656

16571657
<!-- YAML
1658-
added: REPLACEME
1658+
added: v19.8.0
16591659
-->
16601660

16611661
Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2799,7 +2799,7 @@ const server = http.createServer((req, res) => {
27992799
<!-- YAML
28002800
added: v16.9.0
28012801
changes:
2802-
- version: REPLACEME
2802+
- version: v19.8.0
28032803
pr-url: https://github.com/nodejs/node/pull/46675
28042804
description: Added support for webstreams.
28052805
-->

doc/api/test.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,9 @@ Shorthand for marking a suite as `TODO`, same as
857857
## `describe.only([name][, options][, fn])`
858858

859859
<!-- YAML
860-
added: v18.15.0
860+
added:
861+
- v19.8.0
862+
- v18.15.0
861863
-->
862864

863865
Shorthand for marking a suite as `only`, same as
@@ -870,7 +872,7 @@ added:
870872
- v18.6.0
871873
- v16.17.0
872874
changes:
873-
- version: REPLACEME
875+
- version: v19.8.0
874876
pr-url: https://github.com/nodejs/node/pull/46889
875877
description: Calling `it()` is now equivalent to calling `test()`.
876878
-->
@@ -892,7 +894,9 @@ same as [`it([name], { todo: true }[, fn])`][it options].
892894
## `it.only([name][, options][, fn])`
893895

894896
<!-- YAML
895-
added: v18.15.0
897+
added:
898+
- v19.8.0
899+
- v18.15.0
896900
-->
897901

898902
Shorthand for marking a test as `only`,

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,7 @@ argument.
17921792
<!-- YAML
17931793
added: v0.11.13
17941794
changes:
1795-
- version: REPLACEME
1795+
- version: v19.8.0
17961796
pr-url: https://github.com/nodejs/node/pull/46978
17971797
description: The `dhparam` option can now be set to `'auto'` to
17981798
enable DHE with appropriate well-known parameters.
@@ -2256,7 +2256,7 @@ added: v11.4.0
22562256
## `tls.DEFAULT_CIPHERS`
22572257

22582258
<!-- YAML
2259-
added: REPLACEME
2259+
added: v19.8.0
22602260
-->
22612261

22622262
* {string} The default value of the `ciphers` option of

doc/api/url.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ console.log(params.toString());
943943
#### `urlSearchParams.size`
944944

945945
<!-- YAML
946-
added: REPLACEME
946+
added: v19.8.0
947947
-->
948948

949949
The total number of parameter entries.

doc/api/wasi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ added:
121121
- v13.3.0
122122
- v12.16.0
123123
changes:
124-
- version: REPLACEME
124+
- version: v19.8.0
125125
pr-url: https://github.com/nodejs/node/pull/46469
126126
description: version field added to options.
127127
-->
@@ -152,7 +152,7 @@ changes:
152152
### `wasi.getImportObject()`
153153
154154
<!-- YAML
155-
added: REPLACEME
155+
added: v19.8.0
156156
-->
157157
158158
Return an import object that can be passed to `WebAssembly.instantiate()` if

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ if (isMainThread) {
906906
<!-- YAML
907907
added: v10.5.0
908908
changes:
909-
- version: REPLACEME
909+
- version: v19.8.0
910910
pr-url: https://github.com/nodejs/node/pull/46832
911911
description: Added support for a `name` option, which allows
912912
adding a name to worker title for debugging.

0 commit comments

Comments
 (0)