Skip to content

Commit 09c8df0

Browse files
committed
2022-07-26, Version 18.7.0 (Current)
Notable changes: * doc: * add F3n67u to collaborators (Feng Yu) #43953 * deprecate coercion to integer in process.exit (Daeyeon Jeong) #43738 * (SEMVER-MINOR) deprecate diagnostics_channel object subscribe method (Stephen Belanger) #42714 * events: * (SEMVER-MINOR) expose CustomEvent on global with CLI flag (Daeyeon Jeong) #43885 * (SEMVER-MINOR) add `CustomEvent` (Daeyeon Jeong) #43514 * http: * (SEMVER-MINOR) add drop request event for http server (theanarkh) #43806 * lib: * (SEMVER-MINOR) improved diagnostics_channel subscribe/unsubscribe (Stephen Belanger) #42714 * util: * (SEMVER-MINOR) add tokens to parseArgs (John Gee) #43459 PR-URL: #43993
1 parent a506aa7 commit 09c8df0

10 files changed

+171
-22
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_V18.md#18.6.0">18.6.0</a></b><br/>
38+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a></b><br/>
39+
<a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V18.md#18.5.0">18.5.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V18.md#18.4.0">18.4.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ modifying the stack trace.
283283
### `--experimental-global-customevent`
284284

285285
<!-- YAML
286-
added: REPLACEME
286+
added: v18.7.0
287287
-->
288288

289289
Expose the [CustomEvent Web API][] on the global scope.

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3149,7 +3149,7 @@ Convert them to primitive strings.
31493149

31503150
<!-- YAML
31513151
changes:
3152-
- version: REPLACEME
3152+
- version: v18.7.0
31533153
pr-url: https://github.com/nodejs/node/pull/42714
31543154
description: Documentation-only deprecation.
31553155
-->
@@ -3167,7 +3167,7 @@ thing instead.
31673167

31683168
<!-- YAML
31693169
changes:
3170-
- version: REPLACEME
3170+
- version: v18.7.0
31713171
pr-url: https://github.com/nodejs/node/pull/43738
31723172
description: Documentation-only deprecation.
31733173
-->

doc/api/diagnostics_channel.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const channel = diagnostics_channel.channel('my-channel');
151151

152152
<!-- YAML
153153
added:
154-
- REPLACEME
154+
- v18.7.0
155155
-->
156156

157157
* `name` {string|symbol} The channel name
@@ -183,7 +183,7 @@ diagnostics_channel.subscribe('my-channel', (message, name) => {
183183

184184
<!-- YAML
185185
added:
186-
- REPLACEME
186+
- v18.7.0
187187
-->
188188

189189
* `name` {string|symbol} The channel name
@@ -308,7 +308,7 @@ channel.publish({
308308
added:
309309
- v15.1.0
310310
- v14.17.0
311-
deprecated: REPLACEME
311+
deprecated: v18.7.0
312312
-->
313313

314314
> Stability: 0 - Deprecated: Use [`diagnostics_channel.subscribe(name, onMessage)`][]
@@ -347,7 +347,7 @@ channel.subscribe((message, name) => {
347347
added:
348348
- v15.1.0
349349
- v14.17.0
350-
deprecated: REPLACEME
350+
deprecated: v18.7.0
351351
changes:
352352
- version:
353353
- v17.1.0

doc/api/events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1990,7 +1990,7 @@ Removes the `listener` from the list of handlers for event `type`.
19901990
### Class: `CustomEvent`
19911991

19921992
<!-- YAML
1993-
added: REPLACEME
1993+
added: v18.7.0
19941994
-->
19951995

19961996
> Stability: 1 - Experimental.
@@ -2003,7 +2003,7 @@ Instances are created internally by Node.js.
20032003
#### `event.detail`
20042004

20052005
<!-- YAML
2006-
added: REPLACEME
2006+
added: v18.7.0
20072007
-->
20082008

20092009
> Stability: 1 - Experimental.

doc/api/globals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ only if the Node.js binary was compiled with including support for the
383383
## `CustomEvent`
384384

385385
<!-- YAML
386-
added: REPLACEME
386+
added: v18.7.0
387387
-->
388388

389389
> Stability: 1 - Experimental. Enable this API with the

doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ type other than {net.Socket}.
14091409
### Event: `'dropRequest'`
14101410

14111411
<!-- YAML
1412-
added: REPLACEME
1412+
added: v18.7.0
14131413
-->
14141414

14151415
* `request` {http.IncomingMessage} Arguments for the HTTP request, as it is in

doc/api/test.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -321,12 +321,12 @@ internally.
321321
<!-- YAML
322322
added: v18.0.0
323323
changes:
324-
- version: REPLACEME
325-
pr-url: https://github.com/nodejs/node/pull/43505
326-
description: Add a `timeout` option.
327324
- version: REPLACEME
328325
pr-url: https://github.com/nodejs/node/pull/43554
329326
description: Add a `signal` option.
327+
- version: v18.7.0
328+
pr-url: https://github.com/nodejs/node/pull/43505
329+
description: Add a `timeout` option.
330330
-->
331331

332332
* `name` {string} The name of the test, which is displayed when reporting test
@@ -501,7 +501,7 @@ test('top level test', (t) => {
501501
### `context.signal`
502502

503503
<!-- YAML
504-
added: REPLACEME
504+
added: v18.7.0
505505
-->
506506

507507
* {AbortSignal} Can be used to abort test subtasks when the test has been
@@ -557,12 +557,12 @@ test('top level test', (t) => {
557557
<!-- YAML
558558
added: v18.0.0
559559
changes:
560-
- version: REPLACEME
561-
pr-url: https://github.com/nodejs/node/pull/43505
562-
description: Add a `timeout` option.
563560
- version: REPLACEME
564561
pr-url: https://github.com/nodejs/node/pull/43554
565562
description: Add a `signal` option.
563+
- version: v18.7.0
564+
pr-url: https://github.com/nodejs/node/pull/43505
565+
description: Add a `timeout` option.
566566
-->
567567

568568
* `name` {string} The name of the subtest, which is displayed when reporting
@@ -610,7 +610,7 @@ test('top level test', async (t) => {
610610
## Class: `SuiteContext`
611611

612612
<!-- YAML
613-
added: REPLACEME
613+
added: v18.7.0
614614
-->
615615

616616
An instance of `SuiteContext` is passed to each suite function in order to
@@ -620,7 +620,7 @@ exposed as part of the API.
620620
### `context.signal`
621621

622622
<!-- YAML
623-
added: REPLACEME
623+
added: v18.7.0
624624
-->
625625

626626
* {AbortSignal} Can be used to abort test subtasks when the test has been

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ equality.
10291029
<!-- YAML
10301030
added: v18.3.0
10311031
changes:
1032-
- version: REPLACEME
1032+
- version: v18.7.0
10331033
pr-url: https://github.com/nodejs/node/pull/43459
10341034
description: add support for returning detailed parse information
10351035
using `tokens` in input `config` and returned properties.

0 commit comments

Comments
 (0)