Просмотр исходного кода

Apply Version Updates From Current Changes (#8918)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 1 год назад
Родитель
Сommit
af646520cf

+ 4 - 0
.changes/pre.json

@@ -16,6 +16,7 @@
     ".changes/context-runtime-authority.md",
     ".changes/core-center-window.md",
     ".changes/core-js-event-anytarget.md",
+    ".changes/core-once-event-return-event-id.md",
     ".changes/downgrade-minisign.md",
     ".changes/enhance-resource-dir-resolution.md",
     ".changes/fix-capability-schema-definitions.md",
@@ -30,8 +31,11 @@
     ".changes/fix-webview-close.md",
     ".changes/handle-empty-permissions.md",
     ".changes/inline-plugins.md",
+    ".changes/ios-signing-optional.md",
+    ".changes/progress-bar-state-refactor.md",
     ".changes/refactor-capabilities-schema.md",
     ".changes/refactor-capability-remote-option.md",
+    ".changes/remove-unit-uri.md",
     ".changes/rerun-if-permission-created.md",
     ".changes/runtime-add-capability.md",
     ".changes/rwh-06.md",

+ 8 - 8
Cargo.lock

@@ -3616,7 +3616,7 @@ checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
 
 [[package]]
 name = "tauri"
-version = "2.0.0-beta.3"
+version = "2.0.0-beta.4"
 dependencies = [
  "anyhow",
  "bytes",
@@ -3674,7 +3674,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-build"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "anyhow",
  "cargo_toml",
@@ -3696,7 +3696,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-codegen"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "base64",
  "brotli",
@@ -3733,7 +3733,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-macros"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "heck",
  "proc-macro2",
@@ -3745,7 +3745,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-plugin"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "anyhow",
  "glob",
@@ -3760,7 +3760,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-runtime"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "gtk",
  "http",
@@ -3776,7 +3776,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-runtime-wry"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "cocoa",
  "gtk",
@@ -3797,7 +3797,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "aes-gcm",
  "brotli",

+ 7 - 0
core/tauri-build/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+- Upgraded to `tauri-codegen@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 3 - 3
core/tauri-build/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "build time code to pair with https://crates.io/crates/tauri"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ]
 [dependencies]
 anyhow = "1"
 quote = { version = "1", optional = true }
-tauri-codegen = { version = "2.0.0-beta.2", path = "../tauri-codegen", optional = true }
-tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils", features = [ "build", "resources" ] }
+tauri-codegen = { version = "2.0.0-beta.3", path = "../tauri-codegen", optional = true }
+tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils", features = [ "build", "resources" ] }
 cargo_toml = "0.17"
 serde = "1"
 serde_json = "1"

+ 6 - 0
core/tauri-codegen/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 2 - 2
core/tauri-codegen/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-codegen"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -20,7 +20,7 @@ quote = "1"
 syn = "2"
 serde = { version = "1", features = [ "derive" ] }
 serde_json = "1"
-tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils", features = [ "build" ] }
+tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils", features = [ "build" ] }
 thiserror = "1"
 walkdir = "2"
 brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

+ 7 - 0
core/tauri-macros/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+- Upgraded to `tauri-codegen@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 3 - 3
core/tauri-macros/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macros"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "Macros for the tauri crate."
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
 quote = "1"
 syn = { version = "2", features = [ "full" ] }
 heck = "0.4"
-tauri-codegen = { version = "2.0.0-beta.2", default-features = false, path = "../tauri-codegen" }
-tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }
+tauri-codegen = { version = "2.0.0-beta.3", default-features = false, path = "../tauri-codegen" }
+tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils" }
 
 [features]
 custom-protocol = [ ]

+ 6 - 0
core/tauri-plugin/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 2 - 2
core/tauri-plugin/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-plugin"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "Build script and runtime Tauri plugin definitions"
 authors = { workspace = true }
 homepage = { workspace = true }
@@ -30,7 +30,7 @@ runtime = [ ]
 [dependencies]
 anyhow = { version = "1", optional = true }
 serde = { version = "1", optional = true }
-tauri-utils = { version = "2.0.0-beta.2", default-features = false, path = "../tauri-utils" }
+tauri-utils = { version = "2.0.0-beta.3", default-features = false, path = "../tauri-utils" }
 serde_json = { version = "1", optional = true }
 glob = { version = "0.3", optional = true }
 toml = { version = "0.8", optional = true }

+ 7 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+- Upgraded to `tauri-runtime@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### What's Changed

+ 3 - 3
core/tauri-runtime-wry/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "Wry bindings to the Tauri runtime"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -15,8 +15,8 @@ rust-version = { workspace = true }
 [dependencies]
 wry = { version = "0.36", default-features = false, features = [ "file-drop", "protocol", "os-webview" ] }
 tao = { version = "0.26", default-features = false, features = [ "rwh_06" ] }
-tauri-runtime = { version = "2.0.0-beta.2", path = "../tauri-runtime" }
-tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }
+tauri-runtime = { version = "2.0.0-beta.3", path = "../tauri-runtime" }
+tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils" }
 raw-window-handle = "0.6"
 http = "0.2"
 tracing = { version = "0.1", optional = true }

+ 6 - 0
core/tauri-runtime/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### What's Changed

+ 2 - 2
core/tauri-runtime/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "Runtime for Tauri applications"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -29,7 +29,7 @@ targets = [
 serde = { version = "1.0", features = [ "derive" ] }
 serde_json = "1.0"
 thiserror = "1.0"
-tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }
+tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils" }
 http = "0.2.4"
 raw-window-handle = "0.6"
 url = { version = "2" }

+ 6 - 0
core/tauri-utils/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Breaking Changes
+
+- [`361ec37f`](https://www.github.com/tauri-apps/tauri/commit/361ec37fd4a5caa5b6630b9563ef079f53c6c336)([#8932](https://www.github.com/tauri-apps/tauri/pull/8932)) Moved `ProgressBarState` from `tauri-utils` to the `tauri::window` module and removed the `unity_uri` field.
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 1 - 1
core/tauri-utils/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-utils"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 description = "Utilities for Tauri"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"

+ 18 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,23 @@
 # Changelog
 
+## \[2.0.0-beta.4]
+
+### Enhancements
+
+- [`3fb414b6`](https://www.github.com/tauri-apps/tauri/commit/3fb414b61ad7cfce67751230826fddfb39effec5)([#8914](https://www.github.com/tauri-apps/tauri/pull/8914)) Return an id when using from `Manager::once_any`, `App::once`, `Window::once`, `Webview::once`, `WebviewWindow::once` and `fs::Scope::once`.
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+- Upgraded to `tauri-runtime@2.0.0-beta.3`
+- Upgraded to `tauri-runtime-wry@2.0.0-beta.3`
+- Upgraded to `tauri-macros@2.0.0-beta.3`
+- Upgraded to `tauri-build@2.0.0-beta.3`
+
+### Breaking Changes
+
+- [`361ec37f`](https://www.github.com/tauri-apps/tauri/commit/361ec37fd4a5caa5b6630b9563ef079f53c6c336)([#8932](https://www.github.com/tauri-apps/tauri/pull/8932)) Moved `ProgressBarState` from `tauri-utils` to the `tauri::window` module and removed the `unity_uri` field.
+
 ## \[2.0.0-beta.3]
 
 ### New Features

+ 7 - 7
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "2.0.0-beta.3"
+version = "2.0.0-beta.4"
 description = "Make tiny, secure apps for all desktop platforms with Tauri"
 exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -50,10 +50,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
 url = { version = "2.4" }
 anyhow = "1.0"
 thiserror = "1.0"
-tauri-runtime = { version = "2.0.0-beta.2", path = "../tauri-runtime" }
-tauri-macros = { version = "2.0.0-beta.2", path = "../tauri-macros" }
-tauri-utils = { version = "2.0.0-beta.2", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "2.0.0-beta.2", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime = { version = "2.0.0-beta.3", path = "../tauri-runtime" }
+tauri-macros = { version = "2.0.0-beta.3", path = "../tauri-macros" }
+tauri-utils = { version = "2.0.0-beta.3", features = [ "resources" ], path = "../tauri-utils" }
+tauri-runtime-wry = { version = "2.0.0-beta.3", path = "../tauri-runtime-wry", optional = true }
 getrandom = "0.2"
 serde_repr = "0.1"
 state = "0.6"
@@ -111,8 +111,8 @@ swift-rs = "1.0.6"
 
 [build-dependencies]
 heck = "0.4"
-tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.2" }
-tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.2", features = [ "build" ] }
+tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.3" }
+tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.3", features = [ "build" ] }
 
 [dev-dependencies]
 proptest = "1.4.0"

+ 6 - 0
tooling/api/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.2]
+
+### Breaking Changes
+
+- [`361ec37f`](https://www.github.com/tauri-apps/tauri/commit/361ec37fd4a5caa5b6630b9563ef079f53c6c336)([#8932](https://www.github.com/tauri-apps/tauri/pull/8932)) Removed the `unityUri` option from the progress bar state, no longer required.
+
 ## \[2.0.0-beta.1]
 
 ### New Features

+ 1 - 1
tooling/api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/api",
-  "version": "2.0.0-beta.1",
+  "version": "2.0.0-beta.2",
   "description": "Tauri API definitions",
   "funding": {
     "type": "opencollective",

+ 6 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Dependencies

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy"
@@ -17,7 +17,7 @@ rust-version = "1.70"
 exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
 
 [dependencies]
-tauri-utils = { version = "2.0.0-beta.2", path = "../../core/tauri-utils", features = [ "resources" ] }
+tauri-utils = { version = "2.0.0-beta.3", path = "../../core/tauri-utils", features = [ "resources" ] }
 image = "0.24.7"
 flate2 = "1.0"
 anyhow = "1.0"

+ 11 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Enhancements
+
+- [`a029b9f7`](https://www.github.com/tauri-apps/tauri/commit/a029b9f77e432533a403c292940fa3efba68692c)([#8910](https://www.github.com/tauri-apps/tauri/pull/8910)) Setting up code signing is no longer required on iOS when using the simulator.
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-beta.3`
+- Upgraded to `tauri-bundler@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 5 - 5
tooling/cli/Cargo.lock

@@ -4639,7 +4639,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "anyhow",
  "ar",
@@ -4667,7 +4667,7 @@ dependencies = [
  "strsim 0.10.0",
  "tar",
  "tauri-icns",
- "tauri-utils 2.0.0-beta.2",
+ "tauri-utils 2.0.0-beta.3",
  "tempfile",
  "thiserror",
  "time",
@@ -4681,7 +4681,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "anyhow",
  "axum",
@@ -4732,7 +4732,7 @@ dependencies = [
  "tauri-bundler",
  "tauri-icns",
  "tauri-utils 1.5.3",
- "tauri-utils 2.0.0-beta.2",
+ "tauri-utils 2.0.0-beta.3",
  "thiserror",
  "tokio",
  "toml 0.8.10",
@@ -4798,7 +4798,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 dependencies = [
  "aes-gcm",
  "ctor",

+ 3 - 3
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-beta.2"
+version = "2.0.0-beta.3"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.70"
@@ -49,7 +49,7 @@ sublime_fuzzy = "0.7"
 clap_complete = "4"
 clap = { version = "4.4", features = [ "derive", "env" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.0-beta.2", default-features = false, path = "../bundler" }
+tauri-bundler = { version = "2.0.0-beta.3", default-features = false, path = "../bundler" }
 colored = "2.0"
 serde = { version = "1.0", features = [ "derive" ] }
 serde_json = "1.0"
@@ -59,7 +59,7 @@ shared_child = "1.0"
 duct = "0.13"
 toml_edit = "0.21"
 json-patch = "1.2"
-tauri-utils = { version = "2.0.0-beta.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
+tauri-utils = { version = "2.0.0-beta.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
 tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
 toml = "0.8"
 jsonschema = "0.17"

+ 4 - 4
tooling/cli/metadata-v2.json

@@ -1,9 +1,9 @@
 {
   "cli.js": {
-    "version": "2.0.0-beta.2",
+    "version": "2.0.0-beta.3",
     "node": ">= 10.0.0"
   },
-  "tauri": "2.0.0-beta.3",
-  "tauri-build": "2.0.0-beta.2",
-  "tauri-plugin": "2.0.0-beta.2"
+  "tauri": "2.0.0-beta.4",
+  "tauri-build": "2.0.0-beta.3",
+  "tauri-plugin": "2.0.0-beta.3"
 }

+ 10 - 0
tooling/cli/node/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-beta.3]
+
+### Enhancements
+
+- [`a029b9f7`](https://www.github.com/tauri-apps/tauri/commit/a029b9f77e432533a403c292940fa3efba68692c)([#8910](https://www.github.com/tauri-apps/tauri/pull/8910)) Setting up code signing is no longer required on iOS when using the simulator.
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-beta.3`
+
 ## \[2.0.0-beta.2]
 
 ### Enhancements

+ 1 - 1
tooling/cli/node/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "2.0.0-beta.2",
+  "version": "2.0.0-beta.3",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",