Skip to content

Commit 4d5c885

Browse files
committed
2024-08-22, Version 22.7.0 (Current)
Notable changes: buffer: * use fast API for writing one-byte strings (Robert Nagy) #54311 * optimize createFromString (Robert Nagy) #54324 * use native copy impl (Robert Nagy) #54087 inspector: * (SEMVER-MINOR) support `Network.loadingFailed` event (Kohei Ueno) #54246 lib: * (SEMVER-MINOR) rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) #48528 module: * (SEMVER-MINOR) add --experimental-transform-types flag (Marco Ippolito) #54283 * (SEMVER-MINOR) unflag detect-module (Geoffrey Booth) #53619 PR-URL: #54452
1 parent cef2047 commit 4d5c885

File tree

7 files changed

+216
-8
lines changed

7 files changed

+216
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.7.0">22.7.0</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>

doc/api/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ It is possible to run code containing inline types by passing
889889
### `--experimental-async-context-frame`
890890

891891
<!-- YAML
892-
added: REPLACEME
892+
added: v22.7.0
893893
-->
894894

895895
> Stability: 1 - Experimental
@@ -936,7 +936,7 @@ JavaScript.
936936
### `--experimental-transform-types`
937937

938938
<!-- YAML
939-
added: REPLACEME
939+
added: v22.7.0
940940
-->
941941

942942
> Stability: 1.0 - Early development
@@ -1622,7 +1622,7 @@ added:
16221622
- v20.10.0
16231623
changes:
16241624
- version:
1625-
- REPLACEME
1625+
- v22.7.0
16261626
pr-url: https://github.com/nodejs/node/pull/53619
16271627
description: Syntax detection is enabled by default.
16281628
-->

doc/api/inspector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ HTTP request has finished loading.
561561

562562
<!-- YAML
563563
added:
564-
- REPLACEME
564+
- v22.7.0
565565
-->
566566

567567
> Stability: 1 - Experimental

doc/api/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ added:
123123
- v20.10.0
124124
changes:
125125
- version:
126-
- REPLACEME
126+
- v22.7.0
127127
pr-url: https://github.com/nodejs/node/pull/53619
128128
description: Syntax detection is enabled by default.
129129
-->

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2710,7 +2710,7 @@ console.log(memoryUsage.rss());
27102710
<!-- YAML
27112711
added: v0.1.26
27122712
changes:
2713-
- version: REPLACEME
2713+
- version: v22.7.0
27142714
pr-url: https://github.com/nodejs/node/pull/51280
27152715
description: Changed stability to Legacy.
27162716
- version: v18.0.0

doc/api/typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- YAML
44
changes:
5-
- version: REPLACEME
5+
- version: v22.7.0
66
pr-url: https://github.com/nodejs/node/pull/54283
77
description: Added `--experimental-transform-types` flag.
88
-->

doc/changelogs/CHANGELOG_V22.md

+207
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)