Apply Version Updates From Current Changes (#9000)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-02-29 00:06:59 -03:00 committed by GitHub
parent 8fcbce9404
commit ab060ebb34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
26 changed files with 192 additions and 48 deletions

View File

@ -7,6 +7,7 @@
".changes/api-webview-window-new-methods.md",
".changes/api-webview-window.md",
".changes/api-window-on-filedrop.md",
".changes/app-manifest.md",
".changes/beta.md",
".changes/bundler-license.md",
".changes/bundler-rpm-license.md",
@ -14,6 +15,7 @@
".changes/capabilities-tauri-conf.md",
".changes/capability-context-refactor.md",
".changes/cli-acl-subcommands.md",
".changes/cli-mobile-init-partition.md",
".changes/cli-plugin-android-init.md",
".changes/cli-plugins-migrate.md",
".changes/cli-windows-build-tools-detect-utf8.md",
@ -25,7 +27,10 @@
".changes/csp-header-linux.md",
".changes/downgrade-minisign.md",
".changes/enhance-resource-dir-resolution.md",
".changes/fix-acl-webview-check.md",
".changes/fix-add-child-deadlock.md",
".changes/fix-capability-schema-definitions.md",
".changes/fix-clear-residual-listeners.md",
".changes/fix-codegen-rerun-if-changed.md",
".changes/fix-config-arg.md",
".changes/fix-invoke-devtools-by-hotkey.md",
@ -34,6 +39,7 @@
".changes/fix-mobile-cmd-case.md",
".changes/fix-mobile-process-spawn.md",
".changes/fix-process-ipc-message-fn.md",
".changes/fix-reparent.md",
".changes/fix-rewrite-schema.md",
".changes/fix-tauri-build-license-field.md",
".changes/fix-tauri-build-unix.md",
@ -43,7 +49,11 @@
".changes/handle-empty-permissions.md",
".changes/inline-plugins.md",
".changes/ios-signing-optional.md",
".changes/mobile-watcher.md",
".changes/multiwebview-bounds-fixes.md",
".changes/nsis-dpi-aware.md",
".changes/permission-platforms.md",
".changes/permission-table.md",
".changes/progress-bar-state-refactor.md",
".changes/re-export-progress-bar-status.md",
".changes/refactor-capabilities-schema.md",
@ -64,6 +74,8 @@
".changes/tauri-scope-object-error-sync.md",
".changes/tauri-utils-capability-refactor.md",
".changes/tauri-webview-events.md",
".changes/truncate-before-write-buildtask.md",
".changes/update-acl-paths-cli.md",
".changes/update-app-template-capabilities-conf.md",
".changes/update-plugin-template.md",
".changes/wry-0.36.md",

16
Cargo.lock generated
View File

@ -3596,7 +3596,7 @@ checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
[[package]]
name = "tauri"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"anyhow",
"bytes",
@ -3654,7 +3654,7 @@ dependencies = [
[[package]]
name = "tauri-build"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"anyhow",
"cargo_toml",
@ -3676,7 +3676,7 @@ dependencies = [
[[package]]
name = "tauri-codegen"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"base64",
"brotli",
@ -3713,7 +3713,7 @@ dependencies = [
[[package]]
name = "tauri-macros"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"heck",
"proc-macro2",
@ -3725,7 +3725,7 @@ dependencies = [
[[package]]
name = "tauri-plugin"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"anyhow",
"glob",
@ -3740,7 +3740,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"gtk",
"http",
@ -3756,7 +3756,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"cocoa",
"gtk",
@ -3778,7 +3778,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"aes-gcm",
"brotli",

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-beta.6]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.6`
- Upgraded to `tauri-codegen@2.0.0-beta.6`
### Breaking Changes
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Allow defining permissions for the application commands via `tauri_build::Attributes::app_manifest`.
## \[2.0.0-beta.5]
### Breaking Changes
@ -7,7 +18,6 @@
- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`.
- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) Removed `tauri_build::CodegenContext::dev()` and added `tauri_build::dev()`.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.5`

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.5", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-beta.6", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.6", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.17"
serde = "1"
serde_json = "1"

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-beta.6]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.6`
### Breaking Changes
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Allow defining permissions for the application commands via `tauri_build::Attributes::app_manifest`.
## \[2.0.0-beta.5]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-beta.6", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.5", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-beta.6", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.6", path = "../tauri-utils" }
[features]
custom-protocol = [ ]

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-beta.6]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.6`
### Breaking Changes
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Allow defining permissions for the application commands via `tauri_build::Attributes::app_manifest`.
## \[2.0.0-beta.5]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", default-features = false, path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.6", default-features = false, path = "../tauri-utils" }
serde_json = { version = "1", optional = true }
glob = { version = "0.3", optional = true }
toml = { version = "0.8", optional = true }

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-beta.6]
### Bug Fixes
- [`222a96b7`](https://www.github.com/tauri-apps/tauri/commit/222a96b74b145fb48d3f0c109897962d56fae57a)([#8999](https://www.github.com/tauri-apps/tauri/pull/8999)) Fixes auto resize and positioning when using the multiwebview mode.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.6`
- Upgraded to `tauri-runtime@2.0.0-beta.6`
## \[2.0.0-beta.5]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.5", path = "../tauri-utils" }
tauri-runtime = { version = "2.0.0-beta.6", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.6", path = "../tauri-utils" }
raw-window-handle = "0.6"
http = "0.2"
url = "2"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.5", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.6", path = "../tauri-utils" }
http = "0.2.4"
raw-window-handle = "0.6"
url = { version = "2" }

View File

@ -1,5 +1,19 @@
# Changelog
## \[2.0.0-beta.6]
### New Features
- [`d7f56fef`](https://www.github.com/tauri-apps/tauri/commit/d7f56fef85cac3af4e2dbac1eac40e5567b1f160)([#9014](https://www.github.com/tauri-apps/tauri/pull/9014)) Allow defining a permission that only applies to a set of target platforms via the `platforms` configuration option.
### Enhancements
- [`04440edc`](https://www.github.com/tauri-apps/tauri/commit/04440edce870f9d06055616034941d79443d5a87)([#9019](https://www.github.com/tauri-apps/tauri/pull/9019)) Changed plugin markdown docs generation to table format.
### Breaking Changes
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Allow defining permissions for the application commands via `tauri_build::Attributes::app_manifest`.
## \[2.0.0-beta.5]
### Enhancements

View File

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

View File

@ -1,5 +1,30 @@
# Changelog
## \[2.0.0-beta.8]
### New Features
- [`d7f56fef`](https://www.github.com/tauri-apps/tauri/commit/d7f56fef85cac3af4e2dbac1eac40e5567b1f160)([#9014](https://www.github.com/tauri-apps/tauri/pull/9014)) Allow defining a permission that only applies to a set of target platforms via the `platforms` configuration option.
### Bug Fixes
- [`e1d5b790`](https://www.github.com/tauri-apps/tauri/commit/e1d5b7906369a40df19e8ee86c56f90a27d6357c)([#8995](https://www.github.com/tauri-apps/tauri/pull/8995)) Fixes capability webview label check.
- [`222a96b7`](https://www.github.com/tauri-apps/tauri/commit/222a96b74b145fb48d3f0c109897962d56fae57a)([#8999](https://www.github.com/tauri-apps/tauri/pull/8999)) Fixes `Window::add_child` deadlock.
- [`e4463f08`](https://www.github.com/tauri-apps/tauri/commit/e4463f08145c044bd37dc1c6f5f39e6a572ace3e)([#8930](https://www.github.com/tauri-apps/tauri/pull/8930)) Clear JS event listeneres on page load, which fixes zombie listeners when the page reloads.
- [`222a96b7`](https://www.github.com/tauri-apps/tauri/commit/222a96b74b145fb48d3f0c109897962d56fae57a)([#8999](https://www.github.com/tauri-apps/tauri/pull/8999)) Fixes `Webview::reparent` not updating the webview parent window reference.
### Dependencies
- Upgraded to `tauri-build@2.0.0-beta.6`
- Upgraded to `tauri-utils@2.0.0-beta.6`
- Upgraded to `tauri-runtime-wry@2.0.0-beta.6`
- Upgraded to `tauri-runtime@2.0.0-beta.6`
- Upgraded to `tauri-macros@2.0.0-beta.6`
### Breaking Changes
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Allow defining permissions for the application commands via `tauri_build::Attributes::app_manifest`.
### Breaking Changes
- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
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 = "2"
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "2.0.0-beta.5", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.5", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.5", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.5", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "2.0.0-beta.6", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.6", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.6", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.6", 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.5" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.5", features = [ "build" ] }
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.6" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.6", features = [ "build" ] }
[dev-dependencies]
proptest = "1.4.0"

View File

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

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "2.0.1-beta.1"
version = "2.0.1-beta.2"
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.5", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "2.0.0-beta.6", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.7"
flate2 = "1.0"
anyhow = "1.0"

View File

@ -1,5 +1,22 @@
# Changelog
## \[2.0.0-beta.6]
### Bug Fixes
- [`f5f3ed5f`](https://www.github.com/tauri-apps/tauri/commit/f5f3ed5f6faa0b51e83244acc15e9006299a03ba)([#9009](https://www.github.com/tauri-apps/tauri/pull/9009)) Fixes Android and iOS project initialization when the Tauri CLI is on a different disk partition.
- [`d7d03c71`](https://www.github.com/tauri-apps/tauri/commit/d7d03c7197212f3a5bebe08c929417d60927eb89)([#9017](https://www.github.com/tauri-apps/tauri/pull/9017)) Fixes dev watcher on mobile dev.
- [`b658ded6`](https://www.github.com/tauri-apps/tauri/commit/b658ded614cfc169228cb22ad5bfc64478dfe161)([#9015](https://www.github.com/tauri-apps/tauri/pull/9015)) Fixes truncation of existing BuildTask.kt when running `tauri android init`.
### What's Changed
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Updates to new ACL manifest path.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.6`
- Upgraded to `tauri-bundler@2.0.1-beta.2`
## \[2.0.0-beta.5]
### New Features

10
tooling/cli/Cargo.lock generated
View File

@ -4641,7 +4641,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.1-beta.1"
version = "2.0.1-beta.2"
dependencies = [
"anyhow",
"ar",
@ -4669,7 +4669,7 @@ dependencies = [
"strsim 0.10.0",
"tar",
"tauri-icns",
"tauri-utils 2.0.0-beta.5",
"tauri-utils 2.0.0-beta.6",
"tempfile",
"thiserror",
"time",
@ -4683,7 +4683,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"anyhow",
"axum",
@ -4735,7 +4735,7 @@ dependencies = [
"tauri-bundler",
"tauri-icns",
"tauri-utils 1.5.3",
"tauri-utils 2.0.0-beta.5",
"tauri-utils 2.0.0-beta.6",
"thiserror",
"tokio",
"toml 0.8.10",
@ -4801,7 +4801,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
dependencies = [
"aes-gcm",
"ctor",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
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.1-beta.1", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.2", default-features = false, path = "../bundler" }
colored = "2.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "preserve_order" ] }
@ -59,7 +59,7 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = { version = "0.22", features = [ "serde" ] }
json-patch = "1.2"
tauri-utils = { version = "2.0.0-beta.5", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "2.0.0-beta.6", 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"

View File

@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.0.0-beta.5",
"version": "2.0.0-beta.6",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.7",
"tauri-build": "2.0.0-beta.5",
"tauri-plugin": "2.0.0-beta.5"
"tauri": "2.0.0-beta.8",
"tauri-build": "2.0.0-beta.6",
"tauri-plugin": "2.0.0-beta.6"
}

View File

@ -1,5 +1,21 @@
# Changelog
## \[2.0.0-beta.6]
### Bug Fixes
- [`f5f3ed5f`](https://www.github.com/tauri-apps/tauri/commit/f5f3ed5f6faa0b51e83244acc15e9006299a03ba)([#9009](https://www.github.com/tauri-apps/tauri/pull/9009)) Fixes Android and iOS project initialization when the Tauri CLI is on a different disk partition.
- [`d7d03c71`](https://www.github.com/tauri-apps/tauri/commit/d7d03c7197212f3a5bebe08c929417d60927eb89)([#9017](https://www.github.com/tauri-apps/tauri/pull/9017)) Fixes dev watcher on mobile dev.
- [`b658ded6`](https://www.github.com/tauri-apps/tauri/commit/b658ded614cfc169228cb22ad5bfc64478dfe161)([#9015](https://www.github.com/tauri-apps/tauri/pull/9015)) Fixes truncation of existing BuildTask.kt when running `tauri android init`.
### What's Changed
- [`3657ad82`](https://www.github.com/tauri-apps/tauri/commit/3657ad82f88ce528551d032d521c52eed3f396b4)([#9008](https://www.github.com/tauri-apps/tauri/pull/9008)) Updates to new ACL manifest path.
### Dependencies
- Upgraded to `tauri-cli@2.0.0-beta.6`
## \[2.0.0-beta.5]
### New Features
@ -11,7 +27,7 @@
- `tauri permission rm`
- `tauri permission ls`
- `tauri capability new`
### Breaking Changes
- [`b9e6a018`](https://www.github.com/tauri-apps/tauri/commit/b9e6a01879d9233040f3d3fab11c59e70563da7e)([#8937](https://www.github.com/tauri-apps/tauri/pull/8937)) The `custom-protocol` Cargo feature is no longer required on your application and is now ignored. To check if running on production, use `#[cfg(not(dev))]` instead of `#[cfg(feature = "custom-protocol")]`.

View File

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