Skip to content

Commit d0d3a2a

Browse files
2025-11-11, Version 24.12.0 'Krypton' (LTS)
Notable changes: http: * (SEMVER-MINOR) add optimizeEmptyRequests server option (Rafael Gonzaga) #59778 src: * (SEMVER-MINOR) add watch config namespace (Marco Ippolito) #60178 * (SEMVER-MINOR) add an option to make compile cache portable (Aditi) #58797 v8: * (SEMVER-MINOR) add cpu profile (theanarkh) #59807 PR-URL: #60615
1 parent dd9a117 commit d0d3a2a

File tree

6 files changed

+121
-11
lines changed

6 files changed

+121
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ release.
4040
</tr>
4141
<tr>
4242
<td valign="top">
43-
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.11.0">24.11.0</a></b><br/>
43+
<b><a href="doc/changelogs/CHANGELOG_V24.md#24.12.0">24.12.0</a></b><br/>
44+
<a href="doc/changelogs/CHANGELOG_V24.md#24.11.0">24.11.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V24.md#24.10.0">24.10.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V24.md#24.9.0">24.9.0</a><br/>
4647
<a href="doc/changelogs/CHANGELOG_V24.md#24.8.0">24.8.0</a><br/>

doc/api/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3552,7 +3552,7 @@ Found'`.
35523552
<!-- YAML
35533553
added: v0.1.13
35543554
changes:
3555-
- version: REPLACEME
3555+
- version: v24.12.0
35563556
pr-url: https://github.com/nodejs/node/pull/59778
35573557
description: Add optimizeEmptyRequests option.
35583558
- version: v24.9.0

doc/api/module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,10 @@ The following constants are returned as the `status` field in the object returne
503503
<!-- YAML
504504
added: v22.8.0
505505
changes:
506-
- version: REPLACEME
506+
- version: v24.12.0
507507
pr-url: https://github.com/nodejs/node/pull/58797
508508
description: Add `portable` option to enable portable compile cache.
509-
- version: REPLACEME
509+
- version: v24.12.0
510510
pr-url: https://github.com/nodejs/node/pull/59931
511511
description: Rename the unreleased `path` option to `directory` to maintain consistency.
512512
-->

doc/api/v8.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1397,13 +1397,13 @@ setTimeout(() => {
13971397
## Class: `SyncCPUProfileHandle`
13981398

13991399
<!-- YAML
1400-
added: REPLACEME
1400+
added: v24.12.0
14011401
-->
14021402

14031403
### `syncCpuProfileHandle.stop()`
14041404

14051405
<!-- YAML
1406-
added: REPLACEME
1406+
added: v24.12.0
14071407
-->
14081408

14091409
* Returns: {string}
@@ -1413,7 +1413,7 @@ Stopping collecting the profile and return the profile data.
14131413
### `syncCpuProfileHandle[Symbol.dispose]()`
14141414

14151415
<!-- YAML
1416-
added: REPLACEME
1416+
added: v24.12.0
14171417
-->
14181418

14191419
Stopping collecting the profile and the profile will be discarded.
@@ -1516,7 +1516,7 @@ writeString('你好');
15161516
## `v8.startCpuProfile()`
15171517

15181518
<!-- YAML
1519-
added: REPLACEME
1519+
added: v24.12.0
15201520
-->
15211521

15221522
* Returns: {SyncCPUProfileHandle}

0 commit comments

Comments
 (0)