Skip to content

Commit 56a5662

Browse files
committed
2024-08-20, 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 3eab8ce commit 56a5662

File tree

8 files changed

+232
-11
lines changed

8 files changed

+232
-11
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
@@ -879,7 +879,7 @@ It is possible to run code containing inline types by passing
879879
### `--experimental-async-context-frame`
880880

881881
<!-- YAML
882-
added: REPLACEME
882+
added: v22.7.0
883883
-->
884884

885885
> Stability: 1 - Experimental
@@ -926,7 +926,7 @@ JavaScript.
926926
### `--experimental-transform-types`
927927

928928
<!-- YAML
929-
added: REPLACEME
929+
added: v22.7.0
930930
-->
931931

932932
> Stability: 1.0 - Early development
@@ -1596,7 +1596,7 @@ added:
15961596
- v20.10.0
15971597
changes:
15981598
- version:
1599-
- REPLACEME
1599+
- v22.7.0
16001600
pr-url: https://github.com/nodejs/node/pull/53619
16011601
description: Syntax detection is enabled by default.
16021602
-->

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
@@ -2700,7 +2700,7 @@ console.log(memoryUsage.rss());
27002700
<!-- YAML
27012701
added: v0.1.26
27022702
changes:
2703-
- version: REPLACEME
2703+
- version: v22.7.0
27042704
pr-url: https://github.com/nodejs/node/pull/51280
27052705
description: Changed stability to Legacy.
27062706
- 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

+220
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 22
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
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)