Skip to content

Commit

Permalink
2025-02-12, Version 22.14.0 'Jod' (LTS)
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 `findPackageJSON` util (Jacob Smith) #55412
process:
  * (SEMVER-MINOR) add process.ref() and process.unref() methods (James M Snell) #56400
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: #56910
  • Loading branch information
nodejs-github-bot authored Feb 4, 2025
1 parent 6ad8990 commit 2544200
Show file tree
Hide file tree
Showing 11 changed files with 239 additions and 22 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.14.0">22.14.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.0">22.13.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.12.0">22.12.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.11.0">22.11.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 @@ -569,7 +569,7 @@ property throw an exception with the code `ERR_PROTO_ACCESS`.
### `--disable-sigusr1`

<!-- YAML
added: REPLACEME
added: v22.14.0
-->

> Stability: 1.2 - Release candidate
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: v22.14.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: v22.14.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: v22.14.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
2 changes: 1 addition & 1 deletion doc/api/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ added: v22.8.0
### `module.findPackageJSON(specifier[, base])`
<!-- YAML
added: REPLACEME
added: v22.14.0
-->
> Stability: 1.1 - Active Development
Expand Down
4 changes: 2 additions & 2 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -3224,7 +3224,7 @@ console.log(`The parent process is pid ${ppid}`);
## `process.ref(maybeRefable)`
<!-- YAML
added: REPLACEME
added: v22.14.0
-->
> Stability: 1 - Experimental
Expand Down Expand Up @@ -4283,7 +4283,7 @@ In [`Worker`][] threads, `process.umask(mask)` will throw an exception.
## `process.unref(maybeRefable)`
<!-- YAML
added: REPLACEME
added: v22.14.0
-->
> Stability: 1 - Experimental
Expand Down
8 changes: 4 additions & 4 deletions doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ over hand-crafted SQL strings when handling user input.
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v22.14.0
pr-url: https://github.com/nodejs/node/pull/56385

Check warning on line 334 in doc/api/sqlite.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 334 in doc/api/sqlite.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 `DataView` and typed array objects for `anonymousParameters`.
-->
Expand Down Expand Up @@ -366,7 +366,7 @@ execution of this prepared statement. This property is a wrapper around
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v22.14.0
pr-url: https://github.com/nodejs/node/pull/56385

Check warning on line 370 in doc/api/sqlite.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 370 in doc/api/sqlite.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 `DataView` and typed array objects for `anonymousParameters`.
-->
Expand All @@ -390,7 +390,7 @@ values in `namedParameters` and `anonymousParameters`.
<!-- YAML
added: v22.13.0
changes:
- version: REPLACEME
- version: v22.14.0
pr-url: https://github.com/nodejs/node/pull/56385

Check warning on line 394 in doc/api/sqlite.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 394 in doc/api/sqlite.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 `DataView` and typed array objects for `anonymousParameters`.
-->
Expand All @@ -413,7 +413,7 @@ the values in `namedParameters` and `anonymousParameters`.
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v22.14.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 @@ -1735,7 +1735,7 @@ describe('tests', async () => {
## `assert`

<!-- YAML
added: REPLACEME
added: v22.14.0
-->

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

<!-- YAML
added: REPLACEME
added: v22.14.0
-->

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

<!-- YAML
added: REPLACEME
added: v22.14.0
-->

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

<!-- YAML
added: REPLACEME
added: v22.14.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: v22.14.0
pr-url: https://github.com/nodejs/node/pull/56584
description: Property `column` is deprecated in favor of `columnNumber`.
- version: REPLACEME
- version: v22.14.0
pr-url: https://github.com/nodejs/node/pull/56551
description: Property `CallSite.scriptId` is exposed.
- version: v22.12.0
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: v22.14.0
-->

* {boolean}
Expand Down
Loading

0 comments on commit 2544200

Please sign in to comment.