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 36c48ea commit 4221dce
Show file tree
Hide file tree
Showing 14 changed files with 258 additions and 22 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 @@ -3331,7 +3331,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 @@ -1643,7 +1643,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 @@ -1653,7 +1653,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 @@ -2797,7 +2797,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
6 changes: 3 additions & 3 deletions doc/api/test.md
Expand Up @@ -840,7 +840,7 @@ Shorthand for marking a suite as `TODO`, same as
## `describe.only([name][, options][, fn])`

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

Shorthand for marking a suite as `only`, same as
Expand All @@ -853,7 +853,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 @@ -875,7 +875,7 @@ same as [`it([name], { todo: true }[, fn])`][it options].
## `it.only([name][, options][, fn])`

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

Shorthand for marking a test as `only`,
Expand Down
4 changes: 2 additions & 2 deletions doc/api/tls.md
Expand Up @@ -1790,7 +1790,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 @@ -2254,7 +2254,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
237 changes: 236 additions & 1 deletion doc/changelogs/CHANGELOG_V19.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 19
#define NODE_MINOR_VERSION 7
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 8
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 4221dce

Please sign in to comment.