chore(deps): group NAPI Cargo updates - #352
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change is a small, valid Dependabot grouping update that applies cleanly across the existing Cargo directories without altering schedules or other behavior.
Pull request overview
This PR updates Dependabot configuration to ensure napi and related napi-* Cargo dependencies are grouped into a single Dependabot PR, preventing split updates between the NAPI runtime and derive/macro crates across the repo’s Cargo workspaces.
Changes:
- Add a new
napiDependabot group with patternsnapiandnapi-*under the Cargo ecosystem updates. - Apply the grouping across both configured Cargo directories via the existing
directories:list.
File summaries
| File | Description |
|---|---|
| .github/dependabot.yml | Adds a napi grouping alongside the existing hyperlight group for Cargo Dependabot updates. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Group napi and napi-* version updates across the existing Cargo directories so runtime and derive crates are updated together. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
simongdavies
force-pushed
the
simongdavies-ci-failure-investigation
branch
from
September 7, 2026 19:09
a0f758d to
a162e4c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Group
napiandnapi-*Cargo dependency updates into a single Dependabot PR, following the existinghyperlight-*grouping. The group applies across both configured Cargo directories; schedules, cooldowns, and existing groups are unchanged.Motivation
PR #313 updated
napi-deriveandnapi-derive-backendwhile leavingnapiat 3.12.0. The newer generated bindings requireNativeBorrowBarrierandNativeBorrowScopefrom a newer runtime, causing compilation failures across CI. Updating the runtime and macro crates together avoids that split-update mismatch.The immediate lockfile fix is being handled separately in #313; this PR changes only
.github/dependabot.yml.Validation
git diff --checkpassed.just check; native prerequisites fail on Windows with linker error LNK1104 while creating thehyperlight_surrogatebuild-script executable under the long worktree target path. Stopped the remaining build after the prerequisite failures; the full quality gate could not complete locally.