Skip to content

Commit a980eab

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

File tree

9 files changed

+140
-12
lines changed

9 files changed

+140
-12
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
@@ -922,7 +922,7 @@ production.
922922
### `--experimental-config-file=config`
923923

924924
<!-- YAML
925-
added: REPLACEME
925+
added: v23.10.0
926926
-->
927927

928928
> Stability: 1.0 - Early development
@@ -988,7 +988,7 @@ so **NEVER** use untrusted configuration files.
988988
### `--experimental-default-config-file`
989989

990990
<!-- YAML
991-
added: REPLACEME
991+
added: v23.10.0
992992
-->
993993

994994
> Stability: 1.0 - Early development

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2382,7 +2382,7 @@ of an asynchronous operation.
23822382
### `ERR_OPTIONS_BEFORE_BOOTSTRAPPING`
23832383

23842384
<!-- YAML
2385-
added: REPLACEME
2385+
added: v23.10.0
23862386
-->
23872387

23882388
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
-->
@@ -517,7 +517,7 @@ exception.
517517
<!-- YAML
518518
added: v23.8.0
519519
changes:
520-
- version: REPLACEME
520+
- version: v23.10.0
521521
pr-url: https://github.com/nodejs/node/pull/56991
522522
description: The `path` argument now supports Buffer and URL objects.
523523
-->

doc/api/tls.md

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

23722372
<!-- YAML
2373-
added: REPLACEME
2373+
added: v23.10.0
23742374
-->
23752375

23762376
* `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

+127
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 23
26-
#define NODE_MINOR_VERSION 9
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 10
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)