Skip to content

Commit c2a6e8d

Browse files
renovate[bot]renovate-botlucasfernog
authored
chore(deps) Update Tauri Core (#2746)
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
1 parent c446908 commit c2a6e8d

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.changes/misign-update.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": patch
3+
---
4+
5+
The updater now expects signatures created with the latest CLI release.

core/tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ attohttpc = { version = "0.17", features = [ "json", "form" ] }
6666
open = { version = "2.0", optional = true }
6767
shared_child = { version = "0.3", optional = true }
6868
os_pipe = { version = "0.9", optional = true }
69-
rfd = { version = "0.5.0", features = [ "parent" ] }
69+
rfd = { version = "0.5.1", features = [ "parent" ] }
7070
raw-window-handle = "0.3.3"
71-
minisign-verify = { version = "0.1", optional = true }
71+
minisign-verify = { version = "0.2", optional = true }
7272
os_info = { version = "3.0.7", optional = true }
7373
futures-lite = "1.12"
7474

core/tauri/src/updater/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ pub fn verify_signature(
811811
file_buff.read_to_end(&mut data)?;
812812

813813
// Validate signature or bail out
814-
public_key.verify(&data, &signature)?;
814+
public_key.verify(&data, &signature, false)?;
815815
Ok(true)
816816
}
817817

0 commit comments

Comments
 (0)