Skip to content

Commit 75b68c6

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 1f80b88 commit 75b68c6

11 files changed

+170
-21
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
@@ -3141,7 +3141,7 @@ Convert them to primitive strings.
31413141

31423142
<!-- YAML
31433143
changes:
3144-
- version: REPLACEME
3144+
- version: v18.7.0
31453145
pr-url: https://github.com/nodejs/node/pull/42714
31463146
description: Documentation-only deprecation.
31473147
-->
@@ -3159,7 +3159,7 @@ thing instead.
31593159

31603160
<!-- YAML
31613161
changes:
3162-
- version: REPLACEME
3162+
- version: v18.7.0
31633163
pr-url: https://github.com/nodejs/node/pull/43738
31643164
description: Documentation-only deprecation.
31653165
-->

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
@@ -377,7 +377,7 @@ only if the Node.js binary was compiled with including support for the
377377
## `CustomEvent`
378378

379379
<!-- YAML
380-
added: REPLACEME
380+
added: v18.7.0
381381
-->
382382

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

doc/api/http.md

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

14091409
<!-- YAML
1410-
added: REPLACEME
1410+
added: v18.7.0
14111411
-->
14121412

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

doc/api/test.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ internally.
321321
<!-- YAML
322322
added: v18.0.0
323323
changes:
324-
- version: REPLACEME
324+
- version: v18.7.0
325325
pr-url: https://github.com/nodejs/node/pull/43505
326326
description: Add a `timeout` option.
327327
-->
@@ -498,7 +498,7 @@ test('top level test', (t) => {
498498
### `context.signal`
499499

500500
<!-- YAML
501-
added: REPLACEME
501+
added: v18.7.0
502502
-->
503503

504504
* <AbortSignal> Can be used to abort test subtasks when the test has been aborted.
@@ -553,7 +553,7 @@ test('top level test', (t) => {
553553
<!-- YAML
554554
added: v18.0.0
555555
changes:
556-
- version: REPLACEME
556+
- version: v18.7.0
557557
pr-url: https://github.com/nodejs/node/pull/43505
558558
description: Add a `timeout` option.
559559
-->
@@ -602,7 +602,7 @@ test('top level test', async (t) => {
602602
## Class: `SuiteContext`
603603

604604
<!-- YAML
605-
added: REPLACEME
605+
added: v18.7.0
606606
-->
607607

608608
An instance of `SuiteContext` is passed to each suite function in order to
@@ -612,7 +612,7 @@ exposed as part of the API.
612612
### `context.signal`
613613

614614
<!-- YAML
615-
added: REPLACEME
615+
added: v18.7.0
616616
-->
617617

618618
* <AbortSignal> Can be used to abort test subtasks when the test has been aborted.

doc/api/util.md

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

doc/changelogs/CHANGELOG_V18.md

+148
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 18
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
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)