Skip to content

Commit

Permalink
2023-03-14, Version 19.8.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
targos committed Mar 14, 2023
1 parent 334bb17 commit 115c9ac
Show file tree
Hide file tree
Showing 13 changed files with 259 additions and 19 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.8.0">19.8.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.0">19.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V19.md#19.5.0">19.5.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/async_context.md
Expand Up @@ -139,7 +139,7 @@ Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
### Static method: `AsyncLocalStorage.bind(fn)`

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

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

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Expand Up @@ -1061,7 +1061,7 @@ console.log(bufA.length);
### Static method: `Buffer.copyBytesFrom(view[, offset[, length]])`

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

* `view` {TypedArray} The {TypedArray} to copy.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/events.md
Expand Up @@ -651,7 +651,7 @@ set by [`emitter.setMaxListeners(n)`][] or defaults to
<!-- YAML
added: v3.2.0
changes:
- version: REPLACEME
- version: v19.8.0
pr-url: https://github.com/nodejs/node/pull/46523
description: Added the `listener` argument.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/fs.md
Expand Up @@ -3333,7 +3333,7 @@ Functions based on `fs.open()` exhibit this behavior as well:
### `fs.openAsBlob(path[, options])`
<!-- YAML
added: REPLACEME
added: v19.8.0
-->
> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/net.md
Expand Up @@ -1645,7 +1645,7 @@ Sets the default value of the `autoSelectFamily` option of [`socket.connect(opt
## `net.getDefaultAutoSelectFamilyAttemptTimeout()`

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

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

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
Expand Down
2 changes: 1 addition & 1 deletion doc/api/stream.md
Expand Up @@ -2799,7 +2799,7 @@ const server = http.createServer((req, res) => {
<!-- YAML
added: v16.9.0
changes:
- version: REPLACEME
- version: v19.8.0
pr-url: https://github.com/nodejs/node/pull/46675
description: Added support for webstreams.
-->
Expand Down
10 changes: 7 additions & 3 deletions doc/api/test.md
Expand Up @@ -857,7 +857,9 @@ Shorthand for marking a suite as `TODO`, same as
## `describe.only([name][, options][, fn])`

<!-- YAML
added: v18.15.0
added:
- v19.8.0
- v18.15.0
-->

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

<!-- YAML
added: v18.15.0
added:
- v19.8.0
- v18.15.0
-->

Shorthand for marking a test as `only`,
Expand Down
4 changes: 2 additions & 2 deletions doc/api/tls.md
Expand Up @@ -1792,7 +1792,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v19.8.0
pr-url: https://github.com/nodejs/node/pull/46978
description: The `dhparam` option can now be set to `'auto'` to
enable DHE with appropriate well-known parameters.
Expand Down Expand Up @@ -2256,7 +2256,7 @@ added: v11.4.0
## `tls.DEFAULT_CIPHERS`

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

* {string} The default value of the `ciphers` option of
Expand Down
2 changes: 1 addition & 1 deletion doc/api/url.md
Expand Up @@ -943,7 +943,7 @@ console.log(params.toString());
#### `urlSearchParams.size`

<!-- YAML
added: REPLACEME
added: v19.8.0
-->

The total number of parameter entries.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/wasi.md
Expand Up @@ -121,7 +121,7 @@ added:
- v13.3.0
- v12.16.0
changes:
- version: REPLACEME
- version: v19.8.0
pr-url: https://github.com/nodejs/node/pull/46469
description: version field added to options.
-->
Expand Down Expand Up @@ -152,7 +152,7 @@ changes:
### `wasi.getImportObject()`
<!-- YAML
added: REPLACEME
added: v19.8.0
-->
Return an import object that can be passed to `WebAssembly.instantiate()` if
Expand Down
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Expand Up @@ -906,7 +906,7 @@ if (isMainThread) {
<!-- YAML
added: v10.5.0
changes:
- version: REPLACEME
- version: v19.8.0
pr-url: https://github.com/nodejs/node/pull/46832
description: Added support for a `name` option, which allows
adding a name to worker title for debugging.
Expand Down

0 comments on commit 115c9ac

Please sign in to comment.