From 8fc3851da7333daa7602bed94f5e1d6a26201a0f Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Mon, 3 Jul 2023 10:45:00 -0300 Subject: [PATCH] 2023-07-05, Version 20.4.0 (Current) Notable changes: crypto: * update root certificates to NSS 3.90 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48416 doc: * add vmoroz to collaborators (Vladimir Morozov) https://github.com/nodejs/node/pull/48527 * add kvakil to collaborators (Keyhan Vakil) https://github.com/nodejs/node/pull/48449 fs, stream: * initial `Symbol.dispose` and `Symbol.asyncDispose` support (Moshe Atlow) https://github.com/nodejs/node/pull/48518 test_runner: * (SEMVER-MINOR) add initial draft for fakeTimers (Erick Wendel) https://github.com/nodejs/node/pull/47775 tls: * (SEMVER-MINOR) add ALPNCallback server option for dynamic ALPN negotiation (Tim Perry) https://github.com/nodejs/node/pull/45190 PR-URL: https://github.com/nodejs/node/pull/48643 --- CHANGELOG.md | 3 +- doc/api/fs.md | 2 +- doc/api/http.md | 2 +- doc/api/http2.md | 2 +- doc/api/https.md | 2 +- doc/api/n-api.md | 4 +- doc/api/stream.md | 2 +- doc/api/test.md | 10 +- doc/api/tls.md | 2 +- doc/changelogs/CHANGELOG_V20.md | 188 +++++++++++++++++++++++++++++++- 10 files changed, 202 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b26cd4d4870205..8901baf912fd3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -20.3.1
+20.4.0
+20.3.1
20.3.0
20.2.0
20.1.0
diff --git a/doc/api/fs.md b/doc/api/fs.md index 31dcf0b6ab3406..d52662a63f75cb 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -820,7 +820,7 @@ the end of the file. #### `filehandle[Symbol.asyncDispose]()` > Stability: 1 - Experimental diff --git a/doc/api/http.md b/doc/api/http.md index 35edbc5f50b29a..1c1acfa2b997db 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1670,7 +1670,7 @@ affects new connections to the server, not any existing connections. ### `server[Symbol.asyncDispose]()` > Stability: 1 - Experimental diff --git a/doc/api/http2.md b/doc/api/http2.md index ab7de677319e63..c45e5142ca753c 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2073,7 +2073,7 @@ closed, although the server has already stopped allowing new sessions. See #### `server[Symbol.asyncDispose]()` > Stability: 1 - Experimental diff --git a/doc/api/https.md b/doc/api/https.md index c511d8107ff0d4..99927cebbda96e 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -138,7 +138,7 @@ See [`server.close()`][] in the `node:http` module. ### `server[Symbol.asyncDispose]()` > Stability: 1 - Experimental diff --git a/doc/api/n-api.md b/doc/api/n-api.md index a4267b0d217fc7..873c8bdce4a492 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -2894,7 +2894,7 @@ The JavaScript `string` type is described in #### `node_api_create_external_string_latin1` > Stability: 1 - Experimental @@ -2972,7 +2972,7 @@ The JavaScript `string` type is described in #### `node_api_create_external_string_utf16` > Stability: 1 - Experimental diff --git a/doc/api/stream.md b/doc/api/stream.md index 72ccfe50aeee18..780cecd3e45912 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1907,7 +1907,7 @@ has less then 64 KiB of data because no `highWaterMark` option is provided to ##### `readable[Symbol.asyncDispose]()` > Stability: 1 - Experimental diff --git a/doc/api/test.md b/doc/api/test.md index 74c538be0be1a4..3e460dd1c09228 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -1507,7 +1507,7 @@ set to `true`. > Stability: 1 - Experimental @@ -1523,7 +1523,7 @@ which is a `MockTimers` instance. Enables timer mocking for the specified timers. @@ -1565,7 +1565,7 @@ and `globalThis` will be mocked. This function restores the default behavior of all mocks that were previously @@ -1593,7 +1593,7 @@ Calls `timers.reset()`. Advances time for all mocked timers. @@ -1867,7 +1867,7 @@ test('should tick five times testing a real use case', async (context) => { Triggers all pending mocked timers immediately. diff --git a/doc/api/tls.md b/doc/api/tls.md index 71a63cabc4e4af..37f26189e5e62e 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -2049,7 +2049,7 @@ where `secureSocket` has the same API as `pair.cleartext`.