diff --git a/.changes/pre.json b/.changes/pre.json index 8dddbffe09e5..64d50e03436d 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -2,12 +2,25 @@ "tag": "beta", "changes": [ ".changes/beta.md", + ".changes/cli-plugin-android-init.md", ".changes/fix-codegen-rerun-if-changed.md", + ".changes/fix-config-arg.md", + ".changes/fix-invoke-devtools-by-hotkey.md", + ".changes/fix-migrate-updater.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/handle-empty-permissions.md", ".changes/refactor-capabilities-schema.md", ".changes/rerun-if-permission-created.md", - ".changes/update-plugin-template.md" + ".changes/rwh-06.md", + ".changes/schema_str.md", + ".changes/tauri-close-requested-target-specific.md", + ".changes/tauri-error-sync.md", + ".changes/tauri-scope-object-error-sync.md", + ".changes/update-plugin-template.md", + ".changes/wry-0.36.md" ] } diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 89db693b6d6a..ff9d99437a17 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[2.0.0-beta.2] + +### Bug Fixes + +- [`19fb5f0b`](https://www.github.com/tauri-apps/tauri/commit/19fb5f0b20479885bf8bc4fdd8c431052420191d)([#8782](https://www.github.com/tauri-apps/tauri/pull/8782)) Fix generating invalid schema files. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` +- Upgraded to `tauri-codegen@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Enhancements diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 45adb3653c5c..a6b9b5872e5c 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.1" +version = "2.0.0-beta.2" 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.1", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils", features = [ "build", "resources" ] } +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" ] } cargo_toml = "0.17" serde = "1" serde_json = "1" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 0d92637ef3b3..b60c8ef2ce5b 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.2] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Dependencies diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index befddab4755d..946274de5497 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.1" +version = "2.0.0-beta.2" description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -19,7 +19,7 @@ proc-macro2 = "1" quote = "1" serde = { version = "1", features = [ "derive" ] } serde_json = "1" -tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "2.0.0-beta.2", 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 d473f0d2edaf..5bed924e6362 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.2] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` +- Upgraded to `tauri-codegen@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index d3d64c5f6f6b..f6bf2052b2e3 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.1" +version = "2.0.0-beta.2" 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.1", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils" } +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" } [features] custom-protocol = [ ] diff --git a/core/tauri-plugin/CHANGELOG.md b/core/tauri-plugin/CHANGELOG.md index 2a15448d045b..df4d0ff45a31 100644 --- a/core/tauri-plugin/CHANGELOG.md +++ b/core/tauri-plugin/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.2] + +### Enhancements + +- [`dd7571a7`](https://www.github.com/tauri-apps/tauri/commit/dd7571a7808676c8063a4983b9c6687dfaf03a09)([#8815](https://www.github.com/tauri-apps/tauri/pull/8815)) Do not generate JSON schema and markdown reference file if the plugin does not define any permissions and delete those files if they exist. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Bug Fixes diff --git a/core/tauri-plugin/Cargo.toml b/core/tauri-plugin/Cargo.toml index a4cb4b00bd71..e3e69d493ebd 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.1" +version = "2.0.0-beta.2" 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.1", default-features = false, path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.2", 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 3cf22964987b..53efa1b3243e 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## \[2.0.0-beta.2] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` +- Upgraded to `tauri-runtime@2.0.0-beta.2` +- [`2f55bfec`](https://www.github.com/tauri-apps/tauri/commit/2f55bfecbf0244f3b5aa1ad7622182fca3fcdcbb)([#8795](https://www.github.com/tauri-apps/tauri/pull/8795)) Update `wry` to 0.36. + +### Breaking Changes + +- [`2f55bfec`](https://www.github.com/tauri-apps/tauri/commit/2f55bfecbf0244f3b5aa1ad7622182fca3fcdcbb)([#8795](https://www.github.com/tauri-apps/tauri/pull/8795)) Update raw-window-handle to 0.6. + ## \[2.0.0-beta.1] ### Dependencies diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 5cdd25638faa..8ac2a4cb4597 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.1" +version = "2.0.0-beta.2" 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.25", default-features = false, features = [ "rwh_06" ] } -tauri-runtime = { version = "2.0.0-beta.1", path = "../tauri-runtime" } -tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils" } +tauri-runtime = { version = "2.0.0-beta.2", path = "../tauri-runtime" } +tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" } raw-window-handle = "0.6" http = "0.2" tracing = { version = "0.1", optional = true } diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index 0c1ddd5a32b5..a0a8537bc184 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.2] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` + +### Breaking Changes + +- [`2f55bfec`](https://www.github.com/tauri-apps/tauri/commit/2f55bfecbf0244f3b5aa1ad7622182fca3fcdcbb)([#8795](https://www.github.com/tauri-apps/tauri/pull/8795)) Update raw-window-handle to 0.6. + ## \[2.0.0-beta.1] ### Dependencies diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index e8cf98bfa1d5..17f1fe06f066 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.1" +version = "2.0.0-beta.2" 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.1", path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.2", 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 54d498c96769..1a2d43d75094 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.2] + +### Enhancements + +- [`dd7571a7`](https://www.github.com/tauri-apps/tauri/commit/dd7571a7808676c8063a4983b9c6687dfaf03a09)([#8815](https://www.github.com/tauri-apps/tauri/pull/8815)) Do not generate JSON schema and markdown reference file if the plugin does not define any permissions and delete those files if they exist. + +### Bug Fixes + +- [`ae0fe47c`](https://www.github.com/tauri-apps/tauri/commit/ae0fe47c4c35fa87c77acf42af32ef3f0615cb08)([#8774](https://www.github.com/tauri-apps/tauri/pull/8774)) Fix compile error when `tauri.conf.json` had `bundle > license` set. + ## \[2.0.0-beta.1] ### Enhancements diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index e9ddf58fa8a3..91461221ae25 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.1" +version = "2.0.0-beta.2" description = "Utilities for Tauri" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index a1c397e52695..417efb5a3b8f 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## \[2.0.0-beta.3] + +### Bug Fixes + +- [`8751c329`](https://www.github.com/tauri-apps/tauri/commit/8751c3299f2b7229c6108aa37dedf1dc5edb3e5c)([#8793](https://www.github.com/tauri-apps/tauri/pull/8793)) Fix invoking toggle devtools by hotkey. +- [`bd73ab0a`](https://www.github.com/tauri-apps/tauri/commit/bd73ab0a1adcf648e38d579b92515dababf34993)([#8766](https://www.github.com/tauri-apps/tauri/pull/8766)) When using the multiwebview mode, properly remove the webview from memory on `Webview::close`. +- [`46b6598a`](https://www.github.com/tauri-apps/tauri/commit/46b6598a94cd0c6fa4a1654ac67432d94ea20ebf)([#8826](https://www.github.com/tauri-apps/tauri/pull/8826)) Fix JS `onCloseRequested` catching close event from other windows. +- [`2e6db908`](https://www.github.com/tauri-apps/tauri/commit/2e6db908d7b3a2c928c46b0ad9ccf9ec55a29480)([#8777](https://www.github.com/tauri-apps/tauri/pull/8777)) Fix regression in `tauri::Error` not being `Sync`. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` +- Upgraded to `tauri-runtime@2.0.0-beta.2` +- Upgraded to `tauri-runtime-wry@2.0.0-beta.2` +- Upgraded to `tauri-build@2.0.0-beta.2` +- Upgraded to `tauri-macros@2.0.0-beta.2` + +### Breaking Changes + +- [`2f55bfec`](https://www.github.com/tauri-apps/tauri/commit/2f55bfecbf0244f3b5aa1ad7622182fca3fcdcbb)([#8795](https://www.github.com/tauri-apps/tauri/pull/8795)) Update raw-window-handle to 0.6. +- [`2e6db908`](https://www.github.com/tauri-apps/tauri/commit/2e6db908d7b3a2c928c46b0ad9ccf9ec55a29480)([#8777](https://www.github.com/tauri-apps/tauri/pull/8777)) Require `ScopeObject::Error` to be `Sync` as well. + ## \[2.0.0-beta.2] ### Bug Fixes diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 9c395aa2a66e..1c7b32406433 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "2.0.0-beta.2" +version = "2.0.0-beta.3" 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.1", path = "../tauri-runtime" } -tauri-macros = { version = "2.0.0-beta.1", path = "../tauri-macros" } -tauri-utils = { version = "2.0.0-beta.1", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "2.0.0-beta.1", path = "../tauri-runtime-wry", optional = true } +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 } 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.1" } -tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.1", features = [ "build" ] } +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" ] } [dev-dependencies] proptest = "1.4.0" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index c770f857ff15..ec61bde85fa8 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.2] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Dependencies diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 8fa329f41add..9c06218b05e0 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.1" +version = "2.0.0-beta.2" 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.1", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "2.0.0-beta.2", path = "../../core/tauri-utils", features = [ "resources" ] } image = "0.24.7" libflate = "2.0" anyhow = "1.0" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index c79279b9961e..c16fba965c6f 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## \[2.0.0-beta.2] + +### Bug Fixes + +- [`aa06a053`](https://www.github.com/tauri-apps/tauri/commit/aa06a0534cf224038866e0ddd6910ea873b2574d)([#8810](https://www.github.com/tauri-apps/tauri/pull/8810)) Fix `tauri plugin android init` printing invalid code that has a missing closing `"`. +- [`fb0d9971`](https://www.github.com/tauri-apps/tauri/commit/fb0d997117367e3387896bcd0fba004579475c40)([#8783](https://www.github.com/tauri-apps/tauri/pull/8783)) Fixes a regression on the `--config` argument not accepting file paths. +- [`baca704d`](https://www.github.com/tauri-apps/tauri/commit/baca704d4b5fae239fc320d10140f35bd705bfbb)([#8768](https://www.github.com/tauri-apps/tauri/pull/8768)) Do not migrate updater configuration if the active flag is set to false. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.2` +- Upgraded to `tauri-bundler@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Enhancements diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 4c8f445ce04d..eb286f50ed59 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4737,7 +4737,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" dependencies = [ "anyhow", "ar", @@ -4765,7 +4765,7 @@ dependencies = [ "strsim", "tar", "tauri-icns", - "tauri-utils 2.0.0-beta.1", + "tauri-utils 2.0.0-beta.2", "tempfile", "thiserror", "time", @@ -4779,7 +4779,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" dependencies = [ "anyhow", "axum", @@ -4829,7 +4829,7 @@ dependencies = [ "tauri-bundler", "tauri-icns", "tauri-utils 1.5.0", - "tauri-utils 2.0.0-beta.1", + "tauri-utils 2.0.0-beta.2", "thiserror", "tokio", "toml 0.8.8", @@ -4895,7 +4895,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" dependencies = [ "aes-gcm", "ctor 0.2.5", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 9cc8942c6ab0..d83109b095ef 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.1" +version = "2.0.0-beta.2" 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.1", default-features = false, path = "../bundler" } +tauri-bundler = { version = "2.0.0-beta.2", 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.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "2.0.0-beta.2", 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 89153f15d528..29feea6e7cc3 100644 --- a/tooling/cli/metadata-v2.json +++ b/tooling/cli/metadata-v2.json @@ -1,9 +1,9 @@ { "cli.js": { - "version": "2.0.0-beta.1", + "version": "2.0.0-beta.2", "node": ">= 10.0.0" }, - "tauri": "2.0.0-beta.2", - "tauri-build": "2.0.0-beta.1", - "tauri-plugin": "2.0.0-beta.1" + "tauri": "2.0.0-beta.3", + "tauri-build": "2.0.0-beta.2", + "tauri-plugin": "2.0.0-beta.2" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index c1c5c600e218..bf1ed32a1c4d 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## \[2.0.0-beta.2] + +### Bug Fixes + +- [`aa06a053`](https://www.github.com/tauri-apps/tauri/commit/aa06a0534cf224038866e0ddd6910ea873b2574d)([#8810](https://www.github.com/tauri-apps/tauri/pull/8810)) Fix `tauri plugin android init` printing invalid code that has a missing closing `"`. +- [`fb0d9971`](https://www.github.com/tauri-apps/tauri/commit/fb0d997117367e3387896bcd0fba004579475c40)([#8783](https://www.github.com/tauri-apps/tauri/pull/8783)) Fixes a regression on the `--config` argument not accepting file paths. +- [`baca704d`](https://www.github.com/tauri-apps/tauri/commit/baca704d4b5fae239fc320d10140f35bd705bfbb)([#8768](https://www.github.com/tauri-apps/tauri/pull/8768)) Do not migrate updater configuration if the active flag is set to false. + +### Dependencies + +- Upgraded to `tauri-cli@2.0.0-beta.2` + ## \[2.0.0-beta.1] ### Enhancements diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 6154035f07a1..bc609b906645 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.1", + "version": "2.0.0-beta.2", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",