Skip to content

Commit

Permalink
2023-04-07, Version 19.9.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

events:
  * (SEMVER-MINOR) add getMaxListeners method (Khafra) #47039
lib:
  * (SEMVER-MINOR) add tracing channel to diagnostics\_channel (Stephen Belanger)
msi:
  * (SEMVER-MINOR) migrate to WiX4 (Stefan Stojanovic) #45943
node-api:
  * (SEMVER-MINOR) deprecate napi\_module\_register (Vladimir Morozov) #46319
stream:
  * (SEMVER-MINOR) add setter & getter for default highWaterMark (Robert Nagy) #46929
url:
  * (SEMVER-MINOR) implement URL.canParse (Khafra) #47179
wasi:
  * (SEMVER-MINOR) no longer require flag to enable wasi (Michael Dawson) #47286

PR-URL: TBD
  • Loading branch information
RafaelGSS committed Apr 6, 2023
1 parent 669fe78 commit 75642ba
Show file tree
Hide file tree
Showing 9 changed files with 189 additions and 22 deletions.
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -460,7 +460,7 @@ added:
- v13.3.0
- v12.16.0
changes:
- version: REPLACEME
- version: v19.9.0
pr-url: https://github.com/nodejs/node/pull/47286

Check warning on line 464 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: This option is no longer required as WASI is
enabled by default, but can still be passed.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/deprecations.md
Expand Up @@ -3280,7 +3280,7 @@ Node-API callbacks.

<!-- YAML
changes:
- version: REPLACEME
- version: v19.9.0
pr-url: https://github.com/nodejs/node/pull/47203

Check warning on line 3284 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Added support for `--pending-deprecation`.
- version:
Expand Down
20 changes: 10 additions & 10 deletions doc/api/diagnostics_channel.md
Expand Up @@ -233,7 +233,7 @@ diagnostics_channel.unsubscribe('my-channel', onMessage);

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -463,7 +463,7 @@ channel.unsubscribe(onMessage);

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -507,7 +507,7 @@ channel.bindStore(store, (data) => {

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -546,7 +546,7 @@ channel.unbindStore(store);

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -607,7 +607,7 @@ channel.runStores({ some: 'message' }, () => {

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

> Stability: 1 - Experimental
Expand All @@ -624,7 +624,7 @@ dynamically.

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -692,7 +692,7 @@ channels.subscribe({

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -762,7 +762,7 @@ channels.unsubscribe({

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -807,7 +807,7 @@ channels.traceSync(() => {

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

> Stability: 1 - Experimental
Expand Down Expand Up @@ -855,7 +855,7 @@ channels.tracePromise(async () => {

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

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/events.md
Expand Up @@ -1269,7 +1269,7 @@ const { getEventListeners, EventEmitter } = require('node:events');
## `events.getMaxListeners(emitterOrTarget)`

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

* `emitterOrTarget` {EventEmitter|EventTarget}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -3349,7 +3349,7 @@ reader.read().then(({ value, done }) => {
### `stream.getDefaultHighWaterMark(objectMode)`

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

* {boolean} objectMode
Expand All @@ -3361,7 +3361,7 @@ Defaults to `16384` (16 KiB), or `16` for `objectMode`.
### `stream.setDefaultHighWaterMark(objectMode, value)`

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

* {boolean} objectMode
Expand Down
2 changes: 1 addition & 1 deletion doc/api/test.md
Expand Up @@ -513,7 +513,7 @@ added:
- v19.6.0
- v18.15.0
changes:
- version: REPLACEME
- version: v19.9.0
pr-url: https://github.com/nodejs/node/pull/47238

Check warning on line 517 in doc/api/test.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Reporters are now exposed at `node:test/reporters`.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/url.md
Expand Up @@ -665,7 +665,7 @@ ID that isn't registered will silently fail.
#### `URL.canParse(input[, base])`

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

* `input` {string} The absolute or relative input URL to parse. If `input`
Expand Down Expand Up @@ -1248,7 +1248,7 @@ added:
- v15.7.0
- v14.18.0
changes:
- version: REPLACEME
- version: v19.9.0
pr-url: https://github.com/nodejs/node/pull/46989

Check warning on line 1252 in doc/api/url.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The returned object will also contain all the own enumerable
properties of the `url` argument.
Expand Down
169 changes: 168 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 8
#define NODE_PATCH_VERSION 2
#define NODE_MINOR_VERSION 9
#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 75642ba

Please sign in to comment.