Skip to content

Commit

Permalink
2024-12-19, Version 23.5.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

crypto:
  * graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) #56142
doc:
  * stabilize util.styleText (Rafael Gonzaga) #56265
module:
  * (SEMVER-MINOR) add prefix-only modules to `module.builtinModules` (Jordan Harband) #56185
  * (SEMVER-MINOR) only emit require(esm) warning under --trace-require-module (Joyee Cheung) #56194
  * (SEMVER-MINOR) use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) #55698
  * (SEMVER-MINOR) implement module.registerHooks() (Joyee Cheung) #55698
report:
  * (SEMVER-MINOR) fix typos in report keys and bump the version (Yuan-Ming Hsu) #56068
sqlite:
  * (SEMVER-MINOR) aggregate constants in a single property (Edigleysson Silva (Edy)) #56213
src,lib:
  * (SEMVER-MINOR) stabilize permission model (Rafael Gonzaga) #56201
stream:
  * (SEMVER-MINOR) handle generator destruction from Duplex.from() (Matthieu Sieben) #55096

PR-URL: TODO
  • Loading branch information
aduh95 committed Dec 18, 2024
1 parent 53bc0c5 commit 317575a
Show file tree
Hide file tree
Showing 11 changed files with 133 additions and 23 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.5.0">23.5.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.2.0">23.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.1.0">23.1.0</a><br/>
Expand Down
8 changes: 4 additions & 4 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Error: Access to this API has been restricted
<!-- YAML
added: v20.0.0
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/56201

Check warning on line 193 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Permission Model and --allow-fs flags are stable.
- version: v20.7.0
Expand Down Expand Up @@ -234,7 +234,7 @@ node --permission --allow-fs-read=/path/to/index.js index.js
<!-- YAML
added: v20.0.0
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/56201

Check warning on line 238 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Permission Model and --allow-fs flags are stable.
- version: v20.7.0
Expand Down Expand Up @@ -1773,7 +1773,7 @@ developers may leverage to detect deprecated API usage.
<!-- YAML
added: v20.0.0
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/56201

Check warning on line 1777 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Permission Model is now stable.
-->
Expand Down Expand Up @@ -2630,7 +2630,7 @@ i.e. invoking `process.exit()`.

<!-- YAML
added:
- REPLACEME
- v23.5.0
-->

Prints information about usage of [Loading ECMAScript modules using `require()`][].
Expand Down
2 changes: 1 addition & 1 deletion doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2177,7 +2177,7 @@ signaling a short circuit.
### `ERR_LOAD_SQLITE_EXTENSION`

<!-- YAML
added: REPLACEME
added: v23.5.0
-->

An error occurred while loading a SQLite extension.
Expand Down
12 changes: 6 additions & 6 deletions doc/api/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check warning on line 26 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: The list now also contains prefix-only modules.
-->
Expand Down Expand Up @@ -204,7 +204,7 @@ resolution and loading behavior. See [Customization hooks][].
### `module.registerHooks(options)`
<!-- YAML
added: REPLACEME
added: v23.5.0
-->
> Stability: 1.1 - Active development
Expand Down Expand Up @@ -529,7 +529,7 @@ added: v22.8.0
<!-- YAML
added: v8.8.0
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/55698

Check warning on line 533 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for synchronous and in-thread hooks.
- version:
Expand Down Expand Up @@ -862,7 +862,7 @@ child workers by default.
#### Synchronous hooks accepted by `module.registerHooks()`
<!-- YAML
added: REPLACEME
added: v23.5.0
-->
> Stability: 1.1 - Active development
Expand Down Expand Up @@ -991,7 +991,7 @@ register('./path-to-my-hooks.js', {
<!-- YAML
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/55698

Check warning on line 995 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for synchronous and in-thread hooks.
- version:
Expand Down Expand Up @@ -1116,7 +1116,7 @@ function resolve(specifier, context, nextResolve) {
<!-- YAML
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/55698

Check warning on line 1120 in doc/api/module.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for synchronous and in-thread version.
- version: v20.6.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ added:
- v20.17.0
changes:
- version:
- REPLACEME
- v23.5.0
pr-url: https://github.com/nodejs/node/pull/56194

Check warning on line 180 in doc/api/modules.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: This feature no longer emits an experimental warning by default,
though the warning can still be emitted by --trace-require-module.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/report.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ Report version definitions are consistent across LTS releases.

<!-- YAML
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/56068

Check warning on line 596 in doc/api/report.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Fix typos in the memory limit units.
-->
Expand Down
8 changes: 4 additions & 4 deletions doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ open. This method is a wrapper around [`sqlite3_close_v2()`][].
### `database.loadExtension(path)`

<!-- YAML
added: REPLACEME
added: v23.5.0
-->

* `path` {string} The path to the shared library to load.
Expand All @@ -139,7 +139,7 @@ around [`sqlite3_load_extension()`][]. It is required to enable the
### `database.enableLoadExtension(allow)`

<!-- YAML
added: REPLACEME
added: v23.5.0
-->

* `allow` {boolean} Whether to allow loading extensions.
Expand All @@ -163,7 +163,7 @@ file. This method is a wrapper around [`sqlite3_exec()`][].
### `database.function(name[, options], function)`

<!-- YAML
added: REPLACEME
added: v23.5.0
-->

* `name` {string} The name of the SQLite function to create.
Expand Down Expand Up @@ -475,7 +475,7 @@ exception.
## `sqlite.constants`

<!-- YAML
added: REPLACEME
added: v23.5.0
-->

* {Object}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -1922,7 +1922,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:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/webcrypto.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- YAML
changes:
- version: REPLACEME
- version: v23.5.0
pr-url: https://github.com/nodejs/node/pull/56142
description: Algorithms `Ed25519` and `X25519` are now stable.
- version:
Expand Down
Loading

0 comments on commit 317575a

Please sign in to comment.