From 0cba6f1f7cf4dcc877212becf890bd9cdbdfd1c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 23 Oct 2023 11:32:17 +0200 Subject: [PATCH] 2023-10-24, Version 21.1.0 (Current) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Notable changes: 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 fs: * (SEMVER-MINOR) add flush option to appendFile() functions (Colin Ihrig) https://github.com/nodejs/node/pull/50095 lib: * (SEMVER-MINOR) add `navigator.userAgent` (Yagiz Nizipli) https://github.com/nodejs/node/pull/50200 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 PR-URL: https://github.com/nodejs/node/pull/50335 --- CHANGELOG.md | 3 +- doc/api/cli.md | 2 +- doc/api/errors.md | 10 +-- doc/api/fs.md | 8 +-- doc/api/globals.md | 2 +- doc/api/stream.md | 2 +- doc/changelogs/CHANGELOG_V21.md | 124 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 8 files changed, 141 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01b8655f1c5357..9274cbed3f32fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ release. -21.0.0
+21.1.0
+21.0.0
20.8.1
diff --git a/doc/api/cli.md b/doc/api/cli.md index 61f0ba9f053bc9..3cb36818ae4997 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -624,7 +624,7 @@ JavaScript. > Stability: 1.0 - Early development diff --git a/doc/api/errors.md b/doc/api/errors.md index 9ff60a01977693..50e9f658fcbf3a 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -1755,7 +1755,7 @@ An attempt was made to construct an object using a non-public constructor. An import `type` attribute was provided, but the specified module is of a @@ -1767,7 +1767,7 @@ different type. An import attribute is missing, preventing the specified module to be imported. @@ -3302,7 +3302,7 @@ An invalid transfer object was passed to `postMessage()`. added: - v17.1.0 - v16.14.0 -removed: REPLACEME +removed: v21.1.0 --> An import assertion has failed, preventing the specified module to be imported. @@ -3315,7 +3315,7 @@ An import assertion has failed, preventing the specified module to be imported. added: - v17.1.0 - v16.14.0 -removed: REPLACEME +removed: v21.1.0 --> An import assertion is missing, preventing the specified module to be imported. @@ -3328,7 +3328,7 @@ An import assertion is missing, preventing the specified module to be imported. added: - v17.1.0 - v16.14.0 -removed: REPLACEME +removed: v21.1.0 --> An import attribute is not supported by this version of Node.js. diff --git a/doc/api/fs.md b/doc/api/fs.md index fabbb60eeed73b..8079b7cc316fec 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -180,7 +180,7 @@ longer be used. @@ -2063,7 +2063,7 @@ the user from reading or writing to it. * {string} diff --git a/doc/api/stream.md b/doc/api/stream.md index 680bd4d260f504..83b26c4d6a95b2 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2823,7 +2823,7 @@ const server = http.createServer((req, res) => {