chore(deps) Update Tauri Core (#2746)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
renovate[bot]
2021-10-13 10:02:35 -03:00
committed by GitHub
parent c446908dc5
commit c2a6e8d7e6
3 changed files with 8 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
---
"tauri": patch
---
The updater now expects signatures created with the latest CLI release.

View File

@@ -66,9 +66,9 @@ attohttpc = { version = "0.17", features = [ "json", "form" ] }
open = { version = "2.0", optional = true }
shared_child = { version = "0.3", optional = true }
os_pipe = { version = "0.9", optional = true }
rfd = { version = "0.5.0", features = [ "parent" ] }
rfd = { version = "0.5.1", features = [ "parent" ] }
raw-window-handle = "0.3.3"
minisign-verify = { version = "0.1", optional = true }
minisign-verify = { version = "0.2", optional = true }
os_info = { version = "3.0.7", optional = true }
futures-lite = "1.12"

View File

@@ -811,7 +811,7 @@ pub fn verify_signature(
file_buff.read_to_end(&mut data)?;
// Validate signature or bail out
public_key.verify(&data, &signature)?;
public_key.verify(&data, &signature, false)?;
Ok(true)
}