diff --git a/.changes/pre.json b/.changes/pre.json index aa035e4bd8c..01bb18dda54 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -13,20 +13,25 @@ ".changes/capabilities-multiwebview.md", ".changes/capabilities-tauri-conf.md", ".changes/capability-context-refactor.md", + ".changes/cli-acl-subcommands.md", ".changes/cli-plugin-android-init.md", + ".changes/cli-plugins-migrate.md", ".changes/cli-windows-build-tools-detect-utf8.md", ".changes/codegen-capabilities-attribute.md", ".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/csp-header-linux.md", ".changes/downgrade-minisign.md", ".changes/enhance-resource-dir-resolution.md", ".changes/fix-capability-schema-definitions.md", ".changes/fix-codegen-rerun-if-changed.md", ".changes/fix-config-arg.md", ".changes/fix-invoke-devtools-by-hotkey.md", + ".changes/fix-ios-dev-logs.md", ".changes/fix-migrate-updater.md", + ".changes/fix-mobile-cmd-case.md", ".changes/fix-mobile-process-spawn.md", ".changes/fix-process-ipc-message-fn.md", ".changes/fix-rewrite-schema.md", @@ -40,6 +45,7 @@ ".changes/ios-signing-optional.md", ".changes/nsis-dpi-aware.md", ".changes/progress-bar-state-refactor.md", + ".changes/re-export-progress-bar-status.md", ".changes/refactor-capabilities-schema.md", ".changes/refactor-capability-remote-option.md", ".changes/remove-unit-uri.md", diff --git a/Cargo.lock b/Cargo.lock index 28ba327a7e1..eb2abffd6c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3616,7 +3616,7 @@ checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" [[package]] name = "tauri" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" dependencies = [ "anyhow", "bytes", @@ -3674,7 +3674,7 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "anyhow", "cargo_toml", @@ -3696,7 +3696,7 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "base64", "brotli", @@ -3733,7 +3733,7 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "heck", "proc-macro2", @@ -3745,7 +3745,7 @@ dependencies = [ [[package]] name = "tauri-plugin" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "anyhow", "glob", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "gtk", "http", @@ -3776,7 +3776,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "cocoa", "gtk", @@ -3798,7 +3798,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "aes-gcm", "brotli", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 852dee289c8..5f9464e798c 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.5] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` +- Upgraded to `tauri-codegen@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### Enhancements diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index b3ec29e85be..4401a1025b2 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.4" +version = "2.0.0-beta.5" 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.4", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils", features = [ "build", "resources" ] } +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" ] } cargo_toml = "0.17" serde = "1" serde_json = "1" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 96fd612fcf4..4f46718a03f 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.5] + +### Enhancements + +- [`bc5b5e67`](https://www.github.com/tauri-apps/tauri/commit/bc5b5e671a546512f823f1c157421b4c3311dfc0)([#8984](https://www.github.com/tauri-apps/tauri/pull/8984)) Do not include a CSP tag in the application HTML and rely on the custom protocol response header instead. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### Dependencies diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 5356fdda33b..51563e5b6ba 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.4" +version = "2.0.0-beta.5" 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.4", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "2.0.0-beta.5", 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 9734d6e31cc..415751e25bb 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.5] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` +- Upgraded to `tauri-codegen@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index 5f4da196d5e..5ac64074584 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.4" +version = "2.0.0-beta.5" 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.4", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" } +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" } [features] custom-protocol = [ ] diff --git a/core/tauri-plugin/CHANGELOG.md b/core/tauri-plugin/CHANGELOG.md index 42aacb6efe5..c694ff11299 100644 --- a/core/tauri-plugin/CHANGELOG.md +++ b/core/tauri-plugin/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.5] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### Dependencies diff --git a/core/tauri-plugin/Cargo.toml b/core/tauri-plugin/Cargo.toml index 06419b7b0ac..542d99e5fc8 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.4" +version = "2.0.0-beta.5" 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.4", default-features = false, path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.5", 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 0bda19e8e41..d9a103a76b5 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.5] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` +- Upgraded to `tauri-runtime@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### New Features diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index e45f278fc14..28335519e8b 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.4" +version = "2.0.0-beta.5" 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.4", path = "../tauri-runtime" } -tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" } +tauri-runtime = { version = "2.0.0-beta.5", path = "../tauri-runtime" } +tauri-utils = { version = "2.0.0-beta.5", 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 5c607d5f720..61e00e43475 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.5] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### New Features diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 7474c5b53dd..a2375e65714 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.4" +version = "2.0.0-beta.5" 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.4", path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.5", 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 d65e1e97398..a3e80668f90 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.5] + +### Enhancements + +- [`bc5b5e67`](https://www.github.com/tauri-apps/tauri/commit/bc5b5e671a546512f823f1c157421b4c3311dfc0)([#8984](https://www.github.com/tauri-apps/tauri/pull/8984)) Do not include a CSP tag in the application HTML and rely on the custom protocol response header instead. + ## \[2.0.0-beta.4] ### Breaking Changes diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index 0621b4236da..a97d9a9bbb7 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.4" +version = "2.0.0-beta.5" description = "Utilities for Tauri" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 5e3894ed104..64cd913addb 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## \[2.0.0-beta.7] + +### Enhancements + +- [`bc5b5e67`](https://www.github.com/tauri-apps/tauri/commit/bc5b5e671a546512f823f1c157421b4c3311dfc0)([#8984](https://www.github.com/tauri-apps/tauri/pull/8984)) Do not include a CSP tag in the application HTML and rely on the custom protocol response header instead. + +### Bug Fixes + +- [`6cb601d4`](https://www.github.com/tauri-apps/tauri/commit/6cb601d42e2af75aa818371b8b8f7d5b2e77dc90)([#8983](https://www.github.com/tauri-apps/tauri/pull/8983)) Convert the command name to camelCase when executing a mobile plugin command. +- [`60bf11ab`](https://www.github.com/tauri-apps/tauri/commit/60bf11abcbec8d0362aa256e2293985bfd62620f)([#8986](https://www.github.com/tauri-apps/tauri/pull/8986)) Export `ProgressBarStatus`, regression introduced in `2.0.0-beta.4` + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` +- Upgraded to `tauri-runtime@2.0.0-beta.5` +- Upgraded to `tauri-runtime-wry@2.0.0-beta.5` +- Upgraded to `tauri-macros@2.0.0-beta.5` +- Upgraded to `tauri-build@2.0.0-beta.5` + ## \[2.0.0-beta.6] ### Bug Fixes diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index fcc44172911..dd9d15182a3 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" 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.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 } +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 } 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.4" } -tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.4", features = [ "build" ] } +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" ] } [dev-dependencies] proptest = "1.4.0" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 7957a54f5ce..5484278c230 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.1-beta.1] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` + ## \[2.0.1-beta.0] ### Bug Fixes diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index df18e54150c..215ce605e3f 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "2.0.1-beta.0" +version = "2.0.1-beta.1" 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.4", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "2.0.0-beta.5", 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 9c29fef38be..ebbb9c21fc8 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## \[2.0.0-beta.5] + +### New Features + +- [`06d63d67`](https://www.github.com/tauri-apps/tauri/commit/06d63d67a061459dd533ddcae755922427a6dfc5)([#8827](https://www.github.com/tauri-apps/tauri/pull/8827)) Add new subcommands for managing permissions and cababilities: + + - `tauri permission new` + - `tauri permission add` + - `tauri permission rm` + - `tauri permission ls` + - `tauri capability new` + +### Enhancements + +- [`9be314f0`](https://www.github.com/tauri-apps/tauri/commit/9be314f07a4ca5d14433d41919492f3e91b5536a)([#8951](https://www.github.com/tauri-apps/tauri/pull/8951)) Add plugins to `Cargo.toml` when using `tauri migrate` + +### Bug Fixes + +- [`cbd9755e`](https://www.github.com/tauri-apps/tauri/commit/cbd9755e0926a7e47e59deb50f4bb93d621791a5)([#8977](https://www.github.com/tauri-apps/tauri/pull/8977)) Fixes process logs not showing on `ios dev`. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.5` +- Upgraded to `tauri-bundler@2.0.1-beta.1` + ## \[2.0.0-beta.4] ### Bug Fixes diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 34843337290..af3726d5c10 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4641,7 +4641,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "2.0.1-beta.0" +version = "2.0.1-beta.1" dependencies = [ "anyhow", "ar", @@ -4669,7 +4669,7 @@ dependencies = [ "strsim 0.10.0", "tar", "tauri-icns", - "tauri-utils 2.0.0-beta.4", + "tauri-utils 2.0.0-beta.5", "tempfile", "thiserror", "time", @@ -4683,7 +4683,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "anyhow", "axum", @@ -4735,7 +4735,7 @@ dependencies = [ "tauri-bundler", "tauri-icns", "tauri-utils 1.5.3", - "tauri-utils 2.0.0-beta.4", + "tauri-utils 2.0.0-beta.5", "thiserror", "tokio", "toml 0.8.10", @@ -4801,7 +4801,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index cbec7bf7103..c1476aea2d4 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.4" +version = "2.0.0-beta.5" 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.0", default-features = false, path = "../bundler" } +tauri-bundler = { version = "2.0.1-beta.1", 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.4", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "2.0.0-beta.5", 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 3ffa2d4e068..60ae1b1fd0c 100644 --- a/tooling/cli/metadata-v2.json +++ b/tooling/cli/metadata-v2.json @@ -1,9 +1,9 @@ { "cli.js": { - "version": "2.0.0-beta.4", + "version": "2.0.0-beta.5", "node": ">= 10.0.0" }, - "tauri": "2.0.0-beta.6", - "tauri-build": "2.0.0-beta.4", - "tauri-plugin": "2.0.0-beta.4" + "tauri": "2.0.0-beta.7", + "tauri-build": "2.0.0-beta.5", + "tauri-plugin": "2.0.0-beta.5" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index 3227a900bf2..c0da8988927 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## \[2.0.0-beta.5] + +### New Features + +- [`06d63d67`](https://www.github.com/tauri-apps/tauri/commit/06d63d67a061459dd533ddcae755922427a6dfc5)([#8827](https://www.github.com/tauri-apps/tauri/pull/8827)) Add new subcommands for managing permissions and cababilities: + + - `tauri permission new` + - `tauri permission add` + - `tauri permission rm` + - `tauri permission ls` + - `tauri capability new` + +### Enhancements + +- [`9be314f0`](https://www.github.com/tauri-apps/tauri/commit/9be314f07a4ca5d14433d41919492f3e91b5536a)([#8951](https://www.github.com/tauri-apps/tauri/pull/8951)) Add plugins to `Cargo.toml` when using `tauri migrate` + +### Bug Fixes + +- [`cbd9755e`](https://www.github.com/tauri-apps/tauri/commit/cbd9755e0926a7e47e59deb50f4bb93d621791a5)([#8977](https://www.github.com/tauri-apps/tauri/pull/8977)) Fixes process logs not showing on `ios dev`. + +### Dependencies + +- Upgraded to `tauri-cli@2.0.0-beta.5` + ## \[2.0.0-beta.4] ### Bug Fixes diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index d1fedfa4747..520262056e8 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.4", + "version": "2.0.0-beta.5", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",