From 83e4abdb52486f24a96c6e27d24e98c8b35d47bb Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 28 Oct 2025 18:14:01 +0000 Subject: [PATCH 1/2] doc: add known issue to v24.11.0 release notes --- doc/changelogs/CHANGELOG_V24.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/changelogs/CHANGELOG_V24.md b/doc/changelogs/CHANGELOG_V24.md index 263f79817808a3..f235454ee00438 100644 --- a/doc/changelogs/CHANGELOG_V24.md +++ b/doc/changelogs/CHANGELOG_V24.md @@ -70,6 +70,10 @@ the end of April 2028. Other than updating metadata, such as the `process.release` object, to reflect that the release is LTS, no further changes from Node.js 24.10.0 are included. +### Known issue + +An issue has been identified in the Node.js 24.x line with `Buffer.allocUnsafe` unintentionally returning zero-filled buffers. This API is [documented to return uninitialized memory](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize). The documented behavior will be restored in the next Node.js 24.x LTS release to bring it back in line with previous releases. For more information, see [#60423](https://github.com/nodejs/node/issues/60423). + ## 2025-10-08, Version 24.10.0 (Current), @RafaelGSS From dae3db36542f900becb7b6ad2a884d48a73fbe6d Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 28 Oct 2025 19:08:31 +0000 Subject: [PATCH 2/2] fixup! doc: add known issue to v24.11.0 release notes Co-authored-by: Antoine du Hamel --- doc/changelogs/CHANGELOG_V24.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/changelogs/CHANGELOG_V24.md b/doc/changelogs/CHANGELOG_V24.md index f235454ee00438..84df3556e1b69f 100644 --- a/doc/changelogs/CHANGELOG_V24.md +++ b/doc/changelogs/CHANGELOG_V24.md @@ -72,7 +72,12 @@ that the release is LTS, no further changes from Node.js 24.10.0 are included. ### Known issue -An issue has been identified in the Node.js 24.x line with `Buffer.allocUnsafe` unintentionally returning zero-filled buffers. This API is [documented to return uninitialized memory](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize). The documented behavior will be restored in the next Node.js 24.x LTS release to bring it back in line with previous releases. For more information, see [#60423](https://github.com/nodejs/node/issues/60423). +An issue has been identified in the Node.js 24.x line with `Buffer.allocUnsafe` +unintentionally returning zero-filled buffers. This API is +[documented to return uninitialized memory](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize). +The documented behavior will be restored in the next Node.js 24.x LTS release to bring +it back in line with previous releases. For more information, see +[#60423](https://github.com/nodejs/node/issues/60423).