Skip to content

Commit 5d2feb2

Browse files
committed
2025-02-11, Version 22.14.0 'Jod' (LTS)
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 lib: * (SEMVER-MINOR) add typescript support to STDIN eval (Marco Ippolito) #56359 module: * (SEMVER-MINOR) add ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX (Marco Ippolito) #56610 * (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 worker: * (SEMVER-MINOR) add eval ts input (Marco Ippolito) #56394 PR-URL: #56910
1 parent bae4b2e commit 5d2feb2

12 files changed

+255
-26
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.14.0">22.14.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.0">22.13.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.12.0">22.12.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.11.0">22.11.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ property throw an exception with the code `ERR_PROTO_ACCESS`.
569569
### `--disable-sigusr1`
570570

571571
<!-- YAML
572-
added: REPLACEME
572+
added: v22.14.0
573573
-->
574574

575575
> Stability: 1.2 - Release candidate

doc/api/errors.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,7 @@ does not consist of exactly two elements.
21072107
<!-- YAML
21082108
added: v22.10.0
21092109
changes:
2110-
- version: REPLACEME
2110+
- version: v22.14.0
21112111
pr-url: https://github.com/nodejs/node/pull/56610
21122112
description: This error is no longer thrown on valid yet unsupported syntax.
21132113
-->
@@ -3110,7 +3110,7 @@ try {
31103110
### `ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`
31113111

31123112
<!-- YAML
3113-
added: REPLACEME
3113+
added: v22.14.0
31143114
-->
31153115

31163116
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: v22.14.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: v22.14.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: v22.14.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

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ added: v22.8.0
220220
### `module.findPackageJSON(specifier[, base])`
221221
222222
<!-- YAML
223-
added: REPLACEME
223+
added: v22.14.0
224224
-->
225225
226226
> Stability: 1.1 - Active Development
@@ -1449,7 +1449,7 @@ const { findSourceMap, SourceMap } = require('node:module');
14491449
### `module.getSourceMapsSupport()`
14501450
14511451
<!-- YAML
1452-
added: REPLACEME
1452+
added: v22.14.0
14531453
-->
14541454
14551455
* Returns: {Object}
@@ -1482,7 +1482,7 @@ should be fetched.
14821482
### `module.setSourceMapsSupport(enabled[, options])`
14831483
14841484
<!-- YAML
1485-
added: REPLACEME
1485+
added: v22.14.0
14861486
-->
14871487
14881488
* `enabled` {boolean} Enable the source map support.

doc/api/process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3224,7 +3224,7 @@ console.log(`The parent process is pid ${ppid}`);
32243224
## `process.ref(maybeRefable)`
32253225
32263226
<!-- YAML
3227-
added: REPLACEME
3227+
added: v22.14.0
32283228
-->
32293229
32303230
> Stability: 1 - Experimental
@@ -4286,7 +4286,7 @@ In [`Worker`][] threads, `process.umask(mask)` will throw an exception.
42864286
## `process.unref(maybeRefable)`
42874287
42884288
<!-- YAML
4289-
added: REPLACEME
4289+
added: v22.14.0
42904290
-->
42914291
42924292
> Stability: 1 - Experimental

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: v22.14.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: v22.14.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: v22.13.0
392392
changes:
393-
- version: REPLACEME
393+
- version: v22.14.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: v22.14.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
@@ -1735,7 +1735,7 @@ describe('tests', async () => {
17351735
## `assert`
17361736

17371737
<!-- YAML
1738-
added: REPLACEME
1738+
added: v22.14.0
17391739
-->
17401740

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

17511751
<!-- YAML
1752-
added: REPLACEME
1752+
added: v22.14.0
17531753
-->
17541754

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

32543254
<!-- YAML
3255-
added: REPLACEME
3255+
added: v22.14.0
32563256
-->
32573257

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

35773577
<!-- YAML
3578-
added: REPLACEME
3578+
added: v22.14.0
35793579
-->
35803580

35813581
* `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: v22.14.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: v22.14.0
378378
pr-url: https://github.com/nodejs/node/pull/56551
379379
description: Property `CallSite.scriptId` is exposed.
380380
- version: v22.12.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: v22.14.0
107107
-->
108108

109109
* {boolean}

0 commit comments

Comments
 (0)