Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#8064)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog authored Oct 28, 2023
1 parent b89de9f commit 618c453
Show file tree
Hide file tree
Showing 25 changed files with 215 additions and 36 deletions.
15 changes: 15 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
".changes/android-enhance-method-parse.md",
".changes/android-load-config.md",
".changes/android-on-new-intent.md",
".changes/android-onresume.md",
".changes/android-plugin-command-exception.md",
".changes/android-plugin-get-config-typed.md",
".changes/api-app.md",
".changes/api-ipc-refactor.md",
".changes/api-min-node-18.md",
Expand All @@ -24,6 +26,7 @@
".changes/app-plugin-core.md",
".changes/build-android-env-vars.md",
".changes/bump-1.3.md",
".changes/bump-1.5.md",
".changes/bundler-remove-dialog-option.md",
".changes/bundler-zip-deflate.md",
".changes/channel-api.md",
Expand Down Expand Up @@ -87,6 +90,7 @@
".changes/file-associations.md",
".changes/fix-build-script-mobile-runner-npm.md",
".changes/fix-channel-data-request.md",
".changes/fix-clearmocks.md",
".changes/fix-dev-server-proxy-path.md",
".changes/fix-empty-identifier.md",
".changes/fix-icons-android.md",
Expand Down Expand Up @@ -114,6 +118,7 @@
".changes/force-colored-logs.md",
".changes/generate-tauri-activity.md",
".changes/gradle-8.md",
".changes/gtk018.md",
".changes/gtk16.md",
".changes/http-types-refactor.md",
".changes/improve-local-ip-detection.md",
Expand Down Expand Up @@ -156,6 +161,8 @@
".changes/mobile-lib-name.md",
".changes/mobile-open.md",
".changes/mobile-plugin-config.md",
".changes/mobile-plugin-resolve-object.md",
".changes/mobile-plugin-typed-invoke-args.md",
".changes/mobile-plugins.md",
".changes/mobile-webview-access.md",
".changes/mobile.md",
Expand All @@ -178,8 +185,10 @@
".changes/napi-rs.md",
".changes/npm-pass-args.md",
".changes/nsis-bulgarian.md",
".changes/nsis-german.md",
".changes/on-navigation-plugin.md",
".changes/on-new-intent.md",
".changes/on-page-load-hook.md",
".changes/only-proxy-on-mobile.md",
".changes/open-ts-overload.md",
".changes/package-info-crate-name.md",
Expand All @@ -193,9 +202,11 @@
".changes/plugin-setup-refactor.md",
".changes/plugin-template-examples-manifest.md",
".changes/pnpm-android.md",
".changes/prevent-ios-crash.md",
".changes/process-mod-refactor.md",
".changes/raw-encoding.md",
".changes/refactor-macros.md",
".changes/refactor-on-page-load.md",
".changes/refactor-setup.md",
".changes/refactor-tauri-android-dependency.md",
".changes/register_asynchronous_uri_scheme_protocol.md",
Expand Down Expand Up @@ -247,6 +258,7 @@
".changes/tauri-defaultvbox.md",
".changes/tauri-env-args.md",
".changes/tauri-env-vars.md",
".changes/tauri-event-system-apis.md",
".changes/tauri-extranous-result-types-removal.md",
".changes/tauri-libxdo-feat.md",
".changes/tauri-menu-tray-refactor.md",
Expand All @@ -272,15 +284,18 @@
".changes/ubuntu-20.04-cli.js.md",
".changes/ubuntu-20.04-cli.rs.md",
".changes/update-entitlements-api.md",
".changes/update-mobile-template.md",
".changes/validate-appimage.md",
".changes/window-effects-api.md",
".changes/window-effects-config.md",
".changes/window-effects.md",
".changes/window-on-message-refactor.md",
".changes/window-on-navigation-arg.md",
".changes/window-plugin-core.md",
".changes/windows-rs-0.51.md",
".changes/with-webview.md",
".changes/wry-0.32.md",
".changes/wry-0.34.md",
".changes/wry-navigate-method.md",
".changes/wry26.md"
]
Expand Down
11 changes: 11 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-alpha.11]

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-alpha.10]

### New Features
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-alpha.10"
version = "2.0.0-alpha.11"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-alpha.9", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.9", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-alpha.10", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.16"
serde = "1"
serde_json = "1"
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-alpha.10]

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-alpha.9]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-alpha.9"
version = "2.0.0-alpha.10"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "2.0.0-alpha.9", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
11 changes: 11 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-alpha.10]

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-alpha.9]

### New Features
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-alpha.9"
version = "2.0.0-alpha.10"
description = "Macros for the tauri crate."
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "2.0.0-alpha.9", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.9", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-alpha.10", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
18 changes: 18 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## \[1.0.0-alpha.5]

### New Features

- [`74d2464d`](https://www.github.com/tauri-apps/tauri/commit/74d2464d0e490fae341ad73bdf2964cf215fe6c5)([#8116](https://www.github.com/tauri-apps/tauri/pull/8116)) Added `on_page_load` hook for `PendingWindow`.

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- [`9580df1d`](https://www.github.com/tauri-apps/tauri/commit/9580df1d7b027befb9e5f025ea2cbaf2dcc82c8e)([#8084](https://www.github.com/tauri-apps/tauri/pull/8084)) Upgrade `gtk` to 0.18.
- [`c7c2507d`](https://www.github.com/tauri-apps/tauri/commit/c7c2507da16a9beb71bf06745fe7ac1325ab7c2a)([#8035](https://www.github.com/tauri-apps/tauri/pull/8035)) Update `windows` to version `0.51` and `webview2-com` to version `0.27`
- [`9580df1d`](https://www.github.com/tauri-apps/tauri/commit/9580df1d7b027befb9e5f025ea2cbaf2dcc82c8e)([#8084](https://www.github.com/tauri-apps/tauri/pull/8084)) Updated to [email protected], removing the `dox` feature flag.

## \[1.0.0-alpha.4]

### New Features
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.4"
version = "1.0.0-alpha.5"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -14,8 +14,8 @@ rust-version = { workspace = true }

[dependencies]
wry = { version = "0.34.2", default-features = false, features = [ "tao", "file-drop", "protocol" ] }
tauri-runtime = { version = "1.0.0-alpha.3", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.9", path = "../tauri-utils" }
tauri-runtime = { version = "1.0.0-alpha.4", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils" }
raw-window-handle = "0.5"
http = "0.2"

Expand Down
16 changes: 16 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## \[1.0.0-alpha.4]

### New Features

- [`74d2464d`](https://www.github.com/tauri-apps/tauri/commit/74d2464d0e490fae341ad73bdf2964cf215fe6c5)([#8116](https://www.github.com/tauri-apps/tauri/pull/8116)) Added `on_page_load` hook for `PendingWindow`.

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- Upgraded to `[email protected]`
- [`9580df1d`](https://www.github.com/tauri-apps/tauri/commit/9580df1d7b027befb9e5f025ea2cbaf2dcc82c8e)([#8084](https://www.github.com/tauri-apps/tauri/pull/8084)) Upgrade `gtk` to 0.18.
- [`c7c2507d`](https://www.github.com/tauri-apps/tauri/commit/c7c2507da16a9beb71bf06745fe7ac1325ab7c2a)([#8035](https://www.github.com/tauri-apps/tauri/pull/8035)) Update `windows` to version `0.51` and `webview2-com` to version `0.27`

## \[1.0.0-alpha.3]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.0-alpha.9", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils" }
http = "0.2.4"
raw-window-handle = "0.5"
url = { version = "2" }
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-alpha.10]

### Enhancements

- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.

### Dependencies

- [`c7c2507d`](https://www.github.com/tauri-apps/tauri/commit/c7c2507da16a9beb71bf06745fe7ac1325ab7c2a)([#8035](https://www.github.com/tauri-apps/tauri/pull/8035)) Update `windows` to version `0.51` and `webview2-com` to version `0.27`

## \[2.0.0-alpha.9]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "2.0.0-alpha.9"
version = "2.0.0-alpha.10"
description = "Utilities for Tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down
38 changes: 38 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## \[2.0.0-alpha.17]

### Enhancements

- [`b89de9fa`](https://www.github.com/tauri-apps/tauri/commit/b89de9fa43b793c74a42230c7a82c11c3734278e)([#8092](https://www.github.com/tauri-apps/tauri/pull/8092)) Add support for onResume and onPause events in android plugins.
- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release.
- [`198abe3c`](https://www.github.com/tauri-apps/tauri/commit/198abe3c2cae06dacab860b3a93f715dcf529a95)([#8076](https://www.github.com/tauri-apps/tauri/pull/8076)) Mobile plugins can now resolve using an arbitrary object instead of using the `JSObject` class via `Invoke.resolve` on iOS and `Invoke.resolveObject` on Android.

### Bug Fixes

- [`22f26882`](https://www.github.com/tauri-apps/tauri/commit/22f26882cfe0adbfe4c51586a1c9fdcf8e9cfb68)([#8049](https://www.github.com/tauri-apps/tauri/pull/8049)) Prevent crash on iOS when the Swift plugin data is not a valid JSON string.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- [`9580df1d`](https://www.github.com/tauri-apps/tauri/commit/9580df1d7b027befb9e5f025ea2cbaf2dcc82c8e)([#8084](https://www.github.com/tauri-apps/tauri/pull/8084)) Upgrade `gtk` to 0.18.
- [`c7c2507d`](https://www.github.com/tauri-apps/tauri/commit/c7c2507da16a9beb71bf06745fe7ac1325ab7c2a)([#8035](https://www.github.com/tauri-apps/tauri/pull/8035)) Update `windows` to version `0.51` and `webview2-com` to version `0.27`
- [`9580df1d`](https://www.github.com/tauri-apps/tauri/commit/9580df1d7b027befb9e5f025ea2cbaf2dcc82c8e)([#8084](https://www.github.com/tauri-apps/tauri/pull/8084)) Updated to [email protected], removing the `dox` feature flag.

### Breaking Changes

- [`198abe3c`](https://www.github.com/tauri-apps/tauri/commit/198abe3c2cae06dacab860b3a93f715dcf529a95)([#8076](https://www.github.com/tauri-apps/tauri/pull/8076)) The Android `PluginManager.loadConfig` now takes a third parameter to define the class type of the config object.
- [`198abe3c`](https://www.github.com/tauri-apps/tauri/commit/198abe3c2cae06dacab860b3a93f715dcf529a95)([#8076](https://www.github.com/tauri-apps/tauri/pull/8076)) Mobile plugins now have access to a parser for the invoke arguments instead of relying on the `Invoke#get${TYPE}` methods.
- [`74d2464d`](https://www.github.com/tauri-apps/tauri/commit/74d2464d0e490fae341ad73bdf2964cf215fe6c5)([#8116](https://www.github.com/tauri-apps/tauri/pull/8116)) Added `WindowBuilder::on_page_load` and refactored the `Builder::on_page_load` handler to take references.
The page load hook is now triggered for load started and finished events, to determine what triggered it see `PageLoadPayload::event`.
- [`93c8a77b`](https://www.github.com/tauri-apps/tauri/commit/93c8a77b347b9934ec0732784d4b78b3260abc08)([#7996](https://www.github.com/tauri-apps/tauri/pull/7996)) The event system APIS on Rust is recieving a few changes for consistency and quality of life improvements:

- Renamed `Manager::emit_all` to just `Manager::emit` and will now both trigger the events on JS side as well as Rust.
- Removed `Manager::trigger_global`, use `Manager::emit`
- Added `Manager::emit_filter`.
- Removed `Window::emit`, and moved the implementation to `Manager::emit`.
- Removed `Window::emit_and_trigger` and `Window::trigger`, use `Window::emit` instead.
- Changed `Window::emit_to` to only trigger the target window listeners so it won't be catched by `Manager::listen_global`

## \[2.0.0-alpha.16]

### New Features
Expand Down
14 changes: 7 additions & 7 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-alpha.16"
version = "2.0.0-alpha.17"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ features = [
"devtools",
"icon-png",
"protocol-asset",
"test",
"test"
]
rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ]
Expand Down Expand Up @@ -50,10 +50,10 @@ url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "1.0.0-alpha.3", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.9", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.9", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.4", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "1.0.0-alpha.4", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.10", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.10", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.5", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
Expand Down Expand Up @@ -110,7 +110,7 @@ swift-rs = "1.0.5"
[build-dependencies]
heck = "0.4"
once_cell = "1"
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.10" }
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.11" }

[dev-dependencies]
proptest = "1.2.0"
Expand Down
Loading

0 comments on commit 618c453

Please sign in to comment.