From 54142254d200ace79e071b7d158939b3bfeffa74 Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Mon, 19 Aug 2024 11:58:36 -0300 Subject: [PATCH] 2024-08-20, Version 22.7.0 (Current) Notable changes: buffer: * use fast API for writing one-byte strings (Robert Nagy) https://github.com/nodejs/node/pull/54311 * optimize createFromString (Robert Nagy) https://github.com/nodejs/node/pull/54324 * use native copy impl (Robert Nagy) https://github.com/nodejs/node/pull/54087 inspector: * (SEMVER-MINOR) support `Network.loadingFailed` event (Kohei Ueno) https://github.com/nodejs/node/pull/54246 lib: * (SEMVER-MINOR) rewrite AsyncLocalStorage without async_hooks (Stephen Belanger) https://github.com/nodejs/node/pull/48528 module: * (SEMVER-MINOR) unflag detect-module (Geoffrey Booth) https://github.com/nodejs/node/pull/53619 PR-URL: TODO --- CHANGELOG.md | 3 +- doc/api/cli.md | 4 +- doc/api/inspector.md | 2 +- doc/api/packages.md | 2 +- doc/api/process.md | 2 +- doc/changelogs/CHANGELOG_V22.md | 174 ++++++++++++++++++++++++++++++++ src/node_version.h | 6 +- 7 files changed, 184 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 223e855578b550..09e83dd53085ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,8 @@ release. -22.6.0
+22.7.0
+22.6.0
22.5.1
22.5.0
22.4.1
diff --git a/doc/api/cli.md b/doc/api/cli.md index 187ac88338faea..dc253cf45a20c2 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -879,7 +879,7 @@ It is possible to run code containing inline types by passing ### `--experimental-async-context-frame` > Stability: 1 - Experimental @@ -1585,7 +1585,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. --> diff --git a/doc/api/inspector.md b/doc/api/inspector.md index 0d8b46f701e9f1..2d8bf185de0971 100644 --- a/doc/api/inspector.md +++ b/doc/api/inspector.md @@ -561,7 +561,7 @@ HTTP request has finished loading. > Stability: 1 - Experimental diff --git a/doc/api/packages.md b/doc/api/packages.md index 4316420620a224..9e55b053e75993 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -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. --> diff --git a/doc/api/process.md b/doc/api/process.md index b08bfeaf1e497c..461a0e4f59fafb 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -2700,7 +2700,7 @@ console.log(memoryUsage.rss());