Skip to content

Commit beb7fd9

Browse files
committed
2026-02-10, Version 24.13.1 'Krypton' (LTS)
Notable changes: build: * add support for Python 3.14 (Christian Clauss) #59983 cli: * mark `--heapsnapshot-near-heap-limit` as stable (Joyee Cheung) #60956 crypto: * update root certificates to NSS 3.119 (Node.js GitHub Bot) #61419 doc: * mark `--build-snapshot` and `--build-snapshot-config` as stable (Joyee Cheung) #60954 meta: * add avivkeller to collaborators (Aviv Keller) #61115 * add gurgunday to collaborators (Gürgün Dayıoğlu) #61094 * add Renegade334 to collaborators (Renegade334) #60714 url: * update ada to v3.4.2 and support unicode 17 (Yagiz Nizipli) #61593 v8: * mark `v8.queryObjects()` as stable (Joyee Cheung) #60957 PR-URL: #61661
1 parent 4fca20c commit beb7fd9

File tree

9 files changed

+385
-14
lines changed

9 files changed

+385
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ release.
5151
<a href="doc/changelogs/CHANGELOG_V25.md#25.0.0">25.0.0</a><br/>
5252
</td>
5353
<td valign="top">
54-
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.13.0">24.13.0</a></b><br/>
54+
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.13.1">24.13.1</a></b><br/>
55+
<a href="doc/changelogs/CHANGELOG_V24.md#24.13.0">24.13.0</a><br/>
5556
<a href="doc/changelogs/CHANGELOG_V24.md#24.12.0">24.12.0</a><br/>
5657
<a href="doc/changelogs/CHANGELOG_V24.md#24.11.1">24.11.1</a><br/>
5758
<a href="doc/changelogs/CHANGELOG_V24.md#24.11.0">24.11.0</a><br/>

doc/api/buffer.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2074,7 +2074,9 @@ console.log(buf.fill('zz', 'hex'));
20742074
<!-- YAML
20752075
added: v5.3.0
20762076
changes:
2077-
- version: v25.5.0
2077+
- version:
2078+
- v25.5.0
2079+
- v24.13.1
20782080
pr-url: https://github.com/nodejs/node/pull/56578
20792081
description: supports Uint8Array as `this` value.
20802082
-->
@@ -2964,7 +2966,9 @@ console.log(buf.readInt32LE(1));
29642966
<!-- YAML
29652967
added: v0.11.15
29662968
changes:
2967-
- version: v25.5.0
2969+
- version:
2970+
- v25.5.0
2971+
- v24.13.1
29682972
pr-url: https://github.com/nodejs/node/pull/56578
29692973
description: supports Uint8Array as `this` value.
29702974
- version: v10.0.0
@@ -3015,7 +3019,9 @@ console.log(buf.readIntBE(1, 0).toString(16));
30153019
<!-- YAML
30163020
added: v0.11.15
30173021
changes:
3018-
- version: v25.5.0
3022+
- version:
3023+
- v25.5.0
3024+
- v24.13.1
30193025
pr-url: https://github.com/nodejs/node/pull/56578
30203026
description: supports Uint8Array as `this` value.
30213027
- version: v10.0.0
@@ -3296,7 +3302,9 @@ console.log(buf.readUInt32LE(1).toString(16));
32963302
<!-- YAML
32973303
added: v0.11.15
32983304
changes:
3299-
- version: v25.5.0
3305+
- version:
3306+
- v25.5.0
3307+
- v24.13.1
33003308
pr-url: https://github.com/nodejs/node/pull/56578
33013309
description: supports Uint8Array as `this` value.
33023310
- version:
@@ -3349,7 +3357,9 @@ console.log(buf.readUIntBE(1, 6).toString(16));
33493357
<!-- YAML
33503358
added: v0.11.15
33513359
changes:
3352-
- version: v25.5.0
3360+
- version:
3361+
- v25.5.0
3362+
- v24.13.1
33533363
pr-url: https://github.com/nodejs/node/pull/56578
33543364
description: supports Uint8Array as `this` value.
33553365
- version:
@@ -3805,7 +3815,9 @@ console.log(copy);
38053815
<!-- YAML
38063816
added: v0.1.90
38073817
changes:
3808-
- version: v25.5.0
3818+
- version:
3819+
- v25.5.0
3820+
- v24.13.1
38093821
pr-url: https://github.com/nodejs/node/pull/56578
38103822
description: supports Uint8Array as `this` value.
38113823
-->
@@ -3947,7 +3959,9 @@ for (const value of buf) {
39473959
<!-- YAML
39483960
added: v0.1.90
39493961
changes:
3950-
- version: v25.5.0
3962+
- version:
3963+
- v25.5.0
3964+
- v24.13.1
39513965
pr-url: https://github.com/nodejs/node/pull/56578
39523966
description: supports Uint8Array as `this` value.
39533967
-->

doc/api/cli.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ added: v18.8.0
425425
changes:
426426
- version:
427427
- v25.4.0
428+
- v24.13.1
428429
pr-url: https://github.com/nodejs/node/pull/60954
429430
description: The snapshot building process is no longer experimental.
430431
-->
@@ -493,6 +494,7 @@ added:
493494
changes:
494495
- version:
495496
- v25.4.0
497+
- v24.13.1
496498
pr-url: https://github.com/nodejs/node/pull/60954
497499
description: The snapshot building process is no longer experimental.
498500
-->
@@ -1515,6 +1517,7 @@ added:
15151517
changes:
15161518
- version:
15171519
- v25.4.0
1520+
- v24.13.1
15181521
pr-url: https://github.com/nodejs/node/pull/60956
15191522
description: The flag is no longer experimental.
15201523
-->

doc/api/crypto.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4531,7 +4531,9 @@ added:
45314531
- v21.7.0
45324532
- v20.12.0
45334533
changes:
4534-
- version: v25.4.0
4534+
- version:
4535+
- v25.5.0
4536+
- v24.13.1
45354537
pr-url: https://github.com/nodejs/node/pull/60994
45364538
description: This API is no longer experimental.
45374539
- version: v24.4.0

doc/api/module.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ added:
225225
changes:
226226
- version:
227227
- v25.4.0
228+
- v24.13.1
228229
pr-url: https://github.com/nodejs/node/pull/60960
229230
description: Synchronous and in-thread hooks are now release candidate.
230231
-->
@@ -608,6 +609,7 @@ added: v8.8.0
608609
changes:
609610
- version:
610611
- v25.4.0
612+
- v24.13.1
611613
pr-url: https://github.com/nodejs/node/pull/60960
612614
description: Synchronous and in-thread hooks are now release candidate.
613615
- version:

doc/api/n-api.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2288,7 +2288,9 @@ object such that no properties can be set on it, and no prototype.
22882288

22892289
<!-- YAML
22902290
changes:
2291-
- version: v25.4.0
2291+
- version:
2292+
- v25.5.0
2293+
- v24.13.1
22922294
pr-url: https://github.com/nodejs/node/pull/58879
22932295
description: Added `napi_float16_array` for Float16Array support.
22942296
-->
@@ -2817,7 +2819,9 @@ exceeds the size of the `ArrayBuffer`, a `RangeError` exception is raised.
28172819
added: v8.3.0
28182820
napiVersion: 1
28192821
changes:
2820-
- version: v25.4.0
2822+
- version:
2823+
- v25.5.0
2824+
- v24.13.1
28212825
pr-url: https://github.com/nodejs/node/pull/60473
28222826
description: Added support for `SharedArrayBuffer`.
28232827
-->
@@ -5062,7 +5066,9 @@ of the ECMA-262 specification.
50625066
#### `node_api_set_prototype`
50635067

50645068
<!-- YAML
5065-
added: v25.4.0
5069+
added:
5070+
- v25.4.0
5071+
- v24.13.1
50665072
-->
50675073

50685074
> Stability: 1 - Experimental

doc/api/sqlite.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,9 @@ called directly.
11021102
<!-- YAML
11031103
added: v24.9.0
11041104
changes:
1105-
- version: v25.4.0
1105+
- version:
1106+
- v25.5.0
1107+
- v24.13.1
11061108
pr-url: https://github.com/nodejs/node/pull/60246
11071109
description: Changed from a method to a getter.
11081110
-->

doc/api/v8.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,7 @@ added:
383383
changes:
384384
- version:
385385
- v25.4.0
386+
- v24.13.1
386387
pr-url: https://github.com/nodejs/node/pull/60957
387388
description: This API is no longer experimental.
388389
-->
@@ -1579,7 +1580,9 @@ setTimeout(() => {
15791580
### `profiler[Symbol.dispose]()`
15801581
15811582
<!-- YAML
1582-
added: v25.5.0
1583+
added:
1584+
- v25.5.0
1585+
- v24.13.1
15831586
-->
15841587
15851588
Stop collecting GC data, and discard the profile.

0 commit comments

Comments
 (0)