Skip to content

Commit 4c8a25b

Browse files
committed
2023-04-10, 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 test_runner: * (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) #47238 PR-URL: #47441 Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
1 parent 10005de commit 4c8a25b

8 files changed

+201
-19
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/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3292,7 +3292,7 @@ Node-API callbacks.
32923292

32933293
<!-- YAML
32943294
changes:
3295-
- version: REPLACEME
3295+
- version: v19.9.0
32963296
pr-url: https://github.com/nodejs/node/pull/47203
32973297
description: Added support for `--pending-deprecation`.
32983298
- version:

doc/api/diagnostics_channel.md

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

236236
<!-- YAML
237237
added:
238-
- REPLACEME
238+
- v19.9.0
239239
-->
240240

241241
> Stability: 1 - Experimental
@@ -465,7 +465,7 @@ channel.unsubscribe(onMessage);
465465

466466
<!-- YAML
467467
added:
468-
- REPLACEME
468+
- v19.9.0
469469
-->
470470

471471
> Stability: 1 - Experimental
@@ -509,7 +509,7 @@ channel.bindStore(store, (data) => {
509509

510510
<!-- YAML
511511
added:
512-
- REPLACEME
512+
- v19.9.0
513513
-->
514514

515515
> Stability: 1 - Experimental
@@ -548,7 +548,7 @@ channel.unbindStore(store);
548548

549549
<!-- YAML
550550
added:
551-
- REPLACEME
551+
- v19.9.0
552552
-->
553553

554554
> Stability: 1 - Experimental
@@ -609,7 +609,7 @@ channel.runStores({ some: 'message' }, () => {
609609

610610
<!-- YAML
611611
added:
612-
- REPLACEME
612+
- v19.9.0
613613
-->
614614

615615
> Stability: 1 - Experimental
@@ -626,7 +626,7 @@ dynamically.
626626

627627
<!-- YAML
628628
added:
629-
- REPLACEME
629+
- v19.9.0
630630
-->
631631

632632
> Stability: 1 - Experimental
@@ -694,7 +694,7 @@ channels.subscribe({
694694

695695
<!-- YAML
696696
added:
697-
- REPLACEME
697+
- v19.9.0
698698
-->
699699

700700
> Stability: 1 - Experimental
@@ -764,7 +764,7 @@ channels.unsubscribe({
764764

765765
<!-- YAML
766766
added:
767-
- REPLACEME
767+
- v19.9.0
768768
-->
769769

770770
> Stability: 1 - Experimental
@@ -809,7 +809,7 @@ channels.traceSync(() => {
809809

810810
<!-- YAML
811811
added:
812-
- REPLACEME
812+
- v19.9.0
813813
-->
814814

815815
> Stability: 1 - Experimental
@@ -857,7 +857,7 @@ channels.tracePromise(async () => {
857857

858858
<!-- YAML
859859
added:
860-
- REPLACEME
860+
- v19.9.0
861861
-->
862862

863863
> 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
@@ -3351,7 +3351,7 @@ reader.read().then(({ value, done }) => {
33513351
### `stream.getDefaultHighWaterMark(objectMode)`
33523352

33533353
<!-- YAML
3354-
added: REPLACEME
3354+
added: v19.9.0
33553355
-->
33563356

33573357
* {boolean} objectMode
@@ -3363,7 +3363,7 @@ Defaults to `16384` (16 KiB), or `16` for `objectMode`.
33633363
### `stream.setDefaultHighWaterMark(objectMode, value)`
33643364

33653365
<!-- YAML
3366-
added: REPLACEME
3366+
added: v19.9.0
33673367
-->
33683368

33693369
* {boolean} objectMode

doc/api/test.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ added:
521521
- v19.6.0
522522
- v18.15.0
523523
changes:
524-
- version: REPLACEME
524+
- version: v19.9.0
525525
pr-url: https://github.com/nodejs/node/pull/47238
526526
description: Reporters are now exposed at `node:test/reporters`.
527527
-->

doc/api/url.md

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

671671
<!-- YAML
672-
added: REPLACEME
672+
added: v19.9.0
673673
-->
674674

675675
* `input` {string} The absolute or relative input URL to parse. If `input`
@@ -1254,7 +1254,7 @@ added:
12541254
- v15.7.0
12551255
- v14.18.0
12561256
changes:
1257-
- version: REPLACEME
1257+
- version: v19.9.0
12581258
pr-url: https://github.com/nodejs/node/pull/46989
12591259
description: The returned object will also contain all the own enumerable
12601260
properties of the `url` argument.

doc/changelogs/CHANGELOG_V19.md

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

0 commit comments

Comments
 (0)