Skip to content

Commit 5d9b63d

Browse files
nodejs-github-botaduh95
authored andcommitted
2025-03-13, Version 23.10.0 (Current)
Notable changes: config: * (SEMVER-MINOR) add config file support (Marco Ippolito) nodejs#57016 * (SEMVER-MINOR) set default config as `node.config.json` (Marco Ippolito) nodejs#57171 crypto: * update root certificates to NSS 3.108 (Node.js GitHub Bot) nodejs#57381 doc: * add geeksilva97 to collaborators (Edy Silva) nodejs#57241 src: * (SEMVER-MINOR) create `THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito) nodejs#57016 test_runner: * (SEMVER-MINOR) change ts default glob (Marco Ippolito) nodejs#57359 tls: * (SEMVER-MINOR) implement `tls.getCACertificates()` (Joyee Cheung) nodejs#57107 v8: * (SEMVER-MINOR) add `v8.getCppHeapStatistics()` method (Aditi) nodejs#57146 PR-URL: nodejs#57424
1 parent 81d3db2 commit 5d9b63d

File tree

8 files changed

+173
-9
lines changed

8 files changed

+173
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ release.
3939
</tr>
4040
<tr>
4141
<td valign="top">
42-
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.9.0">23.9.0</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.10.0">23.10.0</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V23.md#23.9.0">23.9.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V23.md#23.8.0">23.8.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V23.md#23.7.0">23.7.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.1">23.6.1</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ Enable experimental import support for `.node` addons.
914914
### `--experimental-config-file=config`
915915

916916
<!-- YAML
917-
added: REPLACEME
917+
added: v23.10.0
918918
-->
919919

920920
> Stability: 1.0 - Early development
@@ -980,7 +980,7 @@ so **NEVER** use untrusted configuration files.
980980
### `--experimental-default-config-file`
981981

982982
<!-- YAML
983-
added: REPLACEME
983+
added: v23.10.0
984984
-->
985985

986986
> Stability: 1.0 - Early development

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2390,7 +2390,7 @@ of an asynchronous operation.
23902390
### `ERR_OPTIONS_BEFORE_BOOTSTRAPPING`
23912391

23922392
<!-- YAML
2393-
added: REPLACEME
2393+
added: v23.10.0
23942394
-->
23952395

23962396
An attempt was made to get options before the bootstrapping was completed.

doc/api/readline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ from being emitted by the `InterfaceConstructor` instance.
275275
### `rl[Symbol.dispose]()`
276276

277277
<!-- YAML
278-
added: REPLACEME
278+
added: v23.10.0
279279
-->
280280

281281
Alias for `rl.close()`.

doc/api/sqlite.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ console.log(query.all());
7878
<!-- YAML
7979
added: v22.5.0
8080
changes:
81-
- version: REPLACEME
81+
- version: v23.10.0
8282
pr-url: https://github.com/nodejs/node/pull/56991
8383
description: The `path` argument now supports Buffer and URL objects.
8484
-->
@@ -543,7 +543,7 @@ exception.
543543
<!-- YAML
544544
added: v23.8.0
545545
changes:
546-
- version: REPLACEME
546+
- version: v23.10.0
547547
pr-url: https://github.com/nodejs/node/pull/56991
548548
description: The `path` argument now supports Buffer and URL objects.
549549
-->

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@ The server can be tested by connecting to it using the example client from
22862286
## `tls.getCACertificates([type])`
22872287

22882288
<!-- YAML
2289-
added: REPLACEME
2289+
added: v23.10.0
22902290
-->
22912291

22922292
* `type` {string|undefined} The type of CA certificates that will be returned. Valid values

doc/api/v8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@ setTimeout(() => {
13931393
## `v8.isStringOneByteRepresentation(content)`
13941394

13951395
<!-- YAML
1396-
added: REPLACEME
1396+
added: v23.10.0
13971397
-->
13981398

13991399
* `content` {string}

doc/changelogs/CHANGELOG_V23.md

+163
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)