From 63ca6db498cc542754d96f2d81c00f6218704351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 12 Nov 2023 08:52:51 +0100 Subject: [PATCH] 2023-11-16, Version 20.10.0 'Iron' (LTS) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: deps: * (SEMVER-MINOR) update uvwasi to 0.0.19 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/49908 doc: * add H4ad to collaborators (Vinícius Lourenço) https://github.com/nodejs/node/pull/50217 esm: * (SEMVER-MINOR) detect ESM syntax in ambiguous JavaScript (Geoffrey Booth) https://github.com/nodejs/node/pull/50096 * use import attributes instead of import assertions (Antoine du Hamel) https://github.com/nodejs/node/pull/50140 * --experimental-default-type flag to flip module defaults (Geoffrey Booth) https://github.com/nodejs/node/pull/49869 fs: * (SEMVER-MINOR) add flush option to appendFile() functions (Colin Ihrig) https://github.com/nodejs/node/pull/50095 * add flush option to writeFile() functions (Colin Ihrig) https://github.com/nodejs/node/pull/50009 lib: * (SEMVER-MINOR) add WebSocket client (Matthew Aitken) https://github.com/nodejs/node/pull/49830 stream: * (SEMVER-MINOR) allow pass stream class to `stream.compose` (Alex Yang) https://github.com/nodejs/node/pull/50187 * call helper function from push and unshift (Raz Luvaton) https://github.com/nodejs/node/pull/50173 * optimize Writable (Robert Nagy) https://github.com/nodejs/node/pull/50012 test_runner, cli: * (SEMVER-MINOR) add --test-concurrency flag (Colin Ihrig) https://github.com/nodejs/node/pull/49996 vm: * (SEMVER-MINOR) use import attributes instead of import assertions (Antoine du Hamel) https://github.com/nodejs/node/pull/50141 * use default HDO when importModuleDynamically is not set (Joyee Cheung) https://github.com/nodejs/node/pull/49950 wasi: PR-URL: https://github.com/nodejs/node/pull/50682 --- CHANGELOG.md | 3 +- doc/api/cli.md | 8 +- doc/api/errors.md | 2 +- doc/api/esm.md | 4 +- doc/api/fs.md | 18 +- doc/api/globals.md | 2 +- doc/api/module.md | 2 +- doc/api/n-api.md | 2 +- doc/api/stream.md | 2 +- doc/api/vm.md | 2 +- doc/changelogs/CHANGELOG_V20.md | 296 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 12 files changed, 322 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d411d570e18c9..b71f71e187aa1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -20.9.0
+20.10.0
+20.9.0
20.8.1
20.8.0
20.7.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 11ff77dd8745fa..73748553a4f65f 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -585,7 +585,7 @@ and `"` are usable. > Stability: 1.0 - Early development @@ -615,7 +615,7 @@ JavaScript. > Stability: 1.0 - Early development @@ -787,7 +787,7 @@ Enable experimental WebAssembly module support. ### `--experimental-websocket` Enable experimental [`WebSocket`][] support. @@ -1655,7 +1655,7 @@ for more details. ### `--test-concurrency` The maximum number of test files that the test runner CLI will execute diff --git a/doc/api/errors.md b/doc/api/errors.md index a98f4d527e8659..e57960e7893c4a 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -1791,7 +1791,7 @@ An import attribute is not supported by this version of Node.js. ### `ERR_IMPORT_ATTRIBUTE_UNSUPPORTED` An import attribute is not supported by this version of Node.js. diff --git a/doc/api/esm.md b/doc/api/esm.md index 6f02f654e00caf..b8579a58ed2bd5 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -7,7 +7,7 @@ diff --git a/doc/api/fs.md b/doc/api/fs.md index 7a544a59593e08..64caa39cbea40b 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -180,7 +180,7 @@ longer be used. @@ -884,7 +884,7 @@ the error raised if the file is not accessible. @@ -1737,7 +1737,7 @@ All the [caveats][] for `fs.watch()` also apply to `fsPromises.watch()`. > Stability: 1 - Experimental. diff --git a/doc/api/module.md b/doc/api/module.md index 857c02142b199f..09196d952079f8 100644 --- a/doc/api/module.md +++ b/doc/api/module.md @@ -458,7 +458,7 @@ register('./path-to-my-hooks.js', { > Stability: 1 - Experimental diff --git a/doc/api/stream.md b/doc/api/stream.md index 50b83d1df72268..f13367a4bf8df1 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2850,7 +2850,7 @@ const server = http.createServer((req, res) => {