From d94e2c104cbea56730469de66ff755f4c6c8eeeb Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Fri, 1 Sep 2023 10:27:28 -0500 Subject: [PATCH 1/3] pin Tauri dependencies to a minor version --- packages/cli/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/Cargo.toml b/packages/cli/Cargo.toml index a37798eee..65a05488d 100644 --- a/packages/cli/Cargo.toml +++ b/packages/cli/Cargo.toml @@ -78,8 +78,8 @@ toml_edit = "0.19.11" # dioxus-rsx = "0.0.1" # bundling -tauri-bundler = { version = "1.2", features = ["native-tls-vendored"] } -tauri-utils = "1.3" +tauri-bundler = { version = "=1.2.*", features = ["native-tls-vendored"] } +tauri-utils = "1.3.*" dioxus-autofmt = { workspace = true } dioxus-check = { workspace = true } From 71264b1ee3d0949e4d709b62ab02f522b2ed04ec Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Sat, 2 Sep 2023 18:28:44 -0500 Subject: [PATCH 2/3] bump bundler to "=1.3.*" --- packages/cli/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/Cargo.toml b/packages/cli/Cargo.toml index 65a05488d..b2beb2781 100644 --- a/packages/cli/Cargo.toml +++ b/packages/cli/Cargo.toml @@ -78,8 +78,8 @@ toml_edit = "0.19.11" # dioxus-rsx = "0.0.1" # bundling -tauri-bundler = { version = "=1.2.*", features = ["native-tls-vendored"] } -tauri-utils = "1.3.*" +tauri-bundler = { version = "=1.3.*", features = ["native-tls-vendored"] } +tauri-utils = "=1.4.*" dioxus-autofmt = { workspace = true } dioxus-check = { workspace = true } From bc94f36934a4444f4b19f283dfeae7ca4b171d82 Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Sun, 3 Sep 2023 13:36:56 -0500 Subject: [PATCH 3/3] restrict tauri bundler version to 1.3.0 only --- packages/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/Cargo.toml b/packages/cli/Cargo.toml index b2beb2781..29bc880f3 100644 --- a/packages/cli/Cargo.toml +++ b/packages/cli/Cargo.toml @@ -78,7 +78,7 @@ toml_edit = "0.19.11" # dioxus-rsx = "0.0.1" # bundling -tauri-bundler = { version = "=1.3.*", features = ["native-tls-vendored"] } +tauri-bundler = { version = "1.3.0", features = ["native-tls-vendored"] } tauri-utils = "=1.4.*" dioxus-autofmt = { workspace = true }