Skip to content

Commit

Permalink
2024-08-22, Version 22.7.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

buffer:
  * use fast API for writing one-byte strings (Robert Nagy) nodejs#54311
  * optimize createFromString (Robert Nagy) nodejs#54324
  * use native copy impl (Robert Nagy) nodejs#54087
inspector:
  * (SEMVER-MINOR) support `Network.loadingFailed` event (Kohei Ueno) nodejs#54246
lib:
  * (SEMVER-MINOR) rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) nodejs#48528
module:
  * (SEMVER-MINOR) add --experimental-transform-types flag (Marco Ippolito) nodejs#54283
  * (SEMVER-MINOR) unflag detect-module (Geoffrey Booth) nodejs#53619

PR-URL: nodejs#54452
  • Loading branch information
RafaelGSS authored and pull[bot] committed Aug 29, 2024
1 parent 5dbf10b commit b2b64f1
Show file tree
Hide file tree
Showing 7 changed files with 216 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.7.0">22.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.6.0">22.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ It is possible to run code containing inline types by passing
### `--experimental-async-context-frame`

<!-- YAML
added: REPLACEME
added: v22.7.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -936,7 +936,7 @@ JavaScript.
### `--experimental-transform-types`

<!-- YAML
added: REPLACEME
added: v22.7.0
-->

> Stability: 1.0 - Early development
Expand Down Expand Up @@ -1622,7 +1622,7 @@ added:
- v20.10.0
changes:
- version:
- REPLACEME
- v22.7.0
pr-url: https://github.com/nodejs/node/pull/53619
description: Syntax detection is enabled by default.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ HTTP request has finished loading.

<!-- YAML
added:
- REPLACEME
- v22.7.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ added:
- v20.10.0
changes:
- version:
- REPLACEME
- v22.7.0
pr-url: https://github.com/nodejs/node/pull/53619
description: Syntax detection is enabled by default.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -2710,7 +2710,7 @@ console.log(memoryUsage.rss());
<!-- YAML
added: v0.1.26
changes:
- version: REPLACEME
- version: v22.7.0
pr-url: https://github.com/nodejs/node/pull/51280
description: Changed stability to Legacy.
- version: v18.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/api/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- YAML
changes:
- version: REPLACEME
- version: v22.7.0
pr-url: https://github.com/nodejs/node/pull/54283
description: Added `--experimental-transform-types` flag.
-->
Expand Down
207 changes: 207 additions & 0 deletions doc/changelogs/CHANGELOG_V22.md

Large diffs are not rendered by default.

0 comments on commit b2b64f1

Please sign in to comment.