From fd9233acbfdbff8f25dc7dec5e83c697e35b6de9 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 19 Jul 2024 00:54:47 +0000 Subject: [PATCH] 2024-07-19, Version 22.5.1 (Current) Notable changes: This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms: - Crash with ``` FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available ``` - npm errors with `npm error Exit handler never called!` - yarn hangs or outputs ``` Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation) ``` PR-URL: https://github.com/nodejs/node/pull/53935 Refs: https://github.com/nodejs/node/issues/53902 Refs: https://github.com/npm/cli/issues/7657 Refs: https://github.com/yarnpkg/berry/issues/6398 --- CHANGELOG.md | 3 ++- doc/changelogs/CHANGELOG_V22.md | 17 +++++++++++++++++ src/node_version.h | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 254c17cb60bcf1..d4a9746ce8927b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,8 @@ release. -22.5.0
+22.5.1
+22.5.0
22.4.1
22.4.0
22.3.0
diff --git a/doc/changelogs/CHANGELOG_V22.md b/doc/changelogs/CHANGELOG_V22.md index 770b91daa7c518..6fffc5950d6131 100644 --- a/doc/changelogs/CHANGELOG_V22.md +++ b/doc/changelogs/CHANGELOG_V22.md @@ -8,6 +8,7 @@ +22.5.1
22.5.0
22.4.1
22.4.0
@@ -43,6 +44,22 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2024-07-19, Version 22.5.1 (Current), @richardlau + +### Notable Changes + +This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms: + +* Crash with `FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available` [#53902](https://github.com/nodejs/node/issues/53902) +* npm errors with `npm error Exit handler never called!` [npm/cli#7657](https://github.com/npm/cli/issues/7657) +* yarn hangs or outputs `Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)` [yarnpkg/berry#6398](https://github.com/yarnpkg/berry/issues/6398) + +### Commits + +* \[[`e2deeedc6e`](https://github.com/nodejs/node/commit/e2deeedc6e)] - _**Revert**_ "**fs**: add v8 fast api to closeSync" (Aviv Keller) [#53904](https://github.com/nodejs/node/pull/53904) + ## 2024-07-16, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95 diff --git a/src/node_version.h b/src/node_version.h index 2ae5044a58620a..cdeba086374ad7 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)