Update dependency node-gyp to v13 #28
No reviewers
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
good first issue
help wanted
invalid
javascript
question
wontfix
bug
duplicate
enhancement
help wanted
invalid
question
renovate: stop-updating
security
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: nomyo-ai/nomyo-js#28
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/node-gyp-13.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
^12.0.0→^13.0.0Release Notes
nodejs/node-gyp (node-gyp)
v13.0.0Compare Source
⚠ BREAKING CHANGES
node-gypnow supports node^22.22.2 || ^24.15.0 || >=26.0.0Features
Bug Fixes
Core
Miscellaneous
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate.
/oc investigate how the breaking changes of this package impact this app
The breaking change is significant. Here's the impact:
node-gypv13 requires Node.js^22.22.2 || ^24.15.0 || >=26.0.0Your app's
package.jsonat line 50 declares:This means your declared minimum Node.js version (14.17.0) is incompatible with
node-gypv13, which needs at least Node.js 22.22.2.Impact:
Build/install will fail on any Node.js < 22.22.2 — the
node-gyp buildcommand innative/won't run, andnode-gyp-build(the runtime loader) will fail to compile the native addon.The native addon (
nomyo-native—native/src/mlock.cc) providesmlock/munlock/secure-zerofor memory security. Without a successful build,native/index.jsfalls back tonull, and the JS layer degrades to pure-JS zeroing (less secure but still functional).Transitive deps (
nopt@10.0.0,proc-log@7.0.0,which@7.0.0) are all updated to match the new Node.js requirements and should work fine.Action needed: Update the
engines.nodefield inpackage.jsonto">=22.22.2"to align withnode-gypv13's minimum requirement.opencode session | forgejo run
/oc update the required files to match min deps for a safe merge
Done. Updated 3 files to align with
node-gypv13's minimum Node.js requirement (>=22.22.2):package.json—engines.node:>=14.17.0→>=22.22.2package-lock.json—engines.node:>=14.17.0→>=22.22.2README.md— Minimum:14.17+→22.22.2+, Recommended:18 LTS→22 LTSopencode session | forgejo run