Apply Version Updates From Current Changes (#9149)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-03-11 15:14:25 -03:00 committed by GitHub
parent a44cd5a183
commit d349558abb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
28 changed files with 172 additions and 47 deletions

View File

@ -10,6 +10,7 @@
".changes/api-webview-window.md",
".changes/api-window-on-filedrop.md",
".changes/app-manifest.md",
".changes/assets-setup.md",
".changes/beta.md",
".changes/build-schema-generation.md",
".changes/bundler-license.md",
@ -24,9 +25,15 @@
".changes/cli-plugin-android-init.md",
".changes/cli-plugins-migrate.md",
".changes/cli-update-deps-fix-log.md",
".changes/cli-updater-unkown-fields.md",
".changes/cli-windows-build-tools-detect-utf8.md",
".changes/codegen-capabilities-attribute.md",
".changes/codegen-set-assets.md",
".changes/color-context-generation.md",
".changes/context-assets-runtime-generic.md",
".changes/context-assets-unbox.md",
".changes/context-remove-assets-generics.md",
".changes/context-remove-assets-mut.md",
".changes/context-runtime-authority.md",
".changes/core-center-window.md",
".changes/core-emit-js-all-targets.md",
@ -48,10 +55,12 @@
".changes/fix-fs-scope-check-symlink.md",
".changes/fix-invoke-devtools-by-hotkey.md",
".changes/fix-ios-dev-logs.md",
".changes/fix-js-unlisten-all-race.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-remote-domain-url.md",
".changes/fix-reparent.md",
".changes/fix-rewrite-schema.md",
".changes/fix-scope-resolution.md",
@ -62,6 +71,7 @@
".changes/fix-window-destroy-deadlock.md",
".changes/handle-empty-permissions.md",
".changes/ico-featrue-flags.md",
".changes/image-crate.md",
".changes/inline-plugins.md",
".changes/ios-signing-optional.md",
".changes/ipc-post-message-fallback.md",
@ -78,6 +88,7 @@
".changes/refactor-capability-remote-option.md",
".changes/refactor-scope-ret-value.md",
".changes/remove-app-custom-protocol-feature.md",
".changes/remove-from-format-image.md",
".changes/remove-unit-uri.md",
".changes/reparent.md",
".changes/rerun-if-permission-created.md",
@ -110,6 +121,7 @@
".changes/utils-bundle-type-all.md",
".changes/utils-debug-eprintln.md",
".changes/utils-named-capability-file.md",
".changes/utils-remove-asset-trait.md",
".changes/wry-0.36.md",
".changes/wry-0.37.md"
]

16
Cargo.lock generated
View File

@ -3595,7 +3595,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
[[package]]
name = "tauri"
version = "2.0.0-beta.10"
version = "2.0.0-beta.11"
dependencies = [
"anyhow",
"bytes",
@ -3651,7 +3651,7 @@ dependencies = [
[[package]]
name = "tauri-build"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"anyhow",
"cargo_toml",
@ -3673,7 +3673,7 @@ dependencies = [
[[package]]
name = "tauri-codegen"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"base64 0.22.0",
"brotli",
@ -3710,7 +3710,7 @@ dependencies = [
[[package]]
name = "tauri-macros"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"heck",
"proc-macro2",
@ -3722,7 +3722,7 @@ dependencies = [
[[package]]
name = "tauri-plugin"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"anyhow",
"glob",
@ -3737,7 +3737,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"gtk",
"http",
@ -3753,7 +3753,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"cocoa",
"gtk",
@ -3776,7 +3776,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"aes-gcm",
"brotli",

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
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.8", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.8", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-beta.9", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.9", 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.9]
### New Features
- [`ba0206d8a`](https://www.github.com/tauri-apps/tauri/commit/ba0206d8a30a9b43ec5090dcaabd1a23baa1420c)([#9141](https://www.github.com/tauri-apps/tauri/pull/9141)) The `Context` codegen now accepts a `assets` input to define a custom `tauri::Assets` implementation.
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.9`
## \[2.0.0-beta.8]
### Dependencies

View File

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

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-beta.9]
### New Features
- [`ba0206d8a`](https://www.github.com/tauri-apps/tauri/commit/ba0206d8a30a9b43ec5090dcaabd1a23baa1420c)([#9141](https://www.github.com/tauri-apps/tauri/pull/9141)) The `Context` codegen now accepts a `assets` input to define a custom `tauri::Assets` implementation.
### Dependencies
- Upgraded to `tauri-codegen@2.0.0-beta.9`
- Upgraded to `tauri-utils@2.0.0-beta.9`
## \[2.0.0-beta.8]
### Dependencies

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.9]
### Breaking Changes
- [`490a6b424`](https://www.github.com/tauri-apps/tauri/commit/490a6b424e81714524150aef96fbf6cf7004b940)([#9147](https://www.github.com/tauri-apps/tauri/pull/9147)) Removed the `assets::Assets` trait which is now part of the `tauri` crate.
## \[2.0.0-beta.8]
### Enhancements

View File

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

View File

@ -1,5 +1,32 @@
# Changelog
## \[2.0.0-beta.11]
### New Features
- [`490a6b424`](https://www.github.com/tauri-apps/tauri/commit/490a6b424e81714524150aef96fbf6cf7004b940)([#9147](https://www.github.com/tauri-apps/tauri/pull/9147)) The `Assets` trait now include a `setup` method that lets you run initialization code for your custom asset provider.
### Bug Fixes
- [`85de230f3`](https://www.github.com/tauri-apps/tauri/commit/85de230f313da81cbbd061e66e8de64e5b33104c)([#9144](https://www.github.com/tauri-apps/tauri/pull/9144)) Fix old JS listeners being dropped on page load after it was possible to create new listeners.
- [`e673854c8`](https://www.github.com/tauri-apps/tauri/commit/e673854c8333cb8a8d298471737293f17ec5a3ee)([#9133](https://www.github.com/tauri-apps/tauri/pull/9133)) Fixes capability remote domain not allowing subpaths, query parameters and hash when those values are empty.
### Dependencies
- Upgraded to `tauri-macros@2.0.0-beta.9`
- Upgraded to `tauri-utils@2.0.0-beta.9`
- Upgraded to `tauri-build@2.0.0-beta.9`
- Upgraded to `tauri-runtime@2.0.0-beta.9`
- Upgraded to `tauri-runtime-wry@2.0.0-beta.9`
### Breaking Changes
- [`490a6b424`](https://www.github.com/tauri-apps/tauri/commit/490a6b424e81714524150aef96fbf6cf7004b940)([#9147](https://www.github.com/tauri-apps/tauri/pull/9147)) The `Context` struct and the `Assets` trait now takes a `R: Runtime` generic.
- [`ba0206d8a`](https://www.github.com/tauri-apps/tauri/commit/ba0206d8a30a9b43ec5090dcaabd1a23baa1420c)([#9141](https://www.github.com/tauri-apps/tauri/pull/9141)) `Context::assets` now returns `&dyn Assets` instead of `&A` generic.
- [`ba0206d8a`](https://www.github.com/tauri-apps/tauri/commit/ba0206d8a30a9b43ec5090dcaabd1a23baa1420c)([#9141](https://www.github.com/tauri-apps/tauri/pull/9141)) The `Context` type no longer uses the `<A: Assets>` generic so the assets implementation can be swapped with `Context::assets_mut`.
- [`490a6b424`](https://www.github.com/tauri-apps/tauri/commit/490a6b424e81714524150aef96fbf6cf7004b940)([#9147](https://www.github.com/tauri-apps/tauri/pull/9147)) Removed `Context::assets_mut` and added `Context::set_assets`.
- [`db0a24a97`](https://www.github.com/tauri-apps/tauri/commit/db0a24a973191752aeecfbd556faa254b0f17e79)([#9132](https://www.github.com/tauri-apps/tauri/pull/9132)) Use the image crate for `tauri::image::Image` and remove the `from_png_bytes` and `from_ico_bytes` APIs.
## \[2.0.0-beta.10]
### New Features

View File

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

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.5]
### Breaking Changes
- [`db0a24a97`](https://www.github.com/tauri-apps/tauri/commit/db0a24a973191752aeecfbd556faa254b0f17e79)([#9132](https://www.github.com/tauri-apps/tauri/pull/9132)) Remove the `Image.fromPngBytes` and `Image.fromIcoBytes` APIs. Use `Image.fromBytes` instead.
## \[2.0.0-beta.4]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "2.0.0-beta.4",
"version": "2.0.0-beta.5",
"description": "Tauri API definitions",
"funding": {
"type": "opencollective",

View File

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

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "2.0.1-beta.4"
version = "2.0.1-beta.5"
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.8", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "2.0.0-beta.9", 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.9]
### Bug Fixes
- [`c3ea3a2b7`](https://www.github.com/tauri-apps/tauri/commit/c3ea3a2b7d2fe3085f05b63dd1feb962beb4b7b3)([#9126](https://www.github.com/tauri-apps/tauri/pull/9126)) Fix bundling when `plugins > updater > windows > installerArgs` are set in `tauri.conf.json`
### Dependencies
- Upgraded to `tauri-utils@2.0.0-beta.9`
- Upgraded to `tauri-bundler@2.0.1-beta.5`
## \[2.0.0-beta.8]
### Enhancements

10
tooling/cli/Cargo.lock generated
View File

@ -4830,7 +4830,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.1-beta.4"
version = "2.0.1-beta.5"
dependencies = [
"anyhow",
"ar",
@ -4858,7 +4858,7 @@ dependencies = [
"strsim 0.11.0",
"tar",
"tauri-icns",
"tauri-utils 2.0.0-beta.8",
"tauri-utils 2.0.0-beta.9",
"tempfile",
"thiserror",
"time",
@ -4872,7 +4872,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"anyhow",
"axum",
@ -4924,7 +4924,7 @@ dependencies = [
"tauri-bundler",
"tauri-icns",
"tauri-utils 1.5.3",
"tauri-utils 2.0.0-beta.8",
"tauri-utils 2.0.0-beta.9",
"thiserror",
"tokio",
"toml 0.8.10",
@ -4990,7 +4990,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
dependencies = [
"aes-gcm",
"ctor",

View File

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

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-beta.9]
### Bug Fixes
- [`c3ea3a2b7`](https://www.github.com/tauri-apps/tauri/commit/c3ea3a2b7d2fe3085f05b63dd1feb962beb4b7b3)([#9126](https://www.github.com/tauri-apps/tauri/pull/9126)) Fix bundling when `plugins > updater > windows > installerArgs` are set in `tauri.conf.json`
### Dependencies
- Upgraded to `tauri-cli@2.0.0-beta.9`
## \[2.0.0-beta.8]
### Enhancements

View File

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