From 854d23b0d60bec3ebdaf5b4c05a4f57fd1bbf62a Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 18 Dec 2024 22:40:13 +0100 Subject: [PATCH] 2024-12-19, Version 23.5.0 (Current) Notable changes: crypto: * graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) https://github.com/nodejs/node/pull/56142 dgram: * (SEMVER-MINOR) support blocklist in udp (theanarkh) https://github.com/nodejs/node/pull/56087 doc: * stabilize util.styleText (Rafael Gonzaga) https://github.com/nodejs/node/pull/56265 module: * (SEMVER-MINOR) add prefix-only modules to `module.builtinModules` (Jordan Harband) https://github.com/nodejs/node/pull/56185 * (SEMVER-MINOR) only emit require(esm) warning under --trace-require-module (Joyee Cheung) https://github.com/nodejs/node/pull/56194 * (SEMVER-MINOR) use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) https://github.com/nodejs/node/pull/55698 * (SEMVER-MINOR) implement module.registerHooks() (Joyee Cheung) https://github.com/nodejs/node/pull/55698 report: * (SEMVER-MINOR) fix typos in report keys and bump the version (Yuan-Ming Hsu) https://github.com/nodejs/node/pull/56068 sqlite: * (SEMVER-MINOR) aggregate constants in a single property (Edigleysson Silva (Edy)) https://github.com/nodejs/node/pull/56213 src,lib: * (SEMVER-MINOR) stabilize permission model (Rafael Gonzaga) https://github.com/nodejs/node/pull/56201 PR-URL: https://github.com/nodejs/node/pull/56310 --- CHANGELOG.md | 3 +- doc/api/cli.md | 8 +- doc/api/errors.md | 2 +- doc/api/module.md | 12 +-- doc/api/modules.md | 2 +- doc/api/report.md | 2 +- doc/api/sqlite.md | 8 +- doc/api/util.md | 2 +- doc/api/webcrypto.md | 2 +- doc/changelogs/CHANGELOG_V23.md | 170 ++++++++++++++++++++++++++++++++ 10 files changed, 191 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7be93b202ac..79a4ce72b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,8 @@ release. -23.4.0
+23.5.0
+23.4.0
23.3.0
23.2.0
23.1.0
diff --git a/doc/api/cli.md b/doc/api/cli.md index 0e21fed5eba..3a8e278df68 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -189,7 +189,7 @@ Error: Access to this API has been restricted @@ -2633,7 +2633,7 @@ i.e. invoking `process.exit()`. Prints information about usage of [Loading ECMAScript modules using `require()`][]. diff --git a/doc/api/errors.md b/doc/api/errors.md index be0d2799577..080fc85ad16 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -2179,7 +2179,7 @@ signaling a short circuit. ### `ERR_LOAD_SQLITE_EXTENSION` An error occurred while loading a SQLite extension. diff --git a/doc/api/module.md b/doc/api/module.md index 7b5df6f307d..858e1a19fc2 100644 --- a/doc/api/module.md +++ b/doc/api/module.md @@ -22,7 +22,7 @@ added: - v8.10.0 - v6.13.0 changes: - - version: REPLACEME + - version: v23.5.0 pr-url: https://github.com/nodejs/node/pull/56185 description: The list now also contains prefix-only modules. --> @@ -204,7 +204,7 @@ resolution and loading behavior. See [Customization hooks][]. ### `module.registerHooks(options)` > Stability: 1.1 - Active development @@ -530,7 +530,7 @@ added: v22.8.0 > Stability: 1.1 - Active development @@ -992,7 +992,7 @@ register('./path-to-my-hooks.js', { diff --git a/doc/api/sqlite.md b/doc/api/sqlite.md index d205c66f608..9e18a12ea90 100644 --- a/doc/api/sqlite.md +++ b/doc/api/sqlite.md @@ -127,7 +127,7 @@ open. This method is a wrapper around [`sqlite3_close_v2()`][]. ### `database.loadExtension(path)` * `path` {string} The path to the shared library to load. @@ -139,7 +139,7 @@ around [`sqlite3_load_extension()`][]. It is required to enable the ### `database.enableLoadExtension(allow)` * `allow` {boolean} Whether to allow loading extensions. @@ -163,7 +163,7 @@ file. This method is a wrapper around [`sqlite3_exec()`][]. ### `database.function(name[, options], function)` * `name` {string} The name of the SQLite function to create. @@ -485,7 +485,7 @@ exception. ## `sqlite.constants` * {Object} diff --git a/doc/api/util.md b/doc/api/util.md index 144ec6b834a..22c2454f46a 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1926,7 +1926,7 @@ added: - v21.7.0 - v20.12.0 changes: - - version: REPLACEME + - version: v23.5.0 pr-url: https://github.com/nodejs/node/pull/56265 description: styleText is now stable. - version: diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index de04e3940b3..7d7f735885a 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -2,7 +2,7 @@