Эх сурвалжийг харах

apply version updates (#9683)

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
github-actions[bot] 1 жил өмнө
parent
commit
07b6f9fa83

+ 0 - 5
.changes/bundler-nsis-tauri-utils.md

@@ -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.

+ 0 - 5
.changes/drop-nsis-applicationid.md

@@ -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.

+ 0 - 5
.changes/plugin-init-script-context.md

@@ -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.

+ 0 - 5
.changes/schemars-comp.md

@@ -1,5 +0,0 @@
----
-tauri-utils: "patch:bug"
----
-
-Fixes `schemars` compilation issue.

+ 7 - 7
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",

+ 7 - 0
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

+ 11 - 14
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" ]

+ 6 - 0
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

+ 15 - 19
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" ]

+ 7 - 0
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

+ 15 - 15
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 = [ ]

+ 7 - 0
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

+ 3 - 3
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"

+ 6 - 0
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

+ 18 - 18
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 = [ ]

+ 6 - 0
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

+ 1 - 1
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"

+ 13 - 0
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

+ 5 - 5
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"

+ 11 - 0
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

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "1.5.2"
+version = "1.5.3"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "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"

+ 7 - 0
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

+ 3 - 3
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",

+ 3 - 3
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"

+ 3 - 3
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"
 }

+ 6 - 0
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

+ 1 - 1
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",