From 09c8df033fac118ddfecc62346c2095840f03e3f Mon Sep 17 00:00:00 2001 From: Danielle Adams Date: Mon, 25 Jul 2022 22:32:16 -0400 Subject: [PATCH] 2022-07-26, Version 18.7.0 (Current) Notable changes: * doc: * add F3n67u to collaborators (Feng Yu) https://github.com/nodejs/node/pull/43953 * deprecate coercion to integer in process.exit (Daeyeon Jeong) https://github.com/nodejs/node/pull/43738 * (SEMVER-MINOR) deprecate diagnostics_channel object subscribe method (Stephen Belanger) https://github.com/nodejs/node/pull/42714 * events: * (SEMVER-MINOR) expose CustomEvent on global with CLI flag (Daeyeon Jeong) https://github.com/nodejs/node/pull/43885 * (SEMVER-MINOR) add `CustomEvent` (Daeyeon Jeong) https://github.com/nodejs/node/pull/43514 * http: * (SEMVER-MINOR) add drop request event for http server (theanarkh) https://github.com/nodejs/node/pull/43806 * lib: * (SEMVER-MINOR) improved diagnostics_channel subscribe/unsubscribe (Stephen Belanger) https://github.com/nodejs/node/pull/42714 * util: * (SEMVER-MINOR) add tokens to parseArgs (John Gee) https://github.com/nodejs/node/pull/43459 PR-URL: https://github.com/nodejs/node/pull/43993 --- CHANGELOG.md | 3 +- doc/api/cli.md | 2 +- doc/api/deprecations.md | 4 +- doc/api/diagnostics_channel.md | 8 +- doc/api/events.md | 4 +- doc/api/globals.md | 2 +- doc/api/http.md | 2 +- doc/api/test.md | 18 ++-- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V18.md | 148 ++++++++++++++++++++++++++++++++ 10 files changed, 171 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 056750225c2c0c..62fd61fba7f38f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -18.6.0
+18.7.0
+18.6.0
18.5.0
18.4.0
18.3.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index f0a2e70b8d7b66..b44eb542f8e0e8 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -283,7 +283,7 @@ modifying the stack trace. ### `--experimental-global-customevent` Expose the [CustomEvent Web API][] on the global scope. diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index b67aec2e1907a3..efc17e94528dc1 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -3149,7 +3149,7 @@ Convert them to primitive strings. @@ -3167,7 +3167,7 @@ thing instead. diff --git a/doc/api/diagnostics_channel.md b/doc/api/diagnostics_channel.md index 04a602195848a3..3bcf6b7966a21b 100644 --- a/doc/api/diagnostics_channel.md +++ b/doc/api/diagnostics_channel.md @@ -151,7 +151,7 @@ const channel = diagnostics_channel.channel('my-channel'); * `name` {string|symbol} The channel name @@ -183,7 +183,7 @@ diagnostics_channel.subscribe('my-channel', (message, name) => { * `name` {string|symbol} The channel name @@ -308,7 +308,7 @@ channel.publish({ added: - v15.1.0 - v14.17.0 -deprecated: REPLACEME +deprecated: v18.7.0 --> > Stability: 0 - Deprecated: Use [`diagnostics_channel.subscribe(name, onMessage)`][] @@ -347,7 +347,7 @@ channel.subscribe((message, name) => { added: - v15.1.0 - v14.17.0 -deprecated: REPLACEME +deprecated: v18.7.0 changes: - version: - v17.1.0 diff --git a/doc/api/events.md b/doc/api/events.md index 873739ad57ecde..28b6b31fa04c9a 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -1990,7 +1990,7 @@ Removes the `listener` from the list of handlers for event `type`. ### Class: `CustomEvent` > Stability: 1 - Experimental. @@ -2003,7 +2003,7 @@ Instances are created internally by Node.js. #### `event.detail` > Stability: 1 - Experimental. diff --git a/doc/api/globals.md b/doc/api/globals.md index a3e52520af637a..91da5a21c88efa 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -383,7 +383,7 @@ only if the Node.js binary was compiled with including support for the ## `CustomEvent` > Stability: 1 - Experimental. Enable this API with the diff --git a/doc/api/http.md b/doc/api/http.md index 08bb937e4c92a4..1c3ecdc41c9dcf 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1409,7 +1409,7 @@ type other than {net.Socket}. ### Event: `'dropRequest'` * `request` {http.IncomingMessage} Arguments for the HTTP request, as it is in diff --git a/doc/api/test.md b/doc/api/test.md index c7d9104da65eb6..63591482758d65 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -321,12 +321,12 @@ internally. * `name` {string} The name of the test, which is displayed when reporting test @@ -501,7 +501,7 @@ test('top level test', (t) => { ### `context.signal` * {AbortSignal} Can be used to abort test subtasks when the test has been @@ -557,12 +557,12 @@ test('top level test', (t) => { * `name` {string} The name of the subtest, which is displayed when reporting @@ -610,7 +610,7 @@ test('top level test', async (t) => { ## Class: `SuiteContext` An instance of `SuiteContext` is passed to each suite function in order to @@ -620,7 +620,7 @@ exposed as part of the API. ### `context.signal` * {AbortSignal} Can be used to abort test subtasks when the test has been diff --git a/doc/api/util.md b/doc/api/util.md index 43ec18be5e8f33..9b9c01a4cc2906 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1029,7 +1029,7 @@ equality.