From 089939bb97f299475bdf7c94e3156e8054d7fdd8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 20:20:41 +0100 Subject: [PATCH] Apply Version Updates From Current Changes (v1) (#12203) Co-authored-by: FabianLars --- .changes/enhance-resource-dir-linux.md | 5 ----- Cargo.lock | 14 +++++++------- core/tauri-build/CHANGELOG.md | 7 +++++++ core/tauri-build/Cargo.toml | 6 +++--- core/tauri-codegen/CHANGELOG.md | 6 ++++++ core/tauri-codegen/Cargo.toml | 4 ++-- core/tauri-macros/CHANGELOG.md | 7 +++++++ core/tauri-macros/Cargo.toml | 6 +++--- core/tauri-runtime-wry/CHANGELOG.md | 7 +++++++ core/tauri-runtime-wry/Cargo.toml | 6 +++--- core/tauri-runtime/CHANGELOG.md | 6 ++++++ core/tauri-runtime/Cargo.toml | 4 ++-- core/tauri-utils/CHANGELOG.md | 6 ++++++ core/tauri-utils/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 9 +++++++++ core/tauri/Cargo.toml | 10 +++++----- tooling/bundler/CHANGELOG.md | 6 ++++++ tooling/bundler/Cargo.toml | 4 ++-- tooling/cli/CHANGELOG.md | 7 +++++++ tooling/cli/Cargo.lock | 6 +++--- tooling/cli/Cargo.toml | 6 +++--- tooling/cli/metadata.json | 6 +++--- tooling/cli/node/CHANGELOG.md | 6 ++++++ tooling/cli/node/package.json | 2 +- 24 files changed, 105 insertions(+), 43 deletions(-) delete mode 100644 .changes/enhance-resource-dir-linux.md diff --git a/.changes/enhance-resource-dir-linux.md b/.changes/enhance-resource-dir-linux.md deleted file mode 100644 index c528bad12467..000000000000 --- a/.changes/enhance-resource-dir-linux.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-utils": patch:bug ---- - -Enhance resource directory resolution to support running on distros like NixOS. diff --git a/Cargo.lock b/Cargo.lock index e63889b8033e..77ddfd422f33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4055,7 +4055,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "1.8.1" +version = "1.8.2" dependencies = [ "anyhow", "base64 0.22.1", @@ -4132,7 +4132,7 @@ dependencies = [ [[package]] name = "tauri-build" -version = "1.5.5" +version = "1.5.6" dependencies = [ "anyhow", "cargo_toml", @@ -4151,7 +4151,7 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "1.4.5" +version = "1.4.6" dependencies = [ "base64 0.21.7", "brotli", @@ -4186,7 +4186,7 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "1.4.6" +version = "1.4.7" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -4198,7 +4198,7 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "0.14.5" +version = "0.14.6" dependencies = [ "gtk", "http", @@ -4217,7 +4217,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "0.14.10" +version = "0.14.11" dependencies = [ "arboard", "cocoa", @@ -4237,7 +4237,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "1.6.1" +version = "1.6.2" dependencies = [ "aes-gcm", "brotli", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 2d7b41760e31..67fe91fa507c 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.5.6] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` +- Upgraded to `tauri-codegen@1.4.6` + ## \[1.5.5] ### Bug Fixes diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index b5910d32bb89..64fbbd3c8589 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "1.5.5" +version = "1.5.6" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -23,8 +23,8 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } [dependencies] anyhow = "1" quote = { version = "1", optional = true } -tauri-codegen = { version = "1.4.5", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build", "resources" ] } +tauri-codegen = { version = "1.4.6", path = "../tauri-codegen", optional = true } +tauri-utils = { version = "1.6.2", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.15" serde = "1" serde_json = "1" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 0400393c3e62..7a313813edd1 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.4.6] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` + ## \[1.4.5] ### Enhancements diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 368945d85e9d..5d4412357ef4 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-codegen" -version = "1.4.5" +version = "1.4.6" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -19,7 +19,7 @@ proc-macro2 = "1" quote = "1" serde = { version = "1", features = [ "derive" ] } serde_json = "1" -tauri-utils = { version = "1.6.1", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "1.6.2", path = "../tauri-utils", features = [ "build" ] } thiserror = "1" walkdir = "2" brotli = { version = "7", optional = true } diff --git a/core/tauri-macros/CHANGELOG.md b/core/tauri-macros/CHANGELOG.md index 4a601cc3fb77..b5227c4f1587 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.4.7] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` +- Upgraded to `tauri-codegen@1.4.6` + ## \[1.4.6] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index c16292ef0998..2af0dbd5825e 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-macros" -version = "1.4.6" +version = "1.4.7" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "os", "filesystem", "web-programming" ] license = "Apache-2.0 OR MIT" @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] } quote = "1" syn = { version = "1", features = [ "full" ] } heck = "0.5" -tauri-codegen = { version = "1.4.5", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "1.6.1", path = "../tauri-utils" } +tauri-codegen = { version = "1.4.6", default-features = false, path = "../tauri-codegen" } +tauri-utils = { version = "1.6.2", path = "../tauri-utils" } [features] custom-protocol = [ ] diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index a072a6e38b05..574b4cb0b44b 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.14.11] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` +- Upgraded to `tauri-runtime@0.14.6` + ## \[0.14.10] ### Bug Fixes diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 14b05563e1d9..ec60bb321207 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.10" +version = "0.14.11" 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.10", default-features = false, features = [ "file-drop", "protocol" ] } -tauri-runtime = { version = "0.14.5", path = "../tauri-runtime" } -tauri-utils = { version = "1.6.1", path = "../tauri-utils" } +tauri-runtime = { version = "0.14.6", path = "../tauri-runtime" } +tauri-utils = { version = "1.6.2", 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 09eee204bc93..0b51a59781ca 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.14.6] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` + ## \[0.14.5] ### What's Changed diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index d88bbb3c33f2..73210e61319c 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime" -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" @@ -30,7 +30,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } serde = { version = "1", features = [ "derive" ] } serde_json = "1" thiserror = "1" -tauri-utils = { version = "1.6.1", path = "../tauri-utils" } +tauri-utils = { version = "1.6.2", path = "../tauri-utils" } uuid = { version = "1", features = [ "v4" ] } http = "0.2" http-range = "0.1" diff --git a/core/tauri-utils/CHANGELOG.md b/core/tauri-utils/CHANGELOG.md index 3800e4e209ae..f544f5cc97f0 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.6.2] + +### Bug Fixes + +- [`a3584c143`](https://www.github.com/tauri-apps/tauri/commit/a3584c143eab10b8fa47b82ecbd9032d839fd9de) ([#11960](https://www.github.com/tauri-apps/tauri/pull/11960) by [@MarielaSassi](https://www.github.com/tauri-apps/tauri/../../MarielaSassi)) Enhance resource directory resolution to support running on distros like NixOS. + ## \[1.6.1] ### New Features diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index d57b43e4a372..d2bec9cad336 100644 --- a/core/tauri-utils/Cargo.toml +++ b/core/tauri-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-utils" -version = "1.6.1" +version = "1.6.2" 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 2b8ea56c0634..9c9eca9f55cf 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[1.8.2] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` +- Upgraded to `tauri-runtime@0.14.6` +- Upgraded to `tauri-runtime-wry@0.14.11` +- Upgraded to `tauri-macros@1.4.7` + ## \[1.8.1] ### Bug Fixes diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index c702695ccc89..41b853d39606 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.8.1" +version = "1.8.2" [package.metadata.docs.rs] no-default-features = true @@ -62,10 +62,10 @@ url = { version = "2" } anyhow = "1.0" thiserror = "1.0" once_cell = "1" -tauri-runtime = { version = "0.14.5", path = "../tauri-runtime" } -tauri-macros = { version = "1.4.6", path = "../tauri-macros" } -tauri-utils = { version = "1.6.1", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.14.10", path = "../tauri-runtime-wry", optional = true } +tauri-runtime = { version = "0.14.6", path = "../tauri-runtime" } +tauri-macros = { version = "1.4.7", path = "../tauri-macros" } +tauri-utils = { version = "1.6.2", features = [ "resources" ], path = "../tauri-utils" } +tauri-runtime-wry = { version = "0.14.11", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = { version = "1", features = [ "serde" ] } serde_repr = "0.1" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index a5e5bce7f941..2fac4a8998c0 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.7.3] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` + ## \[1.7.2] ### Bug Fixes diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index b48f0932a0d6..afea833da6c8 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.7.2" +version = "1.7.3" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" @@ -17,7 +17,7 @@ rust-version = "1.71" exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ] [dependencies] -tauri-utils = { version = "1.6.1", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "1.6.2", path = "../../core/tauri-utils", features = [ "resources" ] } image = "0.25" flate2 = "1.0" anyhow = "1.0" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index 3ecc62e8b39d..ce91c050d6fc 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.6.5] + +### Dependencies + +- Upgraded to `tauri-utils@1.6.2` +- Upgraded to `tauri-bundler@1.7.3` + ## \[1.6.4] ### Bug Fixes diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index a0c646d8ec00..7b528c5d5a05 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4411,7 +4411,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri-bundler" -version = "1.7.2" +version = "1.7.3" dependencies = [ "anyhow", "ar", @@ -4452,7 +4452,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.6.4" +version = "1.6.5" dependencies = [ "anyhow", "axum", @@ -4527,7 +4527,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "1.6.1" +version = "1.6.2" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index c42893e640fd..2cb692c87fbc 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.6.4" +version = "1.6.5" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.71" @@ -42,7 +42,7 @@ path = "src/main.rs" clap_complete = "4" clap = { version = "4.4", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.7.2", path = "../bundler", default-features = false } +tauri-bundler = { version = "1.7.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.22" json-patch = "2" -tauri-utils = { version = "1.6.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "1.6.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } toml = "0.8" jsonschema = { version = "0.18", default-features = false } handlebars = "4.4" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 318e24638e3a..bcf63c10463a 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.6.4", + "version": "1.6.5", "node": ">= 10.0.0" }, - "tauri": "1.8.1", - "tauri-build": "1.5.5" + "tauri": "1.8.2", + "tauri-build": "1.5.6" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index a0bdf327d4a6..736e75b3875b 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.6.5] + +### Dependencies + +- Upgraded to `tauri-cli@1.6.5` + ## \[1.6.4] ### Dependencies diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 3f2447e2bf80..6a75d63cd631 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.6.4", + "version": "1.6.5", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",