Skip to content

Commit 6beb65e

Browse files
committed
2026-01-26, Version 25.5.0 (Current)
Notable changes: crypto: * update root certificates to NSS 3.119 (Node.js GitHub Bot) #61419 deps: * (SEMVER-MINOR) add LIEF as a dependency (Joyee Cheung) #61167 * (SEMVER-MINOR) add tools and scripts to pull LIEF as a dependency (Joyee Cheung) #61167 fs: * (SEMVER-MINOR) add ignore option to fs.watch (Matteo Collina) #61433 sea: * (SEMVER-MINOR) add `--build-sea` to generate SEA directly with Node.js binary (Joyee Cheung) #61167 * (SEMVER-MINOR) split sea binary manipulation code (Joyee Cheung) #61167 sqlite: * (SEMVER-MINOR) enable defensive mode by default (Bart Louwers) #61266 * (SEMVER-MINOR) add sqlite prepare options args (Guilherme Araújo) #61311 src: * use node- prefix on thread names (Stewart X Addison) #61307 test: * (SEMVER-MINOR) migrate to `--build-sea` in existing SEA tests (Joyee Cheung) #61167 * (SEMVER-MINOR) use fixture directories for sea tests (Joyee Cheung) #61167 test_runner: * (SEMVER-MINOR) support expecting a test-case to fail (Jacob Smith) #60669 PR-URL: #61519
1 parent d14b484 commit 6beb65e

File tree

9 files changed

+159
-19
lines changed

9 files changed

+159
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ release.
4141
</tr>
4242
<tr>
4343
<td valign="top">
44-
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.4.0">25.4.0</a></b><br/>
44+
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.5.0">25.5.0</a></b><br/>
45+
<a href="doc/changelogs/CHANGELOG_V25.md#25.4.0">25.4.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V25.md#25.3.0">25.3.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V25.md#25.2.1">25.2.1</a><br/>
4748
<a href="doc/changelogs/CHANGELOG_V25.md#25.2.0">25.2.0</a><br/>

doc/api/buffer.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2074,7 +2074,7 @@ console.log(buf.fill('zz', 'hex'));
20742074
<!-- YAML
20752075
added: v5.3.0
20762076
changes:
2077-
- version: REPLACEME
2077+
- version: v25.5.0
20782078
pr-url: https://github.com/nodejs/node/pull/56578
20792079
description: supports Uint8Array as `this` value.
20802080
-->
@@ -2964,7 +2964,7 @@ console.log(buf.readInt32LE(1));
29642964
<!-- YAML
29652965
added: v0.11.15
29662966
changes:
2967-
- version: REPLACEME
2967+
- version: v25.5.0
29682968
pr-url: https://github.com/nodejs/node/pull/56578
29692969
description: supports Uint8Array as `this` value.
29702970
- version: v10.0.0
@@ -3015,7 +3015,7 @@ console.log(buf.readIntBE(1, 0).toString(16));
30153015
<!-- YAML
30163016
added: v0.11.15
30173017
changes:
3018-
- version: REPLACEME
3018+
- version: v25.5.0
30193019
pr-url: https://github.com/nodejs/node/pull/56578
30203020
description: supports Uint8Array as `this` value.
30213021
- version: v10.0.0
@@ -3296,7 +3296,7 @@ console.log(buf.readUInt32LE(1).toString(16));
32963296
<!-- YAML
32973297
added: v0.11.15
32983298
changes:
3299-
- version: REPLACEME
3299+
- version: v25.5.0
33003300
pr-url: https://github.com/nodejs/node/pull/56578
33013301
description: supports Uint8Array as `this` value.
33023302
- version:
@@ -3349,7 +3349,7 @@ console.log(buf.readUIntBE(1, 6).toString(16));
33493349
<!-- YAML
33503350
added: v0.11.15
33513351
changes:
3352-
- version: REPLACEME
3352+
- version: v25.5.0
33533353
pr-url: https://github.com/nodejs/node/pull/56578
33543354
description: supports Uint8Array as `this` value.
33553355
- version:
@@ -3805,7 +3805,7 @@ console.log(copy);
38053805
<!-- YAML
38063806
added: v0.1.90
38073807
changes:
3808-
- version: REPLACEME
3808+
- version: v25.5.0
38093809
pr-url: https://github.com/nodejs/node/pull/56578
38103810
description: supports Uint8Array as `this` value.
38113811
-->
@@ -3947,7 +3947,7 @@ for (const value of buf) {
39473947
<!-- YAML
39483948
added: v0.1.90
39493949
changes:
3950-
- version: REPLACEME
3950+
- version: v25.5.0
39513951
pr-url: https://github.com/nodejs/node/pull/56578
39523952
description: supports Uint8Array as `this` value.
39533953
-->

doc/api/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ Error: Access to this API has been restricted
405405

406406
<!-- YAML
407407
added:
408-
- REPLACEME
408+
- v25.5.0
409409
-->
410410

411411
> Stability: 1.1 - Active development
@@ -1274,7 +1274,7 @@ Use this flag to enable [ShadowRealm][] support.
12741274

12751275
<!-- YAML
12761276
added:
1277-
- REPLACEME
1277+
- v25.5.0
12781278
-->
12791279

12801280
> Stability: 1.1 - Active Development

doc/api/inspector.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ For more details, see the official CDP documentation: [Network.loadNetworkResour
686686

687687
<!-- YAML
688688
added:
689-
- REPLACEME
689+
- v25.5.0
690690
-->
691691

692692
* `params` {Object}
@@ -707,7 +707,7 @@ This event indicates that a new item has been added to the storage.
707707

708708
<!-- YAML
709709
added:
710-
- REPLACEME
710+
- v25.5.0
711711
-->
712712

713713
* `params` {Object}
@@ -727,7 +727,7 @@ This event indicates that an item has been removed from the storage.
727727

728728
<!-- YAML
729729
added:
730-
- REPLACEME
730+
- v25.5.0
731731
-->
732732

733733
* `params` {Object}
@@ -749,7 +749,7 @@ This event indicates that a storage item has been updated.
749749

750750
<!-- YAML
751751
added:
752-
- REPLACEME
752+
- v25.5.0
753753
-->
754754

755755
* `params` {Object}
@@ -769,7 +769,7 @@ storage.
769769

770770
<!-- YAML
771771
added:
772-
- REPLACEME
772+
- v25.5.0
773773
-->
774774

775775
* `params` {Object}

doc/api/single-executable-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ added:
77
- v19.7.0
88
- v18.16.0
99
changes:
10-
- version: REPLACEME
10+
- version: v25.5.0
1111
pr-url: https://github.com/nodejs/node/pull/61167
1212
description: Added built-in single executable application generation via the CLI flag `--build-sea`.
1313
- version: v20.6.0

doc/api/sqlite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ exposed by this class execute synchronously.
104104
<!-- YAML
105105
added: v22.5.0
106106
changes:
107-
- version: REPLACEME
107+
- version: v25.5.0
108108
pr-url: https://github.com/nodejs/node/pull/61266
109109
description: Enable `defensive` by default.
110110
- version:

doc/api/test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ test('todo() method with message', (t) => {
228228

229229
<!-- YAML
230230
added:
231-
- REPLACEME
231+
- v25.5.0
232232
-->
233233

234234
This flips the pass/fail reporting for a specific test or suite: A flagged test/test-case must throw

doc/api/v8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ setTimeout(() => {
15791579
### `profiler[Symbol.dispose]()`
15801580
15811581
<!-- YAML
1582-
added: REPLACEME
1582+
added: v25.5.0
15831583
-->
15841584
15851585
Stop collecting GC data, and discard the profile.

doc/changelogs/CHANGELOG_V25.md

Lines changed: 139 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)