From 4ec144f9f01cdd51253f78a700047d7da82c7c9d Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Thu, 28 Sep 2023 10:46:46 -0400 Subject: [PATCH] 2023-09-28, Version 20.8.0 (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 * 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 src: * (SEMVER-MINOR) allow embedders to override NODE_MODULE_VERSION (Cheng Zhao) https://github.com/nodejs/node/pull/49279 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 test_runner: * (SEMVER-MINOR) accept `testOnly` in `run` (Moshe Atlow) https://github.com/nodejs/node/pull/49753 * (SEMVER-MINOR) add junit reporter (Moshe Atlow) https://github.com/nodejs/node/pull/49614 PR-URL: TODO --- CHANGELOG.md | 3 +- doc/api/deprecations.md | 6 +- doc/api/fs.md | 2 +- doc/api/module.md | 2 +- doc/api/util.md | 2 +- doc/changelogs/CHANGELOG_V20.md | 172 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 7 files changed, 183 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4580c90e7d5be9..4e552b57bba63a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ release. -20.7.0
+20.8.0
+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..1989900322f710 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..54e5e5bd571ab1 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..24d07ace984a29 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