fix(staged): bump @tauri-apps/plugin-dialog to ^2.7.0#797
Open
logan-primary-vc wants to merge 1 commit into
Open
fix(staged): bump @tauri-apps/plugin-dialog to ^2.7.0#797logan-primary-vc wants to merge 1 commit into
logan-primary-vc wants to merge 1 commit into
Conversation
The Rust crate tauri-plugin-dialog resolves to 2.7.0, but the NPM package was pinned at ^2.6.0. Tauri's build rejects mismatched major/minor versions across the Rust and JS sides of a plugin, causing `install.sh` and `just app staged build` to fail. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: logan-primary-vc <logan@primary.vc>
0fc6045 to
456d7d2
Compare
Author
VerificationTested the full Without this fix — build fails immediately: With this fix — build completes and produces both The installed app launches and runs correctly. |
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
@tauri-apps/plugin-dialogfrom^2.6.0to^2.7.0inapps/staged/package.jsonto match the Rust crate version (2.7.0)pnpm-lock.yamlaccordinglyFixes #796
Context
The Rust side specifies
tauri-plugin-dialog = "2"which resolves to 2.7.0, but the NPM side was pinned at^2.6.0. Tauri rejects builds when the Rust and JS plugin versions don't share the same minor version, breaking bothinstall.shandjust app staged build.Test plan
install.shcurl install completes build and bundling successfullyjust app staged buildcompletes successfullyStaged.applaunches correctlyEnvironment