Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tauri bundler for using proxy to fetch resources #1603

Merged
merged 1 commit into from
Jan 8, 2024
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
4 changes: 2 additions & 2 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ cargo-generate = "0.18"
toml_edit = "0.19.11"

# bundling
tauri-bundler = { version = "=1.3.0", features = ["native-tls-vendored"] }
tauri-utils = "=1.4.*"
tauri-bundler = { version = "=1.4.*", features = ["native-tls-vendored"] }
Copy link
Member

@ealmloff ealmloff Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can't allow minor version bumps of tauri-bundler because the crate doesn't follow semvar versioning. The version just matches the tauri version regardless of breaking changes

(See #1413 which was caused by this in the past)

tauri-utils = "=1.5.*"

dioxus-autofmt = { workspace = true }
dioxus-check = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ impl From<NsisSettings> for tauri_bundler::NsisSettings {
display_language_selector: val.display_language_selector,
custom_language_files: None,
template: None,
compression: None,
}
}
}
Expand Down
Loading