From 22bb0e5b6111ebf46cf0c1d90be2306d4830ceac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 13:54:08 +0200 Subject: [PATCH] publish new versions (#1551) Co-authored-by: FabianLars --- .changes/pre.json | 3 +++ examples/api/src-tauri/CHANGELOG.md | 7 +++++++ examples/api/src-tauri/Cargo.toml | 6 +++--- plugins/notification/CHANGELOG.md | 5 ++++- plugins/notification/Cargo.toml | 2 +- plugins/sql/CHANGELOG.md | 4 ++++ plugins/sql/Cargo.toml | 2 +- plugins/updater/CHANGELOG.md | 7 ++++++- plugins/updater/Cargo.toml | 2 +- 9 files changed, 30 insertions(+), 8 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 42636b33..d93969dd 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -36,6 +36,7 @@ ".changes/fix-fs-watcher-basedir.md", ".changes/fix-http-default-features.md", ".changes/fix-http-scope-url-match.md", + ".changes/fix-notification-access-violation.md", ".changes/fix-shutdown-timing.md", ".changes/fix-updater-cleanup.md", ".changes/fix-updater-default-features.md", @@ -61,6 +62,7 @@ ".changes/http-user-agent.md", ".changes/impl-ext-for-webview-windows.md", ".changes/msrv-1.75.md", + ".changes/named-tempfile-updater-windows.md", ".changes/notifcation-permission-commands.md", ".changes/notification-fix-dev-check.md", ".changes/notification-fix-dev-name.md", @@ -81,6 +83,7 @@ ".changes/single-instance.macos.md", ".changes/sql-column-order.md", ".changes/sql-public-db-instances.md", + ".changes/sql-update-sqlx-0-8.md", ".changes/target-sdk-34.md", ".changes/tauri-beta-14-dependencies.md", ".changes/tauri-beta-14.md", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 7533048c..fdbab28a 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.14] + +### Dependencies + +- Upgraded to `notification@2.0.0-beta.11` +- Upgraded to `updater@2.0.0-beta.11` + ## \[2.0.0-beta.13] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 58df193f..04b57bb6 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "api" publish = false -version = "2.0.0-beta.13" +version = "2.0.0-beta.14" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -24,7 +24,7 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.11", fea tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.6" } tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.11" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.12" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.10", features = [ "windows7-compat" ] } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.11", features = [ "windows7-compat" ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.8" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.8" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.9" } @@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.9" [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-beta.8" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.8" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.10" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.11" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.9" } diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index 322ad724..07a5d9b9 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.11] + +- [`725ff429`](https://github.com/tauri-apps/plugins-workspace/commit/725ff4295e56df9c30c099813bd64b96fe61b945) ([#1556](https://github.com/tauri-apps/plugins-workspace/pull/1556) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused the `notification` plugin's initialization script to cause the WebView on Windows to throw a `STATUS_ACCESS_VIOLATION` error on remote websites. + ## \[2.0.0-beta.7] - [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24. @@ -100,4 +104,3 @@ 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! ! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! - diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 0dde7aef..e22ea556 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "2.0.0-beta.10" +version = "2.0.0-beta.11" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index dc676473..82a5b4ca 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.10] + +- [`37cb9a66`](https://github.com/tauri-apps/plugins-workspace/commit/37cb9a6681b948908cd9443340f6b23401607df7) ([#1575](https://github.com/tauri-apps/plugins-workspace/pull/1575) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Update sqlx to 0.8 - Check out their changelog for behavior changes: https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md#080---2024-07-22 + ## \[2.0.0-beta.7] - [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24. diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index b171e6b3..a46d2bc7 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index d74ebb63..f376363e 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.11] + +- [`f83b9e98`](https://github.com/tauri-apps/plugins-workspace/commit/f83b9e9813843df19b03b6af1018d848111b2a62) ([#1544](https://github.com/tauri-apps/plugins-workspace/pull/1544) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) On Windows, use a named tempfile with `--installer.exe` (or `.msi`) for v2 updater + + **Breaking Change**: `UpdaterBuilder::new` now takes one more argument `app_name: String` + ## \[2.0.0-beta.7] - [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24. @@ -144,4 +150,3 @@ 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 92fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! - diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 2aa11d8f..8021b6a7 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.0.0-beta.10" +version = "2.0.0-beta.11" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true }