Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</tr>
<tr>
<td>
<a href="#24.19.0-2">24.19.0-2</a><br/>
<a href="#24.19.0-1">24.19.0-1</a><br/>
<a href="#24.19.0-0">24.19.0-0</a><br/>
<a href="#24.18.0-0">24.18.0-0</a><br/>
Expand Down Expand Up @@ -36,8 +37,15 @@
</tr>
</table>

<a id="24.19.0-2"></a>
## 2026-08-23, Version 24.19.0-2 (Current)

### Notable Changes

- **Fix:** Turn off [V8 pointer compression](https://blog.platformatic.dev/we-cut-nodejs-memory-in-half) for iOS -- it crashes the process. iOS does not allow the 8GB of memory reservation that v8 pointer compression requires, see https://github.com/digidem/nodejs-mobile/pull/8.

<a id="24.19.0-1"></a>
## 2026-08-21, Version 24.19.0-1 (Current)
## 2026-08-21, Version 24.19.0-1

### Notable Changes

Expand Down
2 changes: 1 addition & 1 deletion expected-tree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# run prepare.sh (or regenerate-patches.py, which prints the hash) and
# update the value below in the same commit. If you forget, CI fails and
# prints the hash it got.
7c521dbcac21b26079e185d32277373ffe081f5a
8dad26f6016a4ef21917fceb8d033696b0c9f2b7
2 changes: 1 addition & 1 deletion mobile-src/src/node_mobile_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Mobile rebuild revision of the same upstream Node version: the -R in the
// vX.Y.Z-R release tag. Computed and bumped by the Cut release workflow
// (docs/RELEASING.md on the recipe branch).
#define NODE_MOBILE_REVISION 1
#define NODE_MOBILE_REVISION 2

#define NODE_MOBILE_VERSION_IS_RELEASE NODE_VERSION_IS_RELEASE

Expand Down
Loading