Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c3ea3a2

Browse files
fix(windows): relax UpdaterWindowsConfig to not deny unknowns fields (#9126)
1 parent db0a24a commit c3ea3a2

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri-cli": patch:bug
3+
"@tauri-apps/cli": patch:bug
4+
---
5+
6+
Fix bundling when `plugins > updater > windows > installerArgs` are set in `tauri.conf.json`

tooling/cli/src/interface/rust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ impl WindowsUpdateInstallMode {
776776
}
777777

778778
#[derive(Default, Deserialize)]
779-
#[serde(rename_all = "camelCase", deny_unknown_fields)]
779+
#[serde(rename_all = "camelCase")]
780780
pub struct UpdaterWindowsConfig {
781781
#[serde(default, alias = "install-mode")]
782782
pub install_mode: WindowsUpdateInstallMode,

0 commit comments

Comments
 (0)