Skip to content

Commit e296b09

Browse files
2025-01-29, 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 68a112e commit e296b09

12 files changed

+384
-205
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

+2-2
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
@@ -999,7 +999,7 @@ top-level awaits, and print their location to help users find them.
999999
### `--experimental-quic`
10001000

10011001
<!--
1002-
added: REPLACEME
1002+
added: v23.7.0
10031003
-->
10041004

10051005
Enables the experimental `node:quic` built-in module.

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.

0 commit comments

Comments
 (0)