Skip to content

Commit c68eb32

Browse files
committed
2023-04-07, Version 19.9.0 (Current)
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: #47441
1 parent 08d1f15 commit c68eb32

10 files changed

+212
-23
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.8.1">19.8.1</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V19.md#19.9.0">19.9.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V19.md#19.8.1">19.8.1</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V19.md#19.8.0">19.8.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V19.md#19.7.0">19.7.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V19.md#19.6.1">19.6.1</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ added:
460460
- v13.3.0
461461
- v12.16.0
462462
changes:
463-
- version: REPLACEME
463+
- version: v19.9.0
464464
pr-url: https://github.com/nodejs/node/pull/47286
465465
description: This option is no longer required as WASI is
466466
enabled by default, but can still be passed.

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3280,7 +3280,7 @@ Node-API callbacks.
32803280

32813281
<!-- YAML
32823282
changes:
3283-
- version: REPLACEME
3283+
- version: v19.9.0
32843284
pr-url: https://github.com/nodejs/node/pull/47203
32853285
description: Added support for `--pending-deprecation`.
32863286
- version:

doc/api/diagnostics_channel.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ diagnostics_channel.unsubscribe('my-channel', onMessage);
233233

234234
<!-- YAML
235235
added:
236-
- REPLACEME
236+
- v19.9.0
237237
-->
238238

239239
> Stability: 1 - Experimental
@@ -463,7 +463,7 @@ channel.unsubscribe(onMessage);
463463

464464
<!-- YAML
465465
added:
466-
- REPLACEME
466+
- v19.9.0
467467
-->
468468

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

508508
<!-- YAML
509509
added:
510-
- REPLACEME
510+
- v19.9.0
511511
-->
512512

513513
> Stability: 1 - Experimental
@@ -546,7 +546,7 @@ channel.unbindStore(store);
546546

547547
<!-- YAML
548548
added:
549-
- REPLACEME
549+
- v19.9.0
550550
-->
551551

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

608608
<!-- YAML
609609
added:
610-
- REPLACEME
610+
- v19.9.0
611611
-->
612612

613613
> Stability: 1 - Experimental
@@ -624,7 +624,7 @@ dynamically.
624624

625625
<!-- YAML
626626
added:
627-
- REPLACEME
627+
- v19.9.0
628628
-->
629629

630630
> Stability: 1 - Experimental
@@ -692,7 +692,7 @@ channels.subscribe({
692692

693693
<!-- YAML
694694
added:
695-
- REPLACEME
695+
- v19.9.0
696696
-->
697697

698698
> Stability: 1 - Experimental
@@ -762,7 +762,7 @@ channels.unsubscribe({
762762

763763
<!-- YAML
764764
added:
765-
- REPLACEME
765+
- v19.9.0
766766
-->
767767

768768
> Stability: 1 - Experimental
@@ -807,7 +807,7 @@ channels.traceSync(() => {
807807

808808
<!-- YAML
809809
added:
810-
- REPLACEME
810+
- v19.9.0
811811
-->
812812

813813
> Stability: 1 - Experimental
@@ -855,7 +855,7 @@ channels.tracePromise(async () => {
855855

856856
<!-- YAML
857857
added:
858-
- REPLACEME
858+
- v19.9.0
859859
-->
860860

861861
> Stability: 1 - Experimental

doc/api/events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,7 @@ const { getEventListeners, EventEmitter } = require('node:events');
12691269
## `events.getMaxListeners(emitterOrTarget)`
12701270

12711271
<!-- YAML
1272-
added: REPLACEME
1272+
added: v19.9.0
12731273
-->
12741274

12751275
* `emitterOrTarget` {EventEmitter|EventTarget}

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3349,7 +3349,7 @@ reader.read().then(({ value, done }) => {
33493349
### `stream.getDefaultHighWaterMark(objectMode)`
33503350

33513351
<!-- YAML
3352-
added: REPLACEME
3352+
added: v19.9.0
33533353
-->
33543354

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

33633363
<!-- YAML
3364-
added: REPLACEME
3364+
added: v19.9.0
33653365
-->
33663366

33673367
* {boolean} objectMode

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ added:
513513
- v19.6.0
514514
- v18.15.0
515515
changes:
516-
- version: REPLACEME
516+
- version: v19.9.0
517517
pr-url: https://github.com/nodejs/node/pull/47238
518518
description: Reporters are now exposed at `node:test/reporters`.
519519
-->

doc/api/url.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ ID that isn't registered will silently fail.
665665
#### `URL.canParse(input[, base])`
666666

667667
<!-- YAML
668-
added: REPLACEME
668+
added: v19.9.0
669669
-->
670670

671671
* `input` {string} The absolute or relative input URL to parse. If `input`
@@ -1248,7 +1248,7 @@ added:
12481248
- v15.7.0
12491249
- v14.18.0
12501250
changes:
1251-
- version: REPLACEME
1251+
- version: v19.9.0
12521252
pr-url: https://github.com/nodejs/node/pull/46989
12531253
description: The returned object will also contain all the own enumerable
12541254
properties of the `url` argument.

doc/changelogs/CHANGELOG_V19.md

+189-1
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 19
26-
#define NODE_MINOR_VERSION 8
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 9
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)