From 0606ab326b0afb433140cc68a88b564a404f6eca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 18:50:24 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#8938) Co-authored-by: lucasfernog --- .changes/pre.json | 10 +++++++++- Cargo.lock | 16 ++++++++-------- core/tauri-build/CHANGELOG.md | 11 +++++++++++ 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-plugin/CHANGELOG.md | 6 ++++++ core/tauri-plugin/Cargo.toml | 4 ++-- core/tauri-runtime-wry/CHANGELOG.md | 16 ++++++++++++++++ core/tauri-runtime-wry/Cargo.toml | 6 +++--- core/tauri-runtime/CHANGELOG.md | 10 ++++++++++ core/tauri-runtime/Cargo.toml | 4 ++-- core/tauri-utils/CHANGELOG.md | 6 ++++++ core/tauri-utils/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 14 ++++++++++++++ core/tauri/Cargo.toml | 14 +++++++------- tooling/api/CHANGELOG.md | 6 ++++++ tooling/api/package.json | 2 +- tooling/bundler/CHANGELOG.md | 11 +++++++++++ tooling/bundler/Cargo.toml | 4 ++-- tooling/cli/CHANGELOG.md | 15 +++++++++++++++ tooling/cli/Cargo.lock | 10 +++++----- tooling/cli/Cargo.toml | 6 +++--- tooling/cli/metadata-v2.json | 8 ++++---- tooling/cli/node/CHANGELOG.md | 14 ++++++++++++++ tooling/cli/node/package.json | 2 +- 28 files changed, 178 insertions(+), 48 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 69bf4c2b7..9a829d4f1 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -8,8 +8,11 @@ ".changes/api-webview-window.md", ".changes/api-window-on-filedrop.md", ".changes/beta.md", + ".changes/bundler-license.md", + ".changes/bundler-rpm-license.md", ".changes/capabilities-multiwebview.md", ".changes/capabilities-tauri-conf.md", + ".changes/capability-context-refactor.md", ".changes/cli-plugin-android-init.md", ".changes/cli-windows-build-tools-detect-utf8.md", ".changes/codegen-capabilities-attribute.md", @@ -24,18 +27,22 @@ ".changes/fix-config-arg.md", ".changes/fix-invoke-devtools-by-hotkey.md", ".changes/fix-migrate-updater.md", + ".changes/fix-mobile-process-spawn.md", ".changes/fix-process-ipc-message-fn.md", ".changes/fix-rewrite-schema.md", ".changes/fix-tauri-build-license-field.md", ".changes/fix-tauri-build-unix.md", ".changes/fix-webview-close.md", + ".changes/fix-window-center-monitor-scale.md", ".changes/handle-empty-permissions.md", ".changes/inline-plugins.md", ".changes/ios-signing-optional.md", + ".changes/nsis-dpi-aware.md", ".changes/progress-bar-state-refactor.md", ".changes/refactor-capabilities-schema.md", ".changes/refactor-capability-remote-option.md", ".changes/remove-unit-uri.md", + ".changes/reparent.md", ".changes/rerun-if-permission-created.md", ".changes/runtime-add-capability.md", ".changes/rwh-06.md", @@ -50,6 +57,7 @@ ".changes/tauri-webview-events.md", ".changes/update-app-template-capabilities-conf.md", ".changes/update-plugin-template.md", - ".changes/wry-0.36.md" + ".changes/wry-0.36.md", + ".changes/wry-0.37.md" ] } diff --git a/Cargo.lock b/Cargo.lock index 79aefac54..82a54d160 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3616,7 +3616,7 @@ checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" [[package]] name = "tauri" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "anyhow", "bytes", @@ -3674,7 +3674,7 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "anyhow", "cargo_toml", @@ -3696,7 +3696,7 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "base64", "brotli", @@ -3733,7 +3733,7 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "heck", "proc-macro2", @@ -3745,7 +3745,7 @@ dependencies = [ [[package]] name = "tauri-plugin" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "anyhow", "glob", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "gtk", "http", @@ -3776,7 +3776,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "cocoa", "gtk", @@ -3798,7 +3798,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "aes-gcm", "brotli", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index fa6bceaae..852dee289 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[2.0.0-beta.4] + +### Enhancements + +- [`b5eb6472`](https://www.github.com/tauri-apps/tauri/commit/b5eb64728aeb410d3f3068608a94762655c4690f)([#8940](https://www.github.com/tauri-apps/tauri/pull/8940)) Enable Hight DPI awareness for NSIS installer so it is not blurry on some systems. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` +- Upgraded to `tauri-codegen@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index d5a2472a1..b3ec29e85 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils", features = [ "build", "resources" ] } +tauri-codegen = { version = "2.0.0-beta.4", path = "../tauri-codegen", optional = true } +tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.17" serde = "1" serde_json = "1" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 93ae87c68..96fd612fc 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.4] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 7d18b6f23..5356fdda3 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-codegen" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils", features = [ "build" ] } thiserror = "1" walkdir = "2" brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] } diff --git a/core/tauri-macros/CHANGELOG.md b/core/tauri-macros/CHANGELOG.md index 1bb7c5579..9734d6e31 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.4] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` +- Upgraded to `tauri-codegen@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index 789399557..5f4da196d 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-macros" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils" } +tauri-codegen = { version = "2.0.0-beta.4", default-features = false, path = "../tauri-codegen" } +tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" } [features] custom-protocol = [ ] diff --git a/core/tauri-plugin/CHANGELOG.md b/core/tauri-plugin/CHANGELOG.md index 18ca84719..42aacb6ef 100644 --- a/core/tauri-plugin/CHANGELOG.md +++ b/core/tauri-plugin/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.4] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-plugin/Cargo.toml b/core/tauri-plugin/Cargo.toml index 4f195a26f..06419b7b0 100644 --- a/core/tauri-plugin/Cargo.toml +++ b/core/tauri-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", default-features = false, path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.4", default-features = false, path = "../tauri-utils" } serde_json = { version = "1", optional = true } glob = { version = "0.3", optional = true } toml = { version = "0.8", optional = true } diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 0be32c9d4..0bda19e8e 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## \[2.0.0-beta.4] + +### New Features + +- [`fdcaf935`](https://www.github.com/tauri-apps/tauri/commit/fdcaf935fa75ecfa2806939c4faad4fe9e880386)([#8939](https://www.github.com/tauri-apps/tauri/pull/8939)) Added the `reparent` function to the webview API. + +### Bug Fixes + +- [`6e3bd4b9`](https://www.github.com/tauri-apps/tauri/commit/6e3bd4b9f815ddde8b5eaf9f69991d4de80bb584)([#8942](https://www.github.com/tauri-apps/tauri/pull/8942)) Fix window centering not taking monitor scale into account + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` +- Upgraded to `tauri-runtime@2.0.0-beta.4` +- [`d75713ac`](https://www.github.com/tauri-apps/tauri/commit/d75713ac6c6115534e520303f5c38aa78704de69)([#8936](https://www.github.com/tauri-apps/tauri/pull/8936)) Upgraded to `wry@0.37.0` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 9b425fad0..e45f278fc 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 = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.37", 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.3", path = "../tauri-runtime" } -tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils" } +tauri-runtime = { version = "2.0.0-beta.4", path = "../tauri-runtime" } +tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" } raw-window-handle = "0.6" http = "0.2" url = "2" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index babc800ed..5c607d5f7 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.4] + +### New Features + +- [`fdcaf935`](https://www.github.com/tauri-apps/tauri/commit/fdcaf935fa75ecfa2806939c4faad4fe9e880386)([#8939](https://www.github.com/tauri-apps/tauri/pull/8939)) Added the `reparent` function to the webview API. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index e41c8a105..7474c5b53 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" } http = "0.2.4" raw-window-handle = "0.6" url = { version = "2" } diff --git a/core/tauri-utils/CHANGELOG.md b/core/tauri-utils/CHANGELOG.md index f896e0201..d65e1e973 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.4] + +### Breaking Changes + +- [`a76fb118`](https://www.github.com/tauri-apps/tauri/commit/a76fb118ce2de22e1bdb4216bf0ac01dfc3e5799)([#8950](https://www.github.com/tauri-apps/tauri/pull/8950)) Changed the capability format to allow configuring both `remote: { urls: Vec }` and `local: bool (default: true)` instead of choosing one on the `context` field. + ## \[2.0.0-beta.3] ### Breaking Changes diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index df31b8d9f..0621b4236 100644 --- a/core/tauri-utils/Cargo.toml +++ b/core/tauri-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-utils" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" description = "Utilities for Tauri" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 34054ad1b..6387714f3 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[2.0.0-beta.5] + +### New Features + +- [`fdcaf935`](https://www.github.com/tauri-apps/tauri/commit/fdcaf935fa75ecfa2806939c4faad4fe9e880386)([#8939](https://www.github.com/tauri-apps/tauri/pull/8939)) Added the `reparent` function to the webview API. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` +- Upgraded to `tauri-runtime-wry@2.0.0-beta.4` +- Upgraded to `tauri-build@2.0.0-beta.4` +- Upgraded to `tauri-runtime@2.0.0-beta.4` +- Upgraded to `tauri-macros@2.0.0-beta.4` + ## \[2.0.0-beta.4] ### Enhancements diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 155fdbe06..6222fe181 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" 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.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 } +tauri-runtime = { version = "2.0.0-beta.4", path = "../tauri-runtime" } +tauri-macros = { version = "2.0.0-beta.4", path = "../tauri-macros" } +tauri-utils = { version = "2.0.0-beta.4", features = [ "resources" ], path = "../tauri-utils" } +tauri-runtime-wry = { version = "2.0.0-beta.4", 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.3" } -tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.3", features = [ "build" ] } +tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.4" } +tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.4", features = [ "build" ] } [dev-dependencies] proptest = "1.4.0" diff --git a/tooling/api/CHANGELOG.md b/tooling/api/CHANGELOG.md index 596430dc2..d466aecfc 100644 --- a/tooling/api/CHANGELOG.md +++ b/tooling/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.3] + +### New Features + +- [`fdcaf935`](https://www.github.com/tauri-apps/tauri/commit/fdcaf935fa75ecfa2806939c4faad4fe9e880386)([#8939](https://www.github.com/tauri-apps/tauri/pull/8939)) Added the `reparent` function to the webview API. + ## \[2.0.0-beta.2] ### Breaking Changes diff --git a/tooling/api/package.json b/tooling/api/package.json index 5e27194b9..b7b11f6ef 100644 --- a/tooling/api/package.json +++ b/tooling/api/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/api", - "version": "2.0.0-beta.2", + "version": "2.0.0-beta.3", "description": "Tauri API definitions", "funding": { "type": "opencollective", diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 1eef5536d..7957a54f5 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[2.0.1-beta.0] + +### Bug Fixes + +- [`84c783f6`](https://www.github.com/tauri-apps/tauri/commit/84c783f6bc46827032666b0cba100ed37560240c)([#8948](https://www.github.com/tauri-apps/tauri/pull/8948)) Fix NSIS installer always containing a license page even though `licenseFile` option is not set in the config. +- [`84c783f6`](https://www.github.com/tauri-apps/tauri/commit/84c783f6bc46827032666b0cba100ed37560240c)([#8948](https://www.github.com/tauri-apps/tauri/pull/8948)) Don't fallback to `licenseFile` and use only `license` field when building RPM. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.4` + ## \[2.0.0-beta.3] ### Dependencies diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 1fee1b609..df18e5415 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "2.0.0-beta.3" +version = "2.0.1-beta.0" authors = [ "George Burton ", "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.3", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "2.0.0-beta.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 e32193646..9c29fef38 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## \[2.0.0-beta.4] + +### Bug Fixes + +- [`e538ba58`](https://www.github.com/tauri-apps/tauri/commit/e538ba586c5b8b50955586c8ef2704adb5d7cc43)([#8949](https://www.github.com/tauri-apps/tauri/pull/8949)) Fixes android and iOS process spawning not working on Node.js. + +### Dependencies + +- Upgraded to `tauri-bundler@2.0.1-beta.0` +- Upgraded to `tauri-utils@2.0.0-beta.4` + +### Breaking Changes + +- [`a76fb118`](https://www.github.com/tauri-apps/tauri/commit/a76fb118ce2de22e1bdb4216bf0ac01dfc3e5799)([#8950](https://www.github.com/tauri-apps/tauri/pull/8950)) Changed the capability format to allow configuring both `remote: { urls: Vec }` and `local: bool (default: true)` instead of choosing one on the `context` field. + ## \[2.0.0-beta.3] ### Enhancements diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 60a2cf24c..00e6f11e6 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4640,7 +4640,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "2.0.0-beta.3" +version = "2.0.1-beta.0" dependencies = [ "anyhow", "ar", @@ -4668,7 +4668,7 @@ dependencies = [ "strsim 0.10.0", "tar", "tauri-icns", - "tauri-utils 2.0.0-beta.3", + "tauri-utils 2.0.0-beta.4", "tempfile", "thiserror", "time", @@ -4682,7 +4682,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "anyhow", "axum", @@ -4733,7 +4733,7 @@ dependencies = [ "tauri-bundler", "tauri-icns", "tauri-utils 1.5.3", - "tauri-utils 2.0.0-beta.3", + "tauri-utils 2.0.0-beta.4", "thiserror", "tokio", "toml 0.8.10", @@ -4799,7 +4799,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 08c8af1f0..d5072a3f2 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" 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.3", default-features = false, path = "../bundler" } +tauri-bundler = { version = "2.0.1-beta.0", 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.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "2.0.0-beta.4", 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" diff --git a/tooling/cli/metadata-v2.json b/tooling/cli/metadata-v2.json index c7a391f8c..c2beecfe3 100644 --- a/tooling/cli/metadata-v2.json +++ b/tooling/cli/metadata-v2.json @@ -1,9 +1,9 @@ { "cli.js": { - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "node": ">= 10.0.0" }, - "tauri": "2.0.0-beta.4", - "tauri-build": "2.0.0-beta.3", - "tauri-plugin": "2.0.0-beta.3" + "tauri": "2.0.0-beta.5", + "tauri-build": "2.0.0-beta.4", + "tauri-plugin": "2.0.0-beta.4" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index a1207d485..3227a900b 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[2.0.0-beta.4] + +### Bug Fixes + +- [`e538ba58`](https://www.github.com/tauri-apps/tauri/commit/e538ba586c5b8b50955586c8ef2704adb5d7cc43)([#8949](https://www.github.com/tauri-apps/tauri/pull/8949)) Fixes android and iOS process spawning not working on Node.js. + +### Dependencies + +- Upgraded to `tauri-cli@2.0.0-beta.4` + +### Breaking Changes + +- [`a76fb118`](https://www.github.com/tauri-apps/tauri/commit/a76fb118ce2de22e1bdb4216bf0ac01dfc3e5799)([#8950](https://www.github.com/tauri-apps/tauri/pull/8950)) Changed the capability format to allow configuring both `remote: { urls: Vec }` and `local: bool (default: true)` instead of choosing one on the `context` field. + ## \[2.0.0-beta.3] ### Enhancements diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 3f1b545dc..d1fedfa47 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",