Skip to content

Commit

Permalink
2025-01-29, Version 23.7.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nodejs-github-bot authored Jan 28, 2025
1 parent 68a112e commit e296b09
Show file tree
Hide file tree
Showing 12 changed files with 384 additions and 205 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.6.1">23.6.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.7.0">23.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.1">23.6.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.6.0">23.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.5.0">23.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a><br/>
Expand Down
4 changes: 2 additions & 2 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ property throw an exception with the code `ERR_PROTO_ACCESS`.
### `--disable-sigusr1`

<!-- YAML
added: REPLACEME
added: v23.7.0
-->

> Stability: 1.2 - Release candidate
Expand Down Expand Up @@ -999,7 +999,7 @@ top-level awaits, and print their location to help users find them.
### `--experimental-quic`

<!--
added: REPLACEME
added: v23.7.0
-->

Enables the experimental `node:quic` built-in module.
Expand Down
4 changes: 2 additions & 2 deletions doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2094,7 +2094,7 @@ does not consist of exactly two elements.
<!-- YAML
added: v23.0.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56610

Check warning on line 2098 in doc/api/errors.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.

Check warning on line 2098 in doc/api/errors.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: This error is no longer thrown on valid yet unsupported syntax.
-->
Expand Down Expand Up @@ -3103,7 +3103,7 @@ try {
### `ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`

<!-- YAML
added: REPLACEME
added: v23.7.0
-->

The provided TypeScript syntax is unsupported.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ behavior is similar to `cp dir1/ dir2/`.
<!-- YAML
added: v22.0.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56489

Check warning on line 1078 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.

Check warning on line 1078 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for `exclude` option to accept glob patterns.
- version: v22.2.0
Expand Down Expand Up @@ -3124,7 +3124,7 @@ descriptor. See [`fs.utimes()`][].
<!-- YAML
added: v22.0.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56489

Check warning on line 3128 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.

Check warning on line 3128 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for `exclude` option to accept glob patterns.
- version: v22.2.0
Expand Down Expand Up @@ -5664,7 +5664,7 @@ Synchronous version of [`fs.futimes()`][]. Returns `undefined`.
<!-- YAML
added: v22.0.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56489

Check warning on line 5668 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.

Check warning on line 5668 in doc/api/fs.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Add support for `exclude` option to accept glob patterns.
- version: v22.2.0
Expand Down
4 changes: 2 additions & 2 deletions doc/api/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ const { findSourceMap, SourceMap } = require('node:module');
### `module.getSourceMapsSupport()`
<!-- YAML
added: REPLACEME
added: v23.7.0
-->
* Returns: {Object}
Expand Down Expand Up @@ -1626,7 +1626,7 @@ should be fetched.
### `module.setSourceMapsSupport(enabled[, options])`
<!-- YAML
added: REPLACEME
added: v23.7.0
-->
* `enabled` {boolean} Enable the source map support.
Expand Down
Loading

0 comments on commit e296b09

Please sign in to comment.