From 2eb20e53c9ba156f91799692aa9b07774d3632bf Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Thu, 28 Sep 2023 16:21:45 -0400 Subject: [PATCH] 2023-09-28, Version 20.8.0 (Current) Notable changes: deps: * add v8::Object::SetInternalFieldForNodeCore() (Joyee Cheung) https://github.com/nodejs/node/pull/49874 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 module: * fix the leak in SourceTextModule and ContextifySript (Joyee Cheung) https://github.com/nodejs/node/pull/48510 * fix leak of vm.SyntheticModule (Joyee Cheung) https://github.com/nodejs/node/pull/48510 * use symbol in WeakMap to manage host defined options (Joyee Cheung) https://github.com/nodejs/node/pull/48510 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: https://github.com/nodejs/node/pull/49932 --- 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 | 200 ++++++++++++++++++++++++++++++++ 6 files changed, 208 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d730e6feeff82e..7d3999d1291b0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,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 a6b9ee98bd8f65..d9e57b4a2c17f5 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -3390,7 +3390,7 @@ changes: - version: REPLACEME pr-url: https://github.com/nodejs/node/pull/49609 description: Runtime deprecation. - - version: REPLACEME + - version: v20.8.0 pr-url: https://github.com/nodejs/node/pull/49647 description: Documentation-only deprecation. --> @@ -3404,7 +3404,7 @@ the result of said promise, which can lead to unhandled promise rejections. @@ -3418,7 +3418,7 @@ The [`util.toUSVString()`][] API is deprecated. Please use diff --git a/doc/api/fs.md b/doc/api/fs.md index 98abd7eadd8714..66613dde55c19c 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1830,7 +1830,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 50048beac89b80..bf154500f64e3e 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