Skip to content

Commit c2c7f08

Browse files
committed
2025-01-30, Version 23.7.0 (Current)
Notable changes: crypto: * update root certificates to NSS 3.107 (Node.js GitHub Bot) #56566 fs: * (SEMVER-MINOR) allow `exclude` option in globs to accept glob patterns (Daeyeon Jeong) #56489 module: * (SEMVER-MINOR) add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #56610 sqlite: * (SEMVER-MINOR) support TypedArray and DataView in `StatementSync` (Alex Yang) #56385 src: * (SEMVER-MINOR) add --disable-sigusr1 to prevent signal i/o thread (Rafael Gonzaga) #56441 src,worker: * (SEMVER-MINOR) add isInternalWorker (Carlos Espa) #56469 test_runner: * (SEMVER-MINOR) add TestContext.prototype.waitFor() (Colin Ihrig) #56595 * (SEMVER-MINOR) add t.assert.fileSnapshot() (Colin Ihrig) #56459 * (SEMVER-MINOR) add assert.register() API (Colin Ihrig) #56434 PR-URL: #56800
1 parent 304bb9c commit c2c7f08

10 files changed

+197
-20
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.6.1">23.6.1</a></b><br/>
42+
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.7.0">23.7.0</a></b><br/>
43+
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.1">23.6.1</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.0">23.6.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V23.md#23.5.0">23.5.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ property throw an exception with the code `ERR_PROTO_ACCESS`.
580580
### `--disable-sigusr1`
581581

582582
<!-- YAML
583-
added: REPLACEME
583+
added: v23.7.0
584584
-->
585585

586586
> Stability: 1.2 - Release candidate

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,7 @@ added:
20962096
- v23.0.0
20972097
- v22.10.0
20982098
changes:
2099-
- version: REPLACEME
2099+
- version: v23.7.0
21002100
pr-url: https://github.com/nodejs/node/pull/56610
21012101
description: This error is no longer thrown on valid yet unsupported syntax.
21022102
-->
@@ -3123,7 +3123,7 @@ try {
31233123
### `ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`
31243124

31253125
<!-- YAML
3126-
added: REPLACEME
3126+
added: v23.7.0
31273127
-->
31283128

31293129
The provided TypeScript syntax is unsupported.

doc/api/fs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ behavior is similar to `cp dir1/ dir2/`.
10741074
<!-- YAML
10751075
added: v22.0.0
10761076
changes:
1077-
- version: REPLACEME
1077+
- version: v23.7.0
10781078
pr-url: https://github.com/nodejs/node/pull/56489
10791079
description: Add support for `exclude` option to accept glob patterns.
10801080
- version: v22.2.0
@@ -3124,7 +3124,7 @@ descriptor. See [`fs.utimes()`][].
31243124
<!-- YAML
31253125
added: v22.0.0
31263126
changes:
3127-
- version: REPLACEME
3127+
- version: v23.7.0
31283128
pr-url: https://github.com/nodejs/node/pull/56489
31293129
description: Add support for `exclude` option to accept glob patterns.
31303130
- version: v22.2.0
@@ -5664,7 +5664,7 @@ Synchronous version of [`fs.futimes()`][]. Returns `undefined`.
56645664
<!-- YAML
56655665
added: v22.0.0
56665666
changes:
5667-
- version: REPLACEME
5667+
- version: v23.7.0
56685668
pr-url: https://github.com/nodejs/node/pull/56489
56695669
description: Add support for `exclude` option to accept glob patterns.
56705670
- version: v22.2.0

doc/api/module.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ const { findSourceMap, SourceMap } = require('node:module');
15991599
### `module.getSourceMapsSupport()`
16001600
16011601
<!-- YAML
1602-
added: REPLACEME
1602+
added: v23.7.0
16031603
-->
16041604
16051605
* Returns: {Object}
@@ -1632,7 +1632,7 @@ should be fetched.
16321632
### `module.setSourceMapsSupport(enabled[, options])`
16331633
16341634
<!-- YAML
1635-
added: REPLACEME
1635+
added: v23.7.0
16361636
-->
16371637
16381638
* `enabled` {boolean} Enable the source map support.

doc/api/sqlite.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ over hand-crafted SQL strings when handling user input.
349349
<!-- YAML
350350
added: v22.5.0
351351
changes:
352-
- version: REPLACEME
352+
- version: v23.7.0
353353
pr-url: https://github.com/nodejs/node/pull/56385
354354
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
355355
-->
@@ -385,7 +385,7 @@ execution of this prepared statement. This property is a wrapper around
385385
<!-- YAML
386386
added: v22.5.0
387387
changes:
388-
- version: REPLACEME
388+
- version: v23.7.0
389389
pr-url: https://github.com/nodejs/node/pull/56385
390390
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
391391
-->
@@ -411,7 +411,7 @@ added:
411411
- v23.4.0
412412
- v22.13.0
413413
changes:
414-
- version: REPLACEME
414+
- version: v23.7.0
415415
pr-url: https://github.com/nodejs/node/pull/56385
416416
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
417417
-->
@@ -434,7 +434,7 @@ the values in `namedParameters` and `anonymousParameters`.
434434
<!-- YAML
435435
added: v22.5.0
436436
changes:
437-
- version: REPLACEME
437+
- version: v23.7.0
438438
pr-url: https://github.com/nodejs/node/pull/56385
439439
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
440440
-->

doc/api/test.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,7 @@ describe('tests', async () => {
17531753
## `assert`
17541754

17551755
<!-- YAML
1756-
added: REPLACEME
1756+
added: v23.7.0
17571757
-->
17581758

17591759
An object whose methods are used to configure available assertions on the
@@ -1767,7 +1767,7 @@ preloaded with `--require` or `--import`.
17671767
### `assert.register(name, fn)`
17681768

17691769
<!-- YAML
1770-
added: REPLACEME
1770+
added: v23.7.0
17711771
-->
17721772

17731773
Defines a new assertion function with the provided name and function. If an
@@ -3283,7 +3283,7 @@ test('test', (t) => {
32833283
#### `context.assert.fileSnapshot(value, path[, options])`
32843284

32853285
<!-- YAML
3286-
added: REPLACEME
3286+
added: v23.7.0
32873287
-->
32883288

32893289
* `value` {any} A value to serialize to a string. If Node.js was started with
@@ -3611,7 +3611,7 @@ test('top level test', async (t) => {
36113611
### `context.waitFor(condition[, options])`
36123612

36133613
<!-- YAML
3614-
added: REPLACEME
3614+
added: v23.7.0
36153615
-->
36163616

36173617
* `condition` {Function|AsyncFunction} An assertion function that is invoked

doc/api/util.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,10 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
371371
<!-- YAML
372372
added: v22.9.0
373373
changes:
374-
- version: REPLACEME
374+
- version: v23.7.0
375375
pr-url: https://github.com/nodejs/node/pull/56584
376376
description: Property `column` is deprecated in favor of `columnNumber`.
377-
- version: REPLACEME
377+
- version: v23.7.0
378378
pr-url: https://github.com/nodejs/node/pull/56551
379379
description: Property `CallSite.scriptId` is exposed.
380380
- version:

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ if (isMainThread) {
103103
## `worker.isInternalThread`
104104

105105
<!-- YAML
106-
added: REPLACEME
106+
added: v23.7.0
107107
-->
108108

109109
* {boolean}

0 commit comments

Comments
 (0)