diff --git a/.changes/bundler-nsis-tauri-utils.md b/.changes/bundler-nsis-tauri-utils.md deleted file mode 100644 index 27fd690eccc..00000000000 --- a/.changes/bundler-nsis-tauri-utils.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tauri-bundler': 'patch:enhance' ---- - -Update `nsis_tauri_utils` plugin to `0.3` and use the built-in NSIS download plugin, which reduces the NSIS installer size by 775kb. diff --git a/.changes/drop-nsis-applicationid.md b/.changes/drop-nsis-applicationid.md deleted file mode 100644 index 55be7e96ca1..00000000000 --- a/.changes/drop-nsis-applicationid.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tauri-bundler': 'patch:enhance' ---- - -Use nsis's built-in COM plugin instead of `ApplicationID` plugin, this reduces the installer size by 100 KB, and also fixes pinned shortcut not getting cleaned up on uninstall. diff --git a/.changes/plugin-init-script-context.md b/.changes/plugin-init-script-context.md deleted file mode 100644 index ba3f59bd394..00000000000 --- a/.changes/plugin-init-script-context.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch:enhance ---- - -Run each plugin initialization script on its own context so they do not interfere with each other or the Tauri init script. diff --git a/.changes/schemars-comp.md b/.changes/schemars-comp.md deleted file mode 100644 index 6abcf7225d6..00000000000 --- a/.changes/schemars-comp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -tauri-utils: "patch:bug" ---- - -Fixes `schemars` compilation issue. diff --git a/Cargo.lock b/Cargo.lock index 17fbef24509..a1871967bc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4021,7 +4021,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "1.6.2" +version = "1.6.3" dependencies = [ "anyhow", "base64 0.21.7", @@ -4095,7 +4095,7 @@ dependencies = [ [[package]] name = "tauri-build" -version = "1.5.1" +version = "1.5.2" dependencies = [ "anyhow", "cargo_toml 0.15.2", @@ -4114,7 +4114,7 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "1.4.2" +version = "1.4.3" dependencies = [ "base64 0.21.7", "brotli", @@ -4149,7 +4149,7 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "1.4.3" +version = "1.4.4" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -4161,7 +4161,7 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "0.14.2" +version = "0.14.3" dependencies = [ "gtk", "http", @@ -4180,7 +4180,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "0.14.5" +version = "0.14.6" dependencies = [ "arboard", "cocoa", @@ -4200,7 +4200,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "1.5.3" +version = "1.5.4" dependencies = [ "aes-gcm", "brotli", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 87c135252d2..e2a04095bc7 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.5.2] + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` +- Upgraded to `tauri-codegen@1.4.3` + ## \[1.5.1] ### Dependencies diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 4eb1b2f60dc..33676ed39a3 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,29 +1,26 @@ [package] name = "tauri-build" -version = "1.5.1" -authors = ["Tauri Programme within The Commons Conservancy"] -categories = ["gui", "web-programming"] +version = "1.5.2" +authors = [ "Tauri Programme within The Commons Conservancy" ] +categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build" description = "build time code to pair with https://crates.io/crates/tauri" edition = "2021" rust-version = "1.60" -exclude = ["CHANGELOG.md", "/target"] +exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "doc_cfg"] +rustdoc-args = [ "--cfg", "doc_cfg" ] [dependencies] anyhow = "1" quote = { version = "1", optional = true } -tauri-codegen = { version = "1.4.2", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "1.5.3", path = "../tauri-utils", features = [ - "build", - "resources", -] } +tauri-codegen = { version = "1.4.3", path = "../tauri-codegen", optional = true } +tauri-utils = { version = "1.5.4", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.15" serde = "1" serde_json = "1" @@ -35,7 +32,7 @@ walkdir = "2" dirs-next = "2" [features] -codegen = ["tauri-codegen", "quote"] -isolation = ["tauri-codegen/isolation", "tauri-utils/isolation"] -config-json5 = ["tauri-utils/config-json5"] -config-toml = ["tauri-utils/config-toml"] +codegen = [ "tauri-codegen", "quote" ] +isolation = [ "tauri-codegen/isolation", "tauri-utils/isolation" ] +config-json5 = [ "tauri-utils/config-json5" ] +config-toml = [ "tauri-utils/config-toml" ] diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 01e4d2aea11..d45e4993f29 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.4.3] + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` + ## \[1.4.2] ### Dependencies diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 7c4b32a1bbb..a8912c6f8fd 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "tauri-codegen" -version = "1.4.2" -authors = ["Tauri Programme within The Commons Conservancy"] -categories = ["gui", "web-programming"] +version = "1.4.3" +authors = [ "Tauri Programme within The Commons Conservancy" ] +categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen" description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`" edition = "2021" rust-version = "1.60" -exclude = ["CHANGELOG.md", "/target"] +exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" [dependencies] @@ -17,18 +17,14 @@ sha2 = "0.10" base64 = "0.21" proc-macro2 = "1" quote = "1" -serde = { version = "1", features = ["derive"] } +serde = { version = "1", features = [ "derive" ] } serde_json = "1" -tauri-utils = { version = "1.5.3", path = "../tauri-utils", features = [ - "build", -] } +tauri-utils = { version = "1.5.4", path = "../tauri-utils", features = [ "build" ] } thiserror = "1" walkdir = "2" -brotli = { version = "3", optional = true, default-features = false, features = [ - "std", -] } +brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] } regex = { version = "1", optional = true } -uuid = { version = "1", features = ["v4"] } +uuid = { version = "1", features = [ "v4" ] } semver = "1" ico = "0.3" png = "0.17" @@ -36,12 +32,12 @@ json-patch = "1.2" [target."cfg(target_os = \"macos\")".dependencies] plist = "1" -time = { version = "0.3", features = ["parsing", "formatting"] } +time = { version = "0.3", features = [ "parsing", "formatting" ] } [features] -default = ["compression"] -compression = ["brotli", "tauri-utils/compression"] -isolation = ["tauri-utils/isolation"] -shell-scope = ["regex"] -config-json5 = ["tauri-utils/config-json5"] -config-toml = ["tauri-utils/config-toml"] +default = [ "compression" ] +compression = [ "brotli", "tauri-utils/compression" ] +isolation = [ "tauri-utils/isolation" ] +shell-scope = [ "regex" ] +config-json5 = [ "tauri-utils/config-json5" ] +config-toml = [ "tauri-utils/config-toml" ] diff --git a/core/tauri-macros/CHANGELOG.md b/core/tauri-macros/CHANGELOG.md index 37bb78c0ee8..fbbcdbd6af7 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.4.4] + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` +- Upgraded to `tauri-codegen@1.4.3` + ## \[1.4.3] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index b411bbd5db9..93272710096 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -1,33 +1,33 @@ [package] name = "tauri-macros" -version = "1.4.3" -authors = ["Tauri Programme within The Commons Conservancy"] -categories = ["gui", "os", "filesystem", "web-programming"] +version = "1.4.4" +authors = [ "Tauri Programme within The Commons Conservancy" ] +categories = [ "gui", "os", "filesystem", "web-programming" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" repository = "https://github.com/tauri-apps/tauri" description = "Macros for the tauri crate." edition = "2021" rust-version = "1.60" -exclude = ["CHANGELOG.md", "/target"] +exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" [lib] proc-macro = true [dependencies] -proc-macro2 = { version = "1", features = ["span-locations"] } +proc-macro2 = { version = "1", features = [ "span-locations" ] } quote = "1" -syn = { version = "1", features = ["full"] } +syn = { version = "1", features = [ "full" ] } heck = "0.5" -tauri-codegen = { version = "1.4.2", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "1.5.3", path = "../tauri-utils" } +tauri-codegen = { version = "1.4.3", default-features = false, path = "../tauri-codegen" } +tauri-utils = { version = "1.5.4", path = "../tauri-utils" } [features] -custom-protocol = [] -compression = ["tauri-codegen/compression"] -isolation = ["tauri-codegen/isolation"] -shell-scope = ["tauri-codegen/shell-scope"] -config-json5 = ["tauri-codegen/config-json5", "tauri-utils/config-json5"] -config-toml = ["tauri-codegen/config-toml", "tauri-utils/config-toml"] -tracing = [] +custom-protocol = [ ] +compression = [ "tauri-codegen/compression" ] +isolation = [ "tauri-codegen/isolation" ] +shell-scope = [ "tauri-codegen/shell-scope" ] +config-json5 = [ "tauri-codegen/config-json5", "tauri-utils/config-json5" ] +config-toml = [ "tauri-codegen/config-toml", "tauri-utils/config-toml" ] +tracing = [ ] diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 42be6b83969..49796dbcee6 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.14.6] + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` +- Upgraded to `tauri-runtime@0.14.3` + ## \[0.14.5] ### What's Changed diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index a8b0be0a679..fd19b2a3940 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime-wry" -version = "0.14.5" +version = "0.14.6" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -14,8 +14,8 @@ readme = "README.md" [dependencies] wry = { version = "0.24.6", default-features = false, features = [ "file-drop", "protocol" ] } -tauri-runtime = { version = "0.14.2", path = "../tauri-runtime" } -tauri-utils = { version = "1.5.3", path = "../tauri-utils" } +tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" } +tauri-utils = { version = "1.5.4", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } rand = "0.8" raw-window-handle = "0.5" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index 67575f822ea..0f18ca24fe8 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.14.3] + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` + ## \[0.14.2] ### Dependencies diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 153d9016991..07edf6d56b8 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,33 +1,33 @@ [package] name = "tauri-runtime" -version = "0.14.2" -authors = ["Tauri Programme within The Commons Conservancy"] -categories = ["gui", "web-programming"] +version = "0.14.3" +authors = [ "Tauri Programme within The Commons Conservancy" ] +categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" repository = "https://github.com/tauri-apps/tauri" description = "Runtime for Tauri applications" edition = "2021" rust-version = "1.60" -exclude = ["CHANGELOG.md", "/target"] +exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "doc_cfg"] +rustdoc-args = [ "--cfg", "doc_cfg" ] default-target = "x86_64-unknown-linux-gnu" targets = [ "x86_64-pc-windows-msvc", "x86_64-unknown-linux-gnu", - "x86_64-apple-darwin", + "x86_64-apple-darwin" ] [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0", features = [ "derive" ] } serde_json = "1.0" thiserror = "1.0" -tauri-utils = { version = "1.5.3", path = "../tauri-utils" } -uuid = { version = "1", features = ["v4"] } +tauri-utils = { version = "1.5.4", path = "../tauri-utils" } +uuid = { version = "1", features = [ "v4" ] } http = "0.2.4" http-range = "0.1.4" raw-window-handle = "0.5" @@ -37,16 +37,16 @@ url = { version = "2" } [target."cfg(windows)".dependencies] webview2-com = "0.19.1" -[target."cfg(windows)".dependencies.windows] -version = "0.39.0" -features = ["Win32_Foundation"] + [target."cfg(windows)".dependencies.windows] + version = "0.39.0" + features = [ "Win32_Foundation" ] [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] -gtk = { version = "0.15", features = ["v3_20"] } +gtk = { version = "0.15", features = [ "v3_20" ] } [features] -devtools = [] -system-tray = [] -macos-private-api = [] -global-shortcut = [] -clipboard = [] +devtools = [ ] +system-tray = [ ] +macos-private-api = [ ] +global-shortcut = [ ] +clipboard = [ ] diff --git a/core/tauri-utils/CHANGELOG.md b/core/tauri-utils/CHANGELOG.md index 6b60f44fbe6..58794ae82e8 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.4] + +### Bug Fixes + +- [`5ee5ed4dc`](https://www.github.com/tauri-apps/tauri/commit/5ee5ed4dc668aa8b60741b57ffe616a5a7aefd88)([#9680](https://www.github.com/tauri-apps/tauri/pull/9680)) Fixes `schemars` compilation issue. + ## \[1.5.3] ### New features diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index 32f7a8d8244..d0aa20daf8f 100644 --- a/core/tauri-utils/Cargo.toml +++ b/core/tauri-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-utils" -version = "1.5.3" +version = "1.5.4" authors = [ "Tauri Programme within The Commons Conservancy" ] license = "Apache-2.0 OR MIT" homepage = "https://tauri.app" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 5d5418ffaf5..642b9405575 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## \[1.6.3] + +### Enhancements + +- [`3e98145ac`](https://www.github.com/tauri-apps/tauri/commit/3e98145ac3f45d37230661e136e4afc08b072285)([#9570](https://www.github.com/tauri-apps/tauri/pull/9570)) Run each plugin initialization script on its own context so they do not interfere with each other or the Tauri init script. + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` +- Upgraded to `tauri-runtime@0.14.3` +- Upgraded to `tauri-runtime-wry@0.14.6` +- Upgraded to `tauri-macros@1.4.4` + ## \[1.6.2] ### Bug Fixes diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 3d4c626b4b7..35ccded9c7c 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.6.2" +version = "1.6.3" [package.metadata.docs.rs] no-default-features = true @@ -58,10 +58,10 @@ url = { version = "2.3" } anyhow = "1.0" thiserror = "1.0" once_cell = "1" -tauri-runtime = { version = "0.14.2", path = "../tauri-runtime" } -tauri-macros = { version = "1.4.3", path = "../tauri-macros" } -tauri-utils = { version = "1.5.3", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.14.5", path = "../tauri-runtime-wry", optional = true } +tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" } +tauri-macros = { version = "1.4.4", path = "../tauri-macros" } +tauri-utils = { version = "1.5.4", features = [ "resources" ], path = "../tauri-utils" } +tauri-runtime-wry = { version = "0.14.6", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = { version = "1.0", features = [ "serde" ] } serde_repr = "0.1" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 4782b5574f7..1f3f57a2d80 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[1.5.3] + +### Enhancements + +- [`0749a84ae`](https://www.github.com/tauri-apps/tauri/commit/0749a84ae057365657222db3b55c05d758297c2e)([#9605](https://www.github.com/tauri-apps/tauri/pull/9605)) Update `nsis_tauri_utils` plugin to `0.3` and use the built-in NSIS download plugin, which reduces the NSIS installer size by 775kb. +- [`b8fd8e1ba`](https://www.github.com/tauri-apps/tauri/commit/b8fd8e1baceb1bd43c3e065b43de496da515dc60)([#9606](https://www.github.com/tauri-apps/tauri/pull/9606)) Use nsis's built-in COM plugin instead of `ApplicationID` plugin, this reduces the installer size by 100 KB, and also fixes pinned shortcut not getting cleaned up on uninstall. + +### Dependencies + +- Upgraded to `tauri-utils@1.5.4` + ## \[1.5.2] ### Bug Fixes diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 2a200d3d7bd..4dcc69886db 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.5.2" +version = "1.5.3" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" @@ -17,7 +17,7 @@ rust-version = "1.60" exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ] [dependencies] -tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "1.5.4", path = "../../core/tauri-utils", features = [ "resources" ] } image = "0.24.7" flate2 = "1.0" anyhow = "1.0" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index 91d119adbe1..ca78ffd4f28 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.5.13] + +### Dependencies + +- Upgraded to `tauri-bundler@1.5.3` +- Upgraded to `tauri-utils@1.5.4` + ## \[1.5.12] ### Bug Fixes diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 18f522e2375..9c65993094f 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -3349,7 +3349,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "1.5.2" +version = "1.5.3" dependencies = [ "anyhow", "ar", @@ -3389,7 +3389,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.5.12" +version = "1.5.13" dependencies = [ "anyhow", "axum", @@ -3463,7 +3463,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "1.5.3" +version = "1.5.4" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index eb4ea1d090a..70260416722 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.5.12" +version = "1.5.13" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.70" @@ -42,7 +42,7 @@ path = "src/main.rs" clap_complete = "4" clap = { version = "4.4", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.5.2", path = "../bundler", default-features = false } +tauri-bundler = { version = "1.5.3", path = "../bundler", default-features = false } colored = "2.0" once_cell = "1" serde = { version = "1.0", features = [ "derive" ] } @@ -52,7 +52,7 @@ notify-debouncer-mini = "0.4" shared_child = "1.0" toml_edit = "0.21" json-patch = "1.2" -tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "1.5.4", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } toml = "0.8" jsonschema = "0.17" handlebars = "4.4" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 0682627ea83..450c09f475a 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.5.12", + "version": "1.5.13", "node": ">= 10.0.0" }, - "tauri": "1.6.2", - "tauri-build": "1.5.1" + "tauri": "1.6.3", + "tauri-build": "1.5.2" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index 7945d0bd93a..0910d863d30 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.13] + +### Dependencies + +- Upgraded to `tauri-cli@1.5.13` + ## \[1.5.12] ### Bug Fixes diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 6b51d5f022d..efc45f561e8 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.5.12", + "version": "1.5.13", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",