Skip to content

Commit 261411f

Browse files
2025-05-21, Version 22.16.0 'Jod' (LTS)
Notable changes: deps: * update timezone to 2025b (Node.js GitHub Bot) #57857 doc: * add dario-piotrowicz to collaborators (Dario Piotrowicz) #58102 * (SEMVER-MINOR) graduate multiple experimental apis (James M Snell) #57765 esm: * (SEMVER-MINOR) graduate import.meta properties (James M Snell) #58011 * (SEMVER-MINOR) support top-level Wasm without package type (Guy Bedford) #57610 sqlite: * (SEMVER-MINOR) add StatementSync.prototype.columns() (Colin Ihrig) #57490 src: * (SEMVER-MINOR) set default config as `node.config.json` (Marco Ippolito) #57171 * (SEMVER-MINOR) create `THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito) #57016 * (SEMVER-MINOR) add config file support (Marco Ippolito) #57016 * (SEMVER-MINOR) add ExecutionAsyncId getter for any Context (Attila Szegedi) #57820 stream: * (SEMVER-MINOR) preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) #57865 util: * (SEMVER-MINOR) add `types.isFloat16Array()` (Livia Medeiros) #57879 worker: * (SEMVER-MINOR) add worker.getHeapStatistics() (Matteo Collina) #57888 PR-URL: #58388
1 parent 30b26b9 commit 261411f

19 files changed

+267
-51
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ release.
3737
</tr>
3838
<tr>
3939
<td valign="top">
40-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.15.1">22.15.1</a></b><br/>
40+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.16.0">22.16.0</a></b><br/>
41+
<a href="doc/changelogs/CHANGELOG_V22.md#22.15.1">22.15.1</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V22.md#22.15.0">22.15.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.14.0">22.14.0</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.13.1">22.13.1</a><br/>

doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5278,7 +5278,7 @@ An alias for [`buffer.constants.MAX_STRING_LENGTH`][].
52785278
<!-- YAML
52795279
added: v16.7.0
52805280
changes:
5281-
- version: REPLACEME
5281+
- version: v22.16.0
52825282
pr-url: https://github.com/nodejs/node/pull/57513
52835283
description: Marking the API stable.
52845284
-->

doc/api/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ production.
912912
### `--experimental-config-file=config`
913913

914914
<!-- YAML
915-
added: REPLACEME
915+
added: v22.16.0
916916
-->
917917

918918
> Stability: 1.0 - Early development
@@ -978,7 +978,7 @@ so **NEVER** use untrusted configuration files.
978978
### `--experimental-default-config-file`
979979

980980
<!-- YAML
981-
added: REPLACEME
981+
added: v22.16.0
982982
-->
983983

984984
> Stability: 1.0 - Early development

doc/api/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3753,7 +3753,7 @@ When an `args` array is passed to [`child_process.execFile`][] or [`child_proces
37533753

37543754
<!-- YAML
37553755
changes:
3756-
- version: REPLACEME
3756+
- version: v22.16.0
37573757
pr-url: https://github.com/nodejs/node/pull/57508
37583758
description: Documentation-only deprecation
37593759
with `--pending-deprecation` support.

doc/api/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2393,7 +2393,7 @@ of an asynchronous operation.
23932393
### `ERR_OPTIONS_BEFORE_BOOTSTRAPPING`
23942394

23952395
<!-- YAML
2396-
added: REPLACEME
2396+
added: v22.16.0
23972397
-->
23982398

23992399
An attempt was made to get options before the bootstrapping was completed.

doc/api/esm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ added:
350350
- v21.2.0
351351
- v20.11.0
352352
changes:
353-
- version: REPLACEME
353+
- version: v22.16.0
354354
pr-url: https://github.com/nodejs/node/pull/58011
355355
description: This property is no longer experimental.
356356
-->
@@ -368,7 +368,7 @@ added:
368368
- v21.2.0
369369
- v20.11.0
370370
changes:
371-
- version: REPLACEME
371+
- version: v22.16.0
372372
pr-url: https://github.com/nodejs/node/pull/58011
373373
description: This property is no longer experimental.
374374
-->

doc/api/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1833,7 +1833,7 @@ added:
18331833
- v20.5.0
18341834
- v18.18.0
18351835
changes:
1836-
- version: REPLACEME
1836+
- version: v22.16.0
18371837
pr-url: https://github.com/nodejs/node/pull/57765
18381838
description: Change stability index for this feature from Experimental to Stable.
18391839
-->

doc/api/fs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ number of bytes read is zero.
481481
<!-- YAML
482482
added: v17.0.0
483483
changes:
484-
- version: REPLACEME
484+
- version: v22.16.0
485485
pr-url: https://github.com/nodejs/node/pull/57513
486486
description: Marking the API stable.
487487
- version: v22.15.0
@@ -1075,7 +1075,7 @@ behavior is similar to `cp dir1/ dir2/`.
10751075
<!-- YAML
10761076
added: v22.0.0
10771077
changes:
1078-
- version: REPLACEME
1078+
- version: v22.16.0
10791079
pr-url: https://github.com/nodejs/node/pull/57513
10801080
description: Marking the API stable.
10811081
- version: v22.14.0
@@ -3128,7 +3128,7 @@ descriptor. See [`fs.utimes()`][].
31283128
<!-- YAML
31293129
added: v22.0.0
31303130
changes:
3131-
- version: REPLACEME
3131+
- version: v22.16.0
31323132
pr-url: https://github.com/nodejs/node/pull/57513
31333133
description: Marking the API stable.
31343134
- version: v22.14.0
@@ -3579,7 +3579,7 @@ Functions based on `fs.open()` exhibit this behavior as well:
35793579
<!-- YAML
35803580
added: v19.8.0
35813581
changes:
3582-
- version: REPLACEME
3582+
- version: v22.16.0
35833583
pr-url: https://github.com/nodejs/node/pull/57513
35843584
description: Marking the API stable.
35853585
-->
@@ -5679,7 +5679,7 @@ Synchronous version of [`fs.futimes()`][]. Returns `undefined`.
56795679
<!-- YAML
56805680
added: v22.0.0
56815681
changes:
5682-
- version: REPLACEME
5682+
- version: v22.16.0
56835683
pr-url: https://github.com/nodejs/node/pull/57513
56845684
description: Marking the API stable.
56855685
- version: v22.14.0
@@ -6834,7 +6834,7 @@ added:
68346834
- v20.12.0
68356835
- v18.20.0
68366836
changes:
6837-
- version: REPLACEME
6837+
- version: v22.16.0
68386838
pr-url: https://github.com/nodejs/node/pull/57513
68396839
description: Marking the API stable.
68406840
-->

doc/api/process.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ added:
11301130
- v19.6.0
11311131
- v18.15.0
11321132
changes:
1133-
- version: REPLACEME
1133+
- version: v22.16.0
11341134
pr-url: https://github.com/nodejs/node/pull/57765
11351135
description: Change stability index for this feature from Experimental to Stable.
11361136
- version: v22.0.0
@@ -1152,7 +1152,7 @@ information.
11521152
<!-- YAML
11531153
added: v22.0.0
11541154
changes:
1155-
- version: REPLACEME
1155+
- version: v22.16.0
11561156
pr-url: https://github.com/nodejs/node/pull/57765
11571157
description: Change stability index for this feature from Experimental to Stable.
11581158
-->
@@ -2279,7 +2279,7 @@ added:
22792279
- v17.3.0
22802280
- v16.14.0
22812281
changes:
2282-
- version: REPLACEME
2282+
- version: v22.16.0
22832283
pr-url: https://github.com/nodejs/node/pull/57765
22842284
description: Change stability index for this feature from Experimental to Stable.
22852285
-->

doc/api/readline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ line prompts are included in the calculations.
501501
<!-- YAML
502502
added: v17.0.0
503503
changes:
504-
- version: REPLACEME
504+
- version: v22.16.0
505505
pr-url: https://github.com/nodejs/node/pull/57513
506506
description: Marking the API stable.
507507
-->

0 commit comments

Comments
 (0)