Skip to content

Commit 73b4c04

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 5f1ee05 commit 73b4c04

11 files changed

+200
-23
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
@@ -576,7 +576,7 @@ property throw an exception with the code `ERR_PROTO_ACCESS`.
576576
### `--disable-sigusr1`
577577

578578
<!-- YAML
579-
added: REPLACEME
579+
added: v23.7.0
580580
-->
581581

582582
> Stability: 1.2 - Release candidate

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ does not consist of exactly two elements.
20942094
<!-- YAML
20952095
added: v23.0.0
20962096
changes:
2097-
- version: REPLACEME
2097+
- version: v23.7.0
20982098
pr-url: https://github.com/nodejs/node/pull/56610
20992099
description: This error is no longer thrown on valid yet unsupported syntax.
21002100
-->
@@ -3103,7 +3103,7 @@ try {
31033103
### `ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`
31043104

31053105
<!-- YAML
3106-
added: REPLACEME
3106+
added: v23.7.0
31073107
-->
31083108

31093109
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
@@ -1593,7 +1593,7 @@ const { findSourceMap, SourceMap } = require('node:module');
15931593
### `module.getSourceMapsSupport()`
15941594
15951595
<!-- YAML
1596-
added: REPLACEME
1596+
added: v23.7.0
15971597
-->
15981598
15991599
* Returns: {Object}
@@ -1626,7 +1626,7 @@ should be fetched.
16261626
### `module.setSourceMapsSupport(enabled[, options])`
16271627
16281628
<!-- YAML
1629-
added: REPLACEME
1629+
added: v23.7.0
16301630
-->
16311631
16321632
* `enabled` {boolean} Enable the source map support.

doc/api/sqlite.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ over hand-crafted SQL strings when handling user input.
330330
<!-- YAML
331331
added: v22.5.0
332332
changes:
333-
- version: REPLACEME
333+
- version: v23.7.0
334334
pr-url: https://github.com/nodejs/node/pull/56385
335335
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
336336
-->
@@ -366,7 +366,7 @@ execution of this prepared statement. This property is a wrapper around
366366
<!-- YAML
367367
added: v22.5.0
368368
changes:
369-
- version: REPLACEME
369+
- version: v23.7.0
370370
pr-url: https://github.com/nodejs/node/pull/56385
371371
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
372372
-->
@@ -390,7 +390,7 @@ values in `namedParameters` and `anonymousParameters`.
390390
<!-- YAML
391391
added: v23.4.0
392392
changes:
393-
- version: REPLACEME
393+
- version: v23.7.0
394394
pr-url: https://github.com/nodejs/node/pull/56385
395395
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
396396
-->
@@ -413,7 +413,7 @@ the values in `namedParameters` and `anonymousParameters`.
413413
<!-- YAML
414414
added: v22.5.0
415415
changes:
416-
- version: REPLACEME
416+
- version: v23.7.0
417417
pr-url: https://github.com/nodejs/node/pull/56385
418418
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
419419
-->

doc/api/test.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1751,7 +1751,7 @@ describe('tests', async () => {
17511751
## `assert`
17521752

17531753
<!-- YAML
1754-
added: REPLACEME
1754+
added: v23.7.0
17551755
-->
17561756

17571757
An object whose methods are used to configure available assertions on the
@@ -1765,7 +1765,7 @@ preloaded with `--require` or `--import`.
17651765
### `assert.register(name, fn)`
17661766

17671767
<!-- YAML
1768-
added: REPLACEME
1768+
added: v23.7.0
17691769
-->
17701770

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

32833283
<!-- YAML
3284-
added: REPLACEME
3284+
added: v23.7.0
32853285
-->
32863286

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

36093609
<!-- YAML
3610-
added: REPLACEME
3610+
added: v23.7.0
36113611
-->
36123612

36133613
* `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: v23.3.0

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)