Skip to content

Commit

Permalink
2025-01-30, 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
aduh95 committed Jan 30, 2025
1 parent 304bb9c commit c2c7f08
Show file tree
Hide file tree
Showing 10 changed files with 197 additions and 20 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
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,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
4 changes: 2 additions & 2 deletions doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2096,7 +2096,7 @@ added:
- v23.0.0
- v22.10.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56610
description: This error is no longer thrown on valid yet unsupported syntax.
-->
Expand Down Expand Up @@ -3123,7 +3123,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
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
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
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 @@ -1599,7 +1599,7 @@ const { findSourceMap, SourceMap } = require('node:module');
### `module.getSourceMapsSupport()`
<!-- YAML
added: REPLACEME
added: v23.7.0
-->
* Returns: {Object}
Expand Down Expand Up @@ -1632,7 +1632,7 @@ should be fetched.
### `module.setSourceMapsSupport(enabled[, options])`
<!-- YAML
added: REPLACEME
added: v23.7.0
-->
* `enabled` {boolean} Enable the source map support.
Expand Down
8 changes: 4 additions & 4 deletions doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ over hand-crafted SQL strings when handling user input.
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56385
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
-->
Expand Down Expand Up @@ -385,7 +385,7 @@ execution of this prepared statement. This property is a wrapper around
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56385
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
-->
Expand All @@ -411,7 +411,7 @@ added:
- v23.4.0
- v22.13.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56385
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
-->
Expand All @@ -434,7 +434,7 @@ the values in `namedParameters` and `anonymousParameters`.
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56385
description: Add support for `DataView` and typed array objects for `anonymousParameters`.
-->
Expand Down
8 changes: 4 additions & 4 deletions doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -1753,7 +1753,7 @@ describe('tests', async () => {
## `assert`

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

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

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

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

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

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

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

* `condition` {Function|AsyncFunction} An assertion function that is invoked
Expand Down
4 changes: 2 additions & 2 deletions doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,10 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
<!-- YAML
added: v22.9.0
changes:
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56584
description: Property `column` is deprecated in favor of `columnNumber`.
- version: REPLACEME
- version: v23.7.0
pr-url: https://github.com/nodejs/node/pull/56551
description: Property `CallSite.scriptId` is exposed.
- version:
Expand Down
2 changes: 1 addition & 1 deletion doc/api/worker_threads.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if (isMainThread) {
## `worker.isInternalThread`

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

* {boolean}
Expand Down
Loading

0 comments on commit c2c7f08

Please sign in to comment.