Skip to content

Commit cc33907

Browse files
2025-11-11, Version 25.2.0 (Current)
Notable changes: lib: * (SEMVER-MINOR) add options to util.deprecate (Rafael Gonzaga) #59982 * throw from localStorage getter on missing storage path (René) #60351 module: * (SEMVER-MINOR) mark type stripping as stable (Marco Ippolito) #60600 net: * (SEMVER-MINOR) increase network family autoselection timeout to 500ms (Rod Vagg) #60334 node-api: * (SEMVER-MINOR) add napi_create_object_with_properties (Miguel Marcondes Filho) #59953 v8: * (SEMVER-MINOR) adding total_allocated_bytes to HeapStatistics (Caio Lima) #60573 PR-URL: #60677
1 parent 7e8373b commit cc33907

File tree

9 files changed

+145
-14
lines changed

9 files changed

+145
-14
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.1.0">25.1.0</a></b><br/>
44+
<b><a href="doc/changelogs/CHANGELOG_V25.md#25.2.0">25.2.0</a></b><br/>
45+
<a href="doc/changelogs/CHANGELOG_V25.md#25.1.0">25.1.0</a><br/>
4546
<a href="doc/changelogs/CHANGELOG_V25.md#25.0.0">25.0.0</a><br/>
4647
</td>
4748
<td valign="top">

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,7 @@ enables it.
19521952
<!-- YAML
19531953
added: v22.6.0
19541954
changes:
1955-
- version: REPLACEME
1955+
- version: v25.2.0
19561956
pr-url: https://github.com/nodejs/node/pull/60600
19571957
description: Type stripping is now stable.
19581958
- version:

doc/api/n-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2640,7 +2640,7 @@ ECMAScript Language Specification.
26402640
#### `napi_create_object_with_properties`
26412641

26422642
<!-- YAML
2643-
added: REPLACEME
2643+
added: v25.2.0
26442644
-->
26452645

26462646
> Stability: 1 - Experimental

doc/api/perf_hooks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ added:
121121
- v14.10.0
122122
- v12.19.0
123123
changes:
124-
- version: REPLACEME
124+
- version: v25.2.0
125125
pr-url: https://github.com/nodejs/node/pull/60370
126126
description: Added `perf_hooks.eventLoopUtilization` alias.
127127
-->
@@ -375,7 +375,7 @@ which the current `node` process began, measured in Unix time.
375375
<!-- YAML
376376
added: v8.5.0
377377
changes:
378-
- version: REPLACEME
378+
- version: v25.2.0
379379
pr-url: https://github.com/nodejs/node/pull/60370
380380
description: Added `perf_hooks.timerify` alias.
381381
- version: v16.0.0
@@ -1626,7 +1626,7 @@ Returns a {RecordableHistogram}.
16261626
## `perf_hooks.eventLoopUtilization([utilization1[, utilization2]])`
16271627

16281628
<!-- YAML
1629-
added: REPLACEME
1629+
added: v25.2.0
16301630
-->
16311631

16321632
* `utilization1` {Object} The result of a previous call to
@@ -1751,7 +1751,7 @@ console.log(h.percentile(99));
17511751
## `perf_hooks.timerify(fn[, options])`
17521752

17531753
<!-- YAML
1754-
added: REPLACEME
1754+
added: v25.2.0
17551755
-->
17561756

17571757
* `fn` {Function}

doc/api/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2002,7 +2002,7 @@ added:
20022002
- v23.0.0
20032003
- v22.10.0
20042004
changes:
2005-
- version: REPLACEME
2005+
- version: v25.2.0
20062006
pr-url: https://github.com/nodejs/node/pull/60600
20072007
description: Type stripping is now stable.
20082008
-->

doc/api/typescript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- YAML
44
changes:
5-
- version: REPLACEME
5+
- version: v25.2.0
66
pr-url: https://github.com/nodejs/node/pull/60600
77
description: Type stripping is now stable.
88
- version:
@@ -64,7 +64,7 @@ To use TypeScript with full support for all TypeScript features, including
6464
<!-- YAML
6565
added: v22.6.0
6666
changes:
67-
- version: REPLACEME
67+
- version: v25.2.0
6868
pr-url: https://github.com/nodejs/node/pull/60600
6969
description: Type stripping is now stable.
7070
-->

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ logging when only using `util.debuglog().enabled`.
230230
<!-- YAML
231231
added: v0.8.0
232232
changes:
233-
- version: REPLACEME
233+
- version: v25.2.0
234234
pr-url: https://github.com/nodejs/node/pull/59982
235235
description: Add options object with modifyPrototype to conditionally
236236
modify the prototype of the deprecated object.

doc/changelogs/CHANGELOG_V25.md

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

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 25
26-
#define NODE_MINOR_VERSION 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)