Skip to content

Commit e71333e

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: #47086
1 parent 36c48ea commit e71333e

14 files changed

+256
-21
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
@@ -3331,7 +3331,7 @@ Functions based on `fs.open()` exhibit this behavior as well:
33313331
### `fs.openAsBlob(path[, options])`
33323332
33333333
<!-- YAML
3334-
added: REPLACEME
3334+
added: v19.8.0
33353335
-->
33363336
33373337
> Stability: 1 - Experimental

doc/api/net.md

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

16451645
<!-- YAML
1646-
added: REPLACEME
1646+
added: v19.8.0
16471647
-->
16481648

16491649
Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
@@ -1653,7 +1653,7 @@ Gets the current default value of the `autoSelectFamilyAttemptTimeout` option o
16531653
## `net.setDefaultAutoSelectFamilyAttemptTimeout(value)`
16541654

16551655
<!-- YAML
1656-
added: REPLACEME
1656+
added: v19.8.0
16571657
-->
16581658

16591659
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
@@ -2797,7 +2797,7 @@ const server = http.createServer((req, res) => {
27972797
<!-- YAML
27982798
added: v16.9.0
27992799
changes:
2800-
- version: REPLACEME
2800+
- version: v19.8.0
28012801
pr-url: https://github.com/nodejs/node/pull/46675
28022802
description: Added support for webstreams.
28032803
-->

doc/api/test.md

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

842842
<!-- YAML
843-
added: REPLACEME
843+
added: v19.8.0
844844
-->
845845

846846
Shorthand for marking a suite as `only`, same as
@@ -853,7 +853,7 @@ added:
853853
- v18.6.0
854854
- v16.17.0
855855
changes:
856-
- version: REPLACEME
856+
- version: v19.8.0
857857
pr-url: https://github.com/nodejs/node/pull/46889
858858
description: Calling `it()` is now equivalent to calling `test()`.
859859
-->
@@ -875,7 +875,7 @@ same as [`it([name], { todo: true }[, fn])`][it options].
875875
## `it.only([name][, options][, fn])`
876876

877877
<!-- YAML
878-
added: REPLACEME
878+
added: v19.8.0
879879
-->
880880

881881
Shorthand for marking a test as `only`,

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ argument.
17901790
<!-- YAML
17911791
added: v0.11.13
17921792
changes:
1793-
- version: REPLACEME
1793+
- version: v19.8.0
17941794
pr-url: https://github.com/nodejs/node/pull/46978
17951795
description: The `dhparam` option can now be set to `'auto'` to
17961796
enable DHE with appropriate well-known parameters.
@@ -2254,7 +2254,7 @@ added: v11.4.0
22542254
## `tls.DEFAULT_CIPHERS`
22552255

22562256
<!-- YAML
2257-
added: REPLACEME
2257+
added: v19.8.0
22582258
-->
22592259

22602260
* {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)