Apply Version Updates From Current Changes (#9117)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-03-07 19:56:45 -03:00 committed by GitHub
parent 94ab97a884
commit d701f29f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
26 changed files with 162 additions and 46 deletions

View File

@ -1,7 +1,9 @@
{
"tag": "beta",
"changes": [
".changes/acl-platform-refactor.md",
".changes/acl-scope-refactor.md",
".changes/acl-urlpattern.md",
".changes/allow-recursive-asset-scope-on-file-drop-directory.md",
".changes/api-tauri-event-file-drop-rename.md",
".changes/api-webview-window-new-methods.md",
@ -14,6 +16,7 @@
".changes/bundler-rpm-license.md",
".changes/capabilities-multiwebview.md",
".changes/capabilities-tauri-conf.md",
".changes/capability-builder-platform.md",
".changes/capability-context-refactor.md",
".changes/cli-acl-subcommands.md",
".changes/cli-build-no-bundle.md",
@ -26,14 +29,18 @@
".changes/color-context-generation.md",
".changes/context-runtime-authority.md",
".changes/core-center-window.md",
".changes/core-emit-js-all-targets.md",
".changes/core-js-event-anytarget.md",
".changes/core-once-event-return-event-id.md",
".changes/csp-header-linux.md",
".changes/dev-fn.md",
".changes/downgrade-minisign.md",
".changes/enhance-resource-dir-resolution.md",
".changes/expose-js-image.md",
".changes/fix-acl-webview-check.md",
".changes/fix-add-child-deadlock.md",
".changes/fix-capability-schema-definitions.md",
".changes/fix-channel-ipc-response.md",
".changes/fix-clear-residual-listeners.md",
".changes/fix-cli-migration-http-acl.md",
".changes/fix-codegen-rerun-if-changed.md",

16
Cargo.lock generated
View File

@ -3594,7 +3594,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
[[package]]
name = "tauri"
version = "2.0.0-beta.9"
version = "2.0.0-beta.10"
dependencies = [
"anyhow",
"bytes",
@ -3652,7 +3652,7 @@ dependencies = [
[[package]]
name = "tauri-build"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"anyhow",
"cargo_toml",
@ -3674,7 +3674,7 @@ dependencies = [
[[package]]
name = "tauri-codegen"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"base64 0.22.0",
"brotli",
@ -3711,7 +3711,7 @@ dependencies = [
[[package]]
name = "tauri-macros"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"heck",
"proc-macro2",
@ -3723,7 +3723,7 @@ dependencies = [
[[package]]
name = "tauri-plugin"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"anyhow",
"glob",
@ -3738,7 +3738,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"gtk",
"http",
@ -3754,7 +3754,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"cocoa",
"gtk",
@ -3777,7 +3777,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"aes-gcm",
"brotli",

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
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.7", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.7", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-beta.8", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.8", 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.8]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.8`
### Breaking Changes
- [`ed48e2b3c`](https://www.github.com/tauri-apps/tauri/commit/ed48e2b3c7fa914e4c9af432c02b8154f872c68a)([#9122](https://www.github.com/tauri-apps/tauri/pull/9122)) Expose `tauri::image` module to export the `JsImage` type and removed the `Image` root re-export.
## \[2.0.0-beta.7]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
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.7", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-beta.8", 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.8]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.8`
- Upgraded to `tauri-codegen@2.0.0-beta.8`
## \[2.0.0-beta.7]
### Dependencies

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
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.7", default-features = false, path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.8", 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,12 @@
# Changelog
## \[2.0.0-beta.8]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.8`
- Upgraded to `tauri-runtime@2.0.0-beta.8`
## \[2.0.0-beta.7]
### New Features

View File

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

View File

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

View File

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

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-beta.8]
### Enhancements
- [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Changed the permission and capability platforms to be optional.
### Breaking Changes
- [`4ef17d083`](https://www.github.com/tauri-apps/tauri/commit/4ef17d08336a2e0df4a7ef9adea746d7419710b6)([#9116](https://www.github.com/tauri-apps/tauri/pull/9116)) The ACL configuration for remote URLs now uses the URLPattern standard instead of glob patterns.
## \[2.0.0-beta.7]
### Bug Fixes

View File

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

View File

@ -1,5 +1,34 @@
# Changelog
## \[2.0.0-beta.10]
### New Features
- [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Added `CapabilityBuilder::platform` to link the runtime capability with a specific platform.
### Enhancements
- [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Changed the permission and capability platforms to be optional.
- [`9dc9ca6e3`](https://www.github.com/tauri-apps/tauri/commit/9dc9ca6e38be62ef2746c7a4c2b77b2d67c0d998)([#9113](https://www.github.com/tauri-apps/tauri/pull/9113)) Added `tauri::dev()` to determine whether we are running in development mode or not.
### Bug Fixes
- [`5541aafef`](https://www.github.com/tauri-apps/tauri/commit/5541aafef33113bc292558ba125e685135aabab4)([#9107](https://www.github.com/tauri-apps/tauri/pull/9107)) Fix `emit` and `emit_to` (when used with `EventTarget::Any`) always skipping the webview listeners.
- [`80c12ead4`](https://www.github.com/tauri-apps/tauri/commit/80c12ead4655af91f08046f19c2d478a4cbf94cd)([#9121](https://www.github.com/tauri-apps/tauri/pull/9121)) Fix regression on IPC response when using a channel to return objects.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.8`
- Upgraded to `tauri-runtime@2.0.0-beta.8`
- Upgraded to `tauri-runtime-wry@2.0.0-beta.8`
- Upgraded to `tauri-macros@2.0.0-beta.8`
- Upgraded to `tauri-build@2.0.0-beta.8`
### Breaking Changes
- [`4ef17d083`](https://www.github.com/tauri-apps/tauri/commit/4ef17d08336a2e0df4a7ef9adea746d7419710b6)([#9116](https://www.github.com/tauri-apps/tauri/pull/9116)) The ACL configuration for remote URLs now uses the URLPattern standard instead of glob patterns.
- [`ed48e2b3c`](https://www.github.com/tauri-apps/tauri/commit/ed48e2b3c7fa914e4c9af432c02b8154f872c68a)([#9122](https://www.github.com/tauri-apps/tauri/pull/9122)) Expose `tauri::image` module to export the `JsImage` type and removed the `Image` root re-export.
## \[2.0.0-beta.9]
### New Features

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.9"
version = "2.0.0-beta.10"
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.7", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.7", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.7", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.7", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "2.0.0-beta.8", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.8", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.8", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.8", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
@ -109,8 +109,8 @@ swift-rs = "1.0.6"
[build-dependencies]
heck = "0.4"
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.7" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.7", features = [ "build" ] }
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.8" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.8", features = [ "build" ] }
[dev-dependencies]
proptest = "1.4.0"

View File

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

View File

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

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-beta.8]
### Enhancements
- [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Changed the permission and capability platforms to be optional.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.8`
- Upgraded to `tauri-bundler@2.0.1-beta.4`
## \[2.0.0-beta.7]
### Enhancements

10
tooling/cli/Cargo.lock generated
View File

@ -4760,7 +4760,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.1-beta.3"
version = "2.0.1-beta.4"
dependencies = [
"anyhow",
"ar",
@ -4788,7 +4788,7 @@ dependencies = [
"strsim 0.11.0",
"tar",
"tauri-icns",
"tauri-utils 2.0.0-beta.7",
"tauri-utils 2.0.0-beta.8",
"tempfile",
"thiserror",
"time",
@ -4802,7 +4802,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"anyhow",
"axum",
@ -4854,7 +4854,7 @@ dependencies = [
"tauri-bundler",
"tauri-icns",
"tauri-utils 1.5.3",
"tauri-utils 2.0.0-beta.7",
"tauri-utils 2.0.0-beta.8",
"thiserror",
"tokio",
"toml 0.8.10",
@ -4920,7 +4920,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
dependencies = [
"aes-gcm",
"ctor",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
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.5", features = [ "derive", "env" ] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-beta.3", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.4", default-features = false, path = "../bundler" }
colored = "2.1"
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.7", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "2.0.0-beta.8", 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.7",
"version": "2.0.0-beta.8",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.9",
"tauri-build": "2.0.0-beta.7",
"tauri-plugin": "2.0.0-beta.7"
"tauri": "2.0.0-beta.10",
"tauri-build": "2.0.0-beta.8",
"tauri-plugin": "2.0.0-beta.8"
}

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-beta.8]
### Enhancements
- [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Changed the permission and capability platforms to be optional.
### Dependencies
- Upgraded to `tauri-cli@2.0.0-beta.8`
## \[2.0.0-beta.7]
### Enhancements

View File

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