From eee298e92a1613383bcbb69307fef4d6826906cb Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Thu, 28 Sep 2023 00:05:05 -0400 Subject: [PATCH] 2023-09-28, Version 20.7.1 (Current) Notable changes: doc: * deprecate `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) https://github.com/nodejs/node/pull/49683 * promote fetch/webstreams from experimental to stable (Steven) https://github.com/nodejs/node/pull/45684 * deprecate `util.toUSVString` (Yagiz Nizipli) https://github.com/nodejs/node/pull/49725 * deprecate calling `promisify` on a function that returns a promise (Antoine du Hamel) https://github.com/nodejs/node/pull/49647 esm: * set all hooks as release candidate (Geoffrey Booth) https://github.com/nodejs/node/pull/49597 stream: * use bitmap in writable state (Raz Luvaton) https://github.com/nodejs/node/pull/49834 * use bitmap in readable state (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/49745 * improve webstream readable async iterator performance (Raz Luvaton) https://github.com/nodejs/node/pull/49662 PR-URL: https://github.com/nodejs/node/pull/49917 --- CHANGELOG.md | 3 +- doc/api/deprecations.md | 6 +- doc/api/fs.md | 2 +- doc/api/globals.md | 10 +- doc/api/module.md | 2 +- doc/api/util.md | 2 +- doc/api/webstreams.md | 2 +- doc/changelogs/CHANGELOG_V20.md | 169 ++++++++++++++++++++++++++++++++ src/node_version.h | 2 +- 9 files changed, 184 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4580c90e7d5be9..a0b77c6f5813e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ release. -20.7.0
+20.7.1
+20.7.0
20.6.1
20.6.0
20.5.1
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 4f76a4489e4540..9d0e6b0c83b025 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -3382,7 +3382,7 @@ Consider using alternatives such as the [`mock`][] helper function. @@ -3396,7 +3396,7 @@ the result of said promise, which can lead to unhandled promise rejections. @@ -3410,7 +3410,7 @@ The [`util.toUSVString()`][] API is deprecated. Please use diff --git a/doc/api/fs.md b/doc/api/fs.md index d223fa5fb7ca5f..a15314db7dfebc 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1820,7 +1820,7 @@ concurrent modifications on the same file or data corruption may occur. diff --git a/doc/api/util.md b/doc/api/util.md index 47c48783764a5e..9d453122f817bd 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1598,7 +1598,7 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color