From 903361100cd2dfe1cb5f4027c9a8b53f9d09a612 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 00:23:17 -0300 Subject: [PATCH 1/2] Publish New Versions (v2) (#589) Co-authored-by: lucasfernog --- .changes/pre.json | 5 ++++- examples/api/src-tauri/CHANGELOG.md | 19 ++++++++++++++++ examples/api/src-tauri/Cargo.toml | 30 +++++++++++++------------- plugins/app/CHANGELOG.md | 6 +++++- plugins/app/Cargo.toml | 2 +- plugins/authenticator/CHANGELOG.md | 6 +++++- plugins/authenticator/Cargo.toml | 2 +- plugins/autostart/CHANGELOG.md | 6 +++++- plugins/autostart/Cargo.toml | 2 +- plugins/cli/CHANGELOG.md | 6 +++++- plugins/cli/Cargo.toml | 2 +- plugins/clipboard-manager/CHANGELOG.md | 6 +++++- plugins/clipboard-manager/Cargo.toml | 2 +- plugins/dialog/CHANGELOG.md | 10 ++++++++- plugins/dialog/Cargo.toml | 4 ++-- plugins/fs/CHANGELOG.md | 4 ++++ plugins/fs/Cargo.toml | 2 +- plugins/global-shortcut/CHANGELOG.md | 6 +++++- plugins/global-shortcut/Cargo.toml | 2 +- plugins/http/CHANGELOG.md | 9 ++++++++ plugins/http/Cargo.toml | 4 ++-- plugins/localhost/CHANGELOG.md | 4 ++++ plugins/localhost/Cargo.toml | 2 +- plugins/log/CHANGELOG.md | 6 +++++- plugins/log/Cargo.toml | 2 +- plugins/notification/CHANGELOG.md | 6 +++++- plugins/notification/Cargo.toml | 2 +- plugins/os/CHANGELOG.md | 4 ++++ plugins/os/Cargo.toml | 2 +- plugins/persisted-scope/CHANGELOG.md | 8 +++++++ plugins/persisted-scope/Cargo.toml | 4 ++-- plugins/positioner/CHANGELOG.md | 6 +++++- plugins/positioner/Cargo.toml | 2 +- plugins/process/CHANGELOG.md | 6 +++++- plugins/process/Cargo.toml | 2 +- plugins/shell/CHANGELOG.md | 6 +++++- plugins/shell/Cargo.toml | 2 +- plugins/single-instance/CHANGELOG.md | 4 ++++ plugins/single-instance/Cargo.toml | 2 +- plugins/sql/CHANGELOG.md | 6 +++++- plugins/sql/Cargo.toml | 2 +- plugins/store/CHANGELOG.md | 6 +++++- plugins/store/Cargo.toml | 2 +- plugins/stronghold/CHANGELOG.md | 4 ++++ plugins/stronghold/Cargo.toml | 2 +- plugins/updater/CHANGELOG.md | 6 +++++- plugins/updater/Cargo.toml | 2 +- plugins/upload/CHANGELOG.md | 6 +++++- plugins/upload/Cargo.toml | 2 +- plugins/websocket/CHANGELOG.md | 6 +++++- plugins/websocket/Cargo.toml | 2 +- plugins/window-state/CHANGELOG.md | 6 +++++- plugins/window-state/Cargo.toml | 2 +- plugins/window/CHANGELOG.md | 5 +++++ plugins/window/Cargo.toml | 2 +- 55 files changed, 203 insertions(+), 63 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index e23af163..214833b4 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -8,6 +8,7 @@ ".changes/fs-wiret-binary-file.md", ".changes/http-multipart-refactor.md", ".changes/http-plugin-refactor.md", + ".changes/http-remove-cmd-property.md", ".changes/http-response.md", ".changes/notification-init-script.md", ".changes/notification-revert-sound.md", @@ -22,6 +23,7 @@ ".changes/stronghold-arg-name.md", ".changes/stronghold-constructor.md", ".changes/tauri-alpha.11.md", + ".changes/tauri-alpha.12.md", ".changes/updater-nsis-admin.md", ".changes/updater-nsis.md", ".changes/updater-plugin-refactor.md", @@ -31,6 +33,7 @@ ".changes/window-plugin-refactor.md", ".changes/window-set-effects.md", ".changes/window-state-decorated.md", - ".changes/window-state-promise.md" + ".changes/window-state-promise.md", + ".changes/window-tap-drag-region-detection.md" ] } diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 3ea33457..611dfcd9 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## \[2.0.0-alpha.4] + +### Dependencies + +- Upgraded to `http@2.0.0-alpha.3` +- Upgraded to `app@2.0.0-alpha.2` +- Upgraded to `cli@2.0.0-alpha.2` +- Upgraded to `clipboard-manager@2.0.0-alpha.2` +- Upgraded to `dialog@2.0.0-alpha.2` +- Upgraded to `fs@2.0.0-alpha.2` +- Upgraded to `global-shortcut@2.0.0-alpha.2` +- Upgraded to `log-plugin@2.0.0-alpha.2` +- Upgraded to `notification@2.0.0-alpha.3` +- Upgraded to `os@2.0.0-alpha.2` +- Upgraded to `process@2.0.0-alpha.2` +- Upgraded to `shell@2.0.0-alpha.2` +- Upgraded to `updater@2.0.0-alpha.2` +- Upgraded to `window@2.0.0-alpha.2` + ## \[2.0.0-alpha.3] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 25213a2f..b364dc90 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-alpha.3" +version = "2.0.0-alpha.4" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -18,17 +18,17 @@ serde_json = { workspace = true } serde = { workspace = true } tiny_http = "0.11" log = { workspace = true } -tauri-plugin-app = { path = "../../../plugins/app", version = "2.0.0-alpha.1" } -tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-alpha.1" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-alpha.1" } -tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-alpha.0" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.1" } -tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.2" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-alpha.2", features = [ "windows7-compat" ] } -tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.1" } -tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-alpha.1" } -tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-alpha.1" } -tauri-plugin-window = { path = "../../../plugins/window", version = "2.0.0-alpha.1", features = [ "devtools", "icon-ico", "icon-png" ] } +tauri-plugin-app = { path = "../../../plugins/app", version = "2.0.0-alpha.2" } +tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-alpha.2" } +tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-alpha.2" } +tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-alpha.2" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.2" } +tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.3" } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-alpha.3", features = [ "windows7-compat" ] } +tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.2" } +tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-alpha.2" } +tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-alpha.2" } +tauri-plugin-window = { path = "../../../plugins/window", version = "2.0.0-alpha.2", features = [ "devtools", "icon-ico", "icon-png" ] } [dependencies.tauri] workspace = true @@ -42,9 +42,9 @@ tauri-plugin-window = { path = "../../../plugins/window", version = "2.0.0-alpha ] [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-alpha.1" } -tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-alpha.1" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.1" } +tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-alpha.2" } +tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-alpha.2" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.2" } [target."cfg(target_os = \"windows\")".dependencies] window-shadows = "0.2" diff --git a/plugins/app/CHANGELOG.md b/plugins/app/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/app/CHANGELOG.md +++ b/plugins/app/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/app/Cargo.toml b/plugins/app/Cargo.toml index 8a4ccdc4..af23d8f1 100644 --- a/plugins/app/Cargo.toml +++ b/plugins/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-app" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "APIs to read application metadata and change app visibility on macOS." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/authenticator/CHANGELOG.md b/plugins/authenticator/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/authenticator/CHANGELOG.md +++ b/plugins/authenticator/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/authenticator/Cargo.toml b/plugins/authenticator/Cargo.toml index f56d6070..b5df861f 100644 --- a/plugins/authenticator/Cargo.toml +++ b/plugins/authenticator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-authenticator" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Use hardware security-keys in your Tauri App." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/autostart/CHANGELOG.md b/plugins/autostart/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/autostart/CHANGELOG.md +++ b/plugins/autostart/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/autostart/Cargo.toml b/plugins/autostart/Cargo.toml index b7f69176..aa499665 100644 --- a/plugins/autostart/Cargo.toml +++ b/plugins/autostart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-autostart" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Automatically launch your application at startup." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/cli/CHANGELOG.md b/plugins/cli/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/cli/CHANGELOG.md +++ b/plugins/cli/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/cli/Cargo.toml b/plugins/cli/Cargo.toml index 0a680821..a0c78ac3 100644 --- a/plugins/cli/Cargo.toml +++ b/plugins/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-cli" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Parse arguments from your Tauri application's command line interface." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/clipboard-manager/CHANGELOG.md b/plugins/clipboard-manager/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/clipboard-manager/CHANGELOG.md +++ b/plugins/clipboard-manager/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/clipboard-manager/Cargo.toml b/plugins/clipboard-manager/Cargo.toml index ef24d853..a05c4af1 100644 --- a/plugins/clipboard-manager/Cargo.toml +++ b/plugins/clipboard-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-clipboard-manager" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Read and write to the system clipboard." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index 8dea25ed..56ee4c2d 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + +### Dependencies + +- Upgraded to `fs@2.0.0-alpha.2` + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +15,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -d6e80b)([#545](https://github.com/tauri-apps/plugins-workspace/pull/545)) Fixes docs.rs build by enabling the `tauri/dox` feature flag. + d6e80b)([#545](https://github.com/tauri-apps/plugins-workspace/pull/545)) Fixes docs.rs build by enabling the `tauri/dox` feature flag. - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. ### Dependencies diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 202acfd8..1a18271a 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -16,7 +16,7 @@ serde_json = { workspace = true } tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.1" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.2" } [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] glib = "0.16" diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index e697b957..c3abb184 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`0bba693`](https://github.com/tauri-apps/plugins-workspace/commit/0bba6932c09da5267a9dbf75ba52252e39458420)([#454](https://github.com/tauri-apps/plugins-workspace/pull/454)) Fix `writeBinaryFile` crashing with `command 'write_binary_file' not found` diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index 0c6c6eff..8f7f86a1 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Access the file system." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/global-shortcut/CHANGELOG.md b/plugins/global-shortcut/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/global-shortcut/CHANGELOG.md +++ b/plugins/global-shortcut/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/global-shortcut/Cargo.toml b/plugins/global-shortcut/Cargo.toml index 68991ff8..b49efd74 100644 --- a/plugins/global-shortcut/Cargo.toml +++ b/plugins/global-shortcut/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-global-shortcut" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Register global hotkeys listeners on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index aef7b1b6..ef8f521d 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.0-alpha.3] + +- [`2cb0fa7`](https://github.com/tauri-apps/plugins-workspace/commit/2cb0fa719b8b1f5ac07dada93520dbbcf637d64c)([#587](https://github.com/tauri-apps/plugins-workspace/pull/587)) Remove `cmd` property which breaks invoke call. +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + +### Dependencies + +- Upgraded to `fs@2.0.0-alpha.2` + ## \[2.0.0-alpha.2] - [`aec17a9`](https://github.com/tauri-apps/plugins-workspace/commit/aec17a90fc365774c70c4876b94a899416120e26)([#558](https://github.com/tauri-apps/plugins-workspace/pull/558)) Improve response performance by using the new IPC streaming data. diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 90114430..5d96c422 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -14,7 +14,7 @@ serde = { workspace = true } serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.1" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.2" } glob = "0.3" http = "0.2" reqwest = { version = "0.11", default-features = false } diff --git a/plugins/localhost/CHANGELOG.md b/plugins/localhost/CHANGELOG.md index e4124e09..c7a91c82 100644 --- a/plugins/localhost/CHANGELOG.md +++ b/plugins/localhost/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d5a7c77`](https://github.com/tauri-apps/plugins-workspace/commit/d5a7c77a8d0e7912a6b07b22ed329004edd6e80b)([#545](https://github.com/tauri-apps/plugins-workspace/pull/545)) Fixes docs.rs build by enabling the `tauri/dox` feature flag. diff --git a/plugins/localhost/Cargo.toml b/plugins/localhost/Cargo.toml index 62cf2d94..4147cd1b 100644 --- a/plugins/localhost/Cargo.toml +++ b/plugins/localhost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-localhost" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Expose your apps assets through a localhost server instead of the default custom protocol." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/log/CHANGELOG.md b/plugins/log/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/log/CHANGELOG.md +++ b/plugins/log/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index a7eda25f..b43ec053 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-log" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Configurable logging for your Tauri app." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index ca8d58f0..e9f3407b 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.3] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -12,7 +16,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -ub.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. + ub.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. ## \[2.0.0-alpha.1] diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 43de2c5b..7bcbc8fa 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/CHANGELOG.md b/plugins/os/CHANGELOG.md index 20bf1328..a74c8386 100644 --- a/plugins/os/CHANGELOG.md +++ b/plugins/os/CHANGELOG.md @@ -2,6 +2,10 @@ ## \[2.0.0-alpha.2] +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + +## \[2.0.0-alpha.2] + - [`e510f2f`](https://github.com/tauri-apps/plugins-workspace/commit/e510f2fe4c227c107a1faca9386b5ceb326611ed)([#561](https://github.com/tauri-apps/plugins-workspace/pull/561)) Fix `macss -> macos` typo in `OsType` type. ## \[2.0.0-alpha.1] diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index cf973ade..cbef1cc1 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-os" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index 2822e43a..e918b31e 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + +### Dependencies + +- Upgraded to `fs@2.0.0-alpha.2` + ## \[2.0.0-alpha.1] - [`d5a7c77`](https://github.com/tauri-apps/plugins-workspace/commit/d5a7c77a8d0e7912a6b07b22ed329004edd6e80b)([#545](https://github.com/tauri-apps/plugins-workspace/pull/545)) Fixes docs.rs build by enabling the `tauri/dox` feature flag. diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index 50f32234..e38b1e23 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-persisted-scope" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -18,7 +18,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1.0" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.1" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.2" } [features] protocol-asset = [ "tauri/protocol-asset" ] diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index f3a52aa8..962ea04a 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -63,7 +67,7 @@ - [39e517c](https://www.github.com/JonasKruckenberg/tauri-plugin-positioner/commit/39e517c145a4a901839ae9b46e296370ce6ababf) Update update-metadata.md on 2021-11-19 data on 2021-11-19 - [39e517c](https://www.github.com/JonasKruckenberg/tauri-plugin-positioner/commit/39e517c145a4a901839ae9b46e296370ce6ababf) Update update-metadata.md on 2021-11-19 -nberg/tauri-plugin-positioner/commit/119d9c47639e1df16f5520a08f039bdb6f39532b) update metadata on 2021-11-19 + nberg/tauri-plugin-positioner/commit/119d9c47639e1df16f5520a08f039bdb6f39532b) update metadata on 2021-11-19 - [39e517c](https://www.github.com/JonasKruckenberg/tauri-plugin-positioner/commit/39e517c145a4a901839ae9b46e296370ce6ababf) Update update-metadata.md on 2021-11-19 data on 2021-11-19 - [39e517c](https://www.github.com/JonasKruckenberg/tauri-plugin-positioner/commit/39e517c145a4a901839ae9b46e296370ce6ababf) Update update-metadata.md on 2021-11-19 diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index a85ab340..b0ddefe2 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/process/CHANGELOG.md b/plugins/process/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/process/CHANGELOG.md +++ b/plugins/process/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/process/Cargo.toml b/plugins/process/Cargo.toml index fa4fe680..91cd79f0 100644 --- a/plugins/process/Cargo.toml +++ b/plugins/process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-process" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Access the current process of your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/shell/CHANGELOG.md b/plugins/shell/CHANGELOG.md index 648e7be7..1b459ee1 100644 --- a/plugins/shell/CHANGELOG.md +++ b/plugins/shell/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -d `Command::arg`, `Command::env` and changed `Command::new` input type. + d `Command::arg`, `Command::env` and changed `Command::new` input type. - [`52ef0ad`](https://github.com/tauri-apps/plugins-workspace/commit/52ef0addd84a1737a4e1a4b07113a30d3d496fa1)([#463](https://github.com/tauri-apps/plugins-workspace/pull/463)) Ensure the launched process is detached so it can out-live your tauri app and does not shutdown with it. - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index a89a9a1b..dcf0970d 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-shell" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index e4124e09..c7a91c82 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d5a7c77`](https://github.com/tauri-apps/plugins-workspace/commit/d5a7c77a8d0e7912a6b07b22ed329004edd6e80b)([#545](https://github.com/tauri-apps/plugins-workspace/pull/545)) Fixes docs.rs build by enabling the `tauri/dox` feature flag. diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index e4a4f3ad..aedca4f9 100644 --- a/plugins/single-instance/Cargo.toml +++ b/plugins/single-instance/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-single-instance" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Ensure a single instance of your tauri app is running." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index f723fce1..84759d71 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/store/CHANGELOG.md b/plugins/store/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/store/CHANGELOG.md +++ b/plugins/store/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/store/Cargo.toml b/plugins/store/Cargo.toml index ae04b589..ea12a464 100644 --- a/plugins/store/Cargo.toml +++ b/plugins/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-store" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Simple, persistent key-value store." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/stronghold/CHANGELOG.md b/plugins/stronghold/CHANGELOG.md index 1d2fbdb6..9e51dd31 100644 --- a/plugins/stronghold/CHANGELOG.md +++ b/plugins/stronghold/CHANGELOG.md @@ -2,6 +2,10 @@ ## \[2.0.0-alpha.2] +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + +## \[2.0.0-alpha.2] + - [`aba07c2`](https://github.com/tauri-apps/plugins-workspace/commit/aba07c27b887c1cc54026024227cb3f74c91e21a)([#468](https://github.com/tauri-apps/plugins-workspace/pull/468)) Change the argument name of the `Stronghold.remove` from `location` to `recordPath` to match the Stronghold command argument - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. diff --git a/plugins/stronghold/Cargo.toml b/plugins/stronghold/Cargo.toml index 69e8fc98..6341a5a3 100644 --- a/plugins/stronghold/Cargo.toml +++ b/plugins/stronghold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-stronghold" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Store secrets and keys using the IOTA Stronghold encrypted database." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index eeab0f3b..b427e7bb 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -8,7 +12,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -ater. + ater. - [`1cb8311`](https://github.com/tauri-apps/plugins-workspace/commit/1cb831183c63ba5bd3f72d8a482992f6467d950d)([#405](https://github.com/tauri-apps/plugins-workspace/pull/405)) Implement passive mode on NSIS and automatically restart after NSIS update. - [`4ab90f0`](https://github.com/tauri-apps/plugins-workspace/commit/4ab90f048eab2918344f97dc8e04413a404e392d)([#431](https://github.com/tauri-apps/plugins-workspace/pull/431)) The updater plugin is recieving a few changes to improve consistency and ergonomics of the Rust and JS APIs diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 47c92a7a..240666b7 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/upload/CHANGELOG.md b/plugins/upload/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/upload/CHANGELOG.md +++ b/plugins/upload/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index e30a8efe..96974206 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-upload" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Upload files from disk to a remote server over HTTP." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/websocket/CHANGELOG.md b/plugins/websocket/CHANGELOG.md index ff1bcea9..3109c03f 100644 --- a/plugins/websocket/CHANGELOG.md +++ b/plugins/websocket/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -7,7 +11,7 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -te to alpha.11. + te to alpha.11. ## \[2.0.0-alpha.0] diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index 15359cd6..9d13cd75 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-websocket" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Expose a WebSocket server to your Tauri frontend." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index 71cca910..021cb42a 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. @@ -8,4 +12,4 @@ ## \[2.0.0-alpha.0] - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -lugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + lugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index 0bcdb1b1..d86e7774 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/window/CHANGELOG.md b/plugins/window/CHANGELOG.md index 21fd21b0..352c6c20 100644 --- a/plugins/window/CHANGELOG.md +++ b/plugins/window/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.0.0-alpha.2] + +- [`4e2cef9`](https://github.com/tauri-apps/plugins-workspace/commit/4e2cef9b702bbbb9cf4ee17de50791cb21f1b2a4)([#593](https://github.com/tauri-apps/plugins-workspace/pull/593)) Update to alpha.12. +- [`70e535a`](https://github.com/tauri-apps/plugins-workspace/commit/70e535abd5410873862fb035b6b66f0fea1edde2)([#590](https://github.com/tauri-apps/plugins-workspace/pull/590)) On macOS, fixed tapping on custom title bar doesn't maximize the window. + ## \[2.0.0-alpha.1] - [`d74fc0a`](https://github.com/tauri-apps/plugins-workspace/commit/d74fc0a097996e90a37be8f57d50b7d1f6ca616f)([#555](https://github.com/tauri-apps/plugins-workspace/pull/555)) Update to alpha.11. diff --git a/plugins/window/Cargo.toml b/plugins/window/Cargo.toml index feb24558..bd0c1200 100644 --- a/plugins/window/Cargo.toml +++ b/plugins/window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" description = "Interact with the Tauri window." edition = { workspace = true } authors = { workspace = true } From 2409b01fe7cd66164c94c541822be13fb3fdaf37 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Tue, 12 Sep 2023 09:39:17 -0300 Subject: [PATCH 2/2] chore(examples): update to tauri 2.0.0-alpha.14 (#600) --- Cargo.lock | 66 +++---- examples/api/package.json | 4 +- examples/api/src-tauri/tauri.conf.json | 6 +- plugins/app/package.json | 2 +- plugins/authenticator/package.json | 2 +- plugins/autostart/package.json | 2 +- plugins/cli/package.json | 2 +- plugins/clipboard-manager/package.json | 2 +- plugins/dialog/package.json | 2 +- plugins/dialog/test/tauri.conf.json | 2 +- plugins/fs/package.json | 2 +- plugins/global-shortcut/package.json | 2 +- plugins/http/package.json | 2 +- plugins/log/package.json | 2 +- plugins/notification/package.json | 2 +- plugins/notification/test/tauri.conf.json | 2 +- plugins/os/package.json | 2 +- plugins/positioner/package.json | 2 +- plugins/process/package.json | 2 +- plugins/shell/package.json | 2 +- .../examples/vanilla/package.json | 2 +- .../vanilla/src-tauri/tauri.conf.json | 2 +- plugins/sql/package.json | 2 +- plugins/store/package.json | 2 +- plugins/stronghold/package.json | 2 +- plugins/updater/package.json | 2 +- plugins/upload/package.json | 2 +- .../examples/svelte-app/package.json | 2 +- plugins/websocket/package.json | 2 +- plugins/window-state/package.json | 2 +- plugins/window/package.json | 2 +- pnpm-lock.yaml | 176 +++++++++--------- shared/template/package.json | 2 +- 33 files changed, 155 insertions(+), 155 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65bf70eb..dd1c2cad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,7 +230,7 @@ checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" [[package]] name = "api" -version = "2.0.0-alpha.3" +version = "2.0.0-alpha.4" dependencies = [ "log", "serde", @@ -5505,9 +5505,9 @@ checksum = "1d2faeef5759ab89935255b1a4cd98e0baf99d1085e37d36599c625dac49ae8e" [[package]] name = "tauri" -version = "2.0.0-alpha.12" +version = "2.0.0-alpha.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ee399da0cca87a81e1bf9365321340595a45a24190f20b1aa476b4cd96c3318" +checksum = "46acc0b6d20fe3a7c27e6036d9ef52d2c28afd1b6178ffc2dd4881f9994fecd7" dependencies = [ "anyhow", "bytes 1.4.0", @@ -5620,14 +5620,14 @@ dependencies = [ [[package]] name = "tauri-plugin-app" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "tauri", ] [[package]] name = "tauri-plugin-authenticator" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "authenticator", "base64 0.21.2", @@ -5646,7 +5646,7 @@ dependencies = [ [[package]] name = "tauri-plugin-autostart" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "auto-launch", "log", @@ -5658,7 +5658,7 @@ dependencies = [ [[package]] name = "tauri-plugin-cli" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "clap", "log", @@ -5670,7 +5670,7 @@ dependencies = [ [[package]] name = "tauri-plugin-clipboard-manager" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "arboard", "log", @@ -5683,7 +5683,7 @@ dependencies = [ [[package]] name = "tauri-plugin-dialog" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "glib", "log", @@ -5699,7 +5699,7 @@ dependencies = [ [[package]] name = "tauri-plugin-fs" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "anyhow", "glob", @@ -5713,7 +5713,7 @@ dependencies = [ [[package]] name = "tauri-plugin-global-shortcut" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "global-hotkey", "log", @@ -5725,7 +5725,7 @@ dependencies = [ [[package]] name = "tauri-plugin-http" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "data-url", "glob", @@ -5741,7 +5741,7 @@ dependencies = [ [[package]] name = "tauri-plugin-localhost" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "http", "log", @@ -5754,7 +5754,7 @@ dependencies = [ [[package]] name = "tauri-plugin-log" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "android_logger", "byte-unit", @@ -5773,7 +5773,7 @@ dependencies = [ [[package]] name = "tauri-plugin-notification" -version = "2.0.0-alpha.2" +version = "2.0.0-alpha.3" dependencies = [ "log", "notify-rust", @@ -5791,7 +5791,7 @@ dependencies = [ [[package]] name = "tauri-plugin-os" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "gethostname 0.4.3", "log", @@ -5806,7 +5806,7 @@ dependencies = [ [[package]] name = "tauri-plugin-persisted-scope" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "aho-corasick", "bincode", @@ -5820,7 +5820,7 @@ dependencies = [ [[package]] name = "tauri-plugin-positioner" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "log", "serde", @@ -5832,14 +5832,14 @@ dependencies = [ [[package]] name = "tauri-plugin-process" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "tauri", ] [[package]] name = "tauri-plugin-shell" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "encoding_rs", "log", @@ -5855,7 +5855,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "log", "serde", @@ -5868,7 +5868,7 @@ dependencies = [ [[package]] name = "tauri-plugin-sql" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "futures-core", "log", @@ -5883,7 +5883,7 @@ dependencies = [ [[package]] name = "tauri-plugin-store" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "log", "serde", @@ -5894,7 +5894,7 @@ dependencies = [ [[package]] name = "tauri-plugin-stronghold" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "hex", "iota-crypto 0.23.0", @@ -5911,7 +5911,7 @@ dependencies = [ [[package]] name = "tauri-plugin-updater" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "base64 0.21.2", "dirs-next", @@ -5936,7 +5936,7 @@ dependencies = [ [[package]] name = "tauri-plugin-upload" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "futures-util", "log", @@ -5952,7 +5952,7 @@ dependencies = [ [[package]] name = "tauri-plugin-websocket" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "futures-util", "log", @@ -5967,7 +5967,7 @@ dependencies = [ [[package]] name = "tauri-plugin-window" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "serde", "tauri", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "tauri-plugin-window-state" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" dependencies = [ "bincode", "bitflags 2.3.3", @@ -6009,9 +6009,9 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79f53914c8ab391c5cd83f0bc269f8dfa6d48cb826d0584b57d396862360dc38" +checksum = "fce46e920b62699045e02db3006017d24324119189dfab2b12261aeebf98f4be" dependencies = [ "cocoa 0.24.1", "gtk", @@ -7409,9 +7409,9 @@ dependencies = [ [[package]] name = "wry" -version = "0.32.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41fc00d1511c9ff5b600a6c6bde254eb39b9fcc5c0369b71a8efd5ff807bf937" +checksum = "bf906b43b8042615c85a978dceb4d4b72214d27b850b54abc3edeb7c5a67abab" dependencies = [ "base64 0.21.2", "block", diff --git a/examples/api/package.json b/examples/api/package.json index afed34b2..b90a5adc 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -9,7 +9,7 @@ "serve": "vite preview" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6", + "@tauri-apps/api": "2.0.0-alpha.8", "@tauri-apps/plugin-app": "2.0.0-alpha.1", "@tauri-apps/plugin-cli": "2.0.0-alpha.1", "@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.1", @@ -29,7 +29,7 @@ "@iconify-json/codicon": "^1.1.26", "@iconify-json/ph": "^1.1.5", "@sveltejs/vite-plugin-svelte": "^2.4.1", - "@tauri-apps/cli": "2.0.0-alpha.12", + "@tauri-apps/cli": "2.0.0-alpha.14", "@unocss/extractor-svelte": "^0.53.1", "internal-ip": "^8.0.0", "svelte": "^3.59.1", diff --git a/examples/api/src-tauri/tauri.conf.json b/examples/api/src-tauri/tauri.conf.json index 147c3ba0..02fd5c3b 100644 --- a/examples/api/src-tauri/tauri.conf.json +++ b/examples/api/src-tauri/tauri.conf.json @@ -124,10 +124,10 @@ "security": { "csp": { "default-src": "'self' customprotocol: asset:", - "connect-src": "ipc: https://ipc.localhost", + "connect-src": "ipc: http://ipc.localhost", "font-src": ["https://fonts.gstatic.com"], - "img-src": "'self' asset: https://asset.localhost blob: data:", - "style-src": "'unsafe-inline' 'self' https://fonts.googleapis.com" + "img-src": "'self' asset: http://asset.localhost blob: data:", + "style-src": "'unsafe-inline' 'self' http://fonts.googleapis.com" }, "freezePrototype": true, "assetProtocol": { diff --git a/plugins/app/package.json b/plugins/app/package.json index 844b5240..77d5bf43 100644 --- a/plugins/app/package.json +++ b/plugins/app/package.json @@ -27,6 +27,6 @@ "tslib": "^2.5.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/authenticator/package.json b/plugins/authenticator/package.json index 9d43f1d7..b356ac3c 100644 --- a/plugins/authenticator/package.json +++ b/plugins/authenticator/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/autostart/package.json b/plugins/autostart/package.json index 98644506..73289746 100644 --- a/plugins/autostart/package.json +++ b/plugins/autostart/package.json @@ -27,6 +27,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/cli/package.json b/plugins/cli/package.json index 42984805..f34d9125 100644 --- a/plugins/cli/package.json +++ b/plugins/cli/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/clipboard-manager/package.json b/plugins/clipboard-manager/package.json index 355ff3ec..b3451ae9 100644 --- a/plugins/clipboard-manager/package.json +++ b/plugins/clipboard-manager/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/dialog/package.json b/plugins/dialog/package.json index b15767cc..9f72fedd 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/dialog/test/tauri.conf.json b/plugins/dialog/test/tauri.conf.json index 19cd8a5a..13c0678a 100644 --- a/plugins/dialog/test/tauri.conf.json +++ b/plugins/dialog/test/tauri.conf.json @@ -16,7 +16,7 @@ } ], "security": { - "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'" + "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: http://tauri.localhost 'unsafe-eval' 'unsafe-inline' 'self'" } } } diff --git a/plugins/fs/package.json b/plugins/fs/package.json index b2e470f5..109fdf43 100644 --- a/plugins/fs/package.json +++ b/plugins/fs/package.json @@ -28,6 +28,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/global-shortcut/package.json b/plugins/global-shortcut/package.json index ae5fcfea..89f81d08 100644 --- a/plugins/global-shortcut/package.json +++ b/plugins/global-shortcut/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/http/package.json b/plugins/http/package.json index 4c7339c4..c086dc13 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -27,6 +27,6 @@ "tslib": "^2.5.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/log/package.json b/plugins/log/package.json index c9069857..278d28a3 100644 --- a/plugins/log/package.json +++ b/plugins/log/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/notification/package.json b/plugins/notification/package.json index 1fdde204..b3fa6ed6 100644 --- a/plugins/notification/package.json +++ b/plugins/notification/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/notification/test/tauri.conf.json b/plugins/notification/test/tauri.conf.json index 19cd8a5a..13c0678a 100644 --- a/plugins/notification/test/tauri.conf.json +++ b/plugins/notification/test/tauri.conf.json @@ -16,7 +16,7 @@ } ], "security": { - "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'" + "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: http://tauri.localhost 'unsafe-eval' 'unsafe-inline' 'self'" } } } diff --git a/plugins/os/package.json b/plugins/os/package.json index 57bb8560..fb8522e2 100644 --- a/plugins/os/package.json +++ b/plugins/os/package.json @@ -27,6 +27,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/positioner/package.json b/plugins/positioner/package.json index b524f3d2..3aa92e58 100644 --- a/plugins/positioner/package.json +++ b/plugins/positioner/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/process/package.json b/plugins/process/package.json index 48dc1f59..77fd053e 100644 --- a/plugins/process/package.json +++ b/plugins/process/package.json @@ -27,6 +27,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/shell/package.json b/plugins/shell/package.json index 9e61207f..003e05a1 100644 --- a/plugins/shell/package.json +++ b/plugins/shell/package.json @@ -27,6 +27,6 @@ "tslib": "^2.4.1" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/single-instance/examples/vanilla/package.json b/plugins/single-instance/examples/vanilla/package.json index 230ac83e..e2cf21bb 100644 --- a/plugins/single-instance/examples/vanilla/package.json +++ b/plugins/single-instance/examples/vanilla/package.json @@ -9,6 +9,6 @@ "author": "", "license": "MIT", "devDependencies": { - "@tauri-apps/cli": "2.0.0-alpha.12" + "@tauri-apps/cli": "2.0.0-alpha.14" } } diff --git a/plugins/single-instance/examples/vanilla/src-tauri/tauri.conf.json b/plugins/single-instance/examples/vanilla/src-tauri/tauri.conf.json index a0593744..ee356ba2 100644 --- a/plugins/single-instance/examples/vanilla/src-tauri/tauri.conf.json +++ b/plugins/single-instance/examples/vanilla/src-tauri/tauri.conf.json @@ -50,7 +50,7 @@ } ], "security": { - "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" + "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: http://tauri.localhost 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" } } } diff --git a/plugins/sql/package.json b/plugins/sql/package.json index 95debcf8..4c7947c2 100644 --- a/plugins/sql/package.json +++ b/plugins/sql/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/store/package.json b/plugins/store/package.json index 1737be27..62a91df9 100644 --- a/plugins/store/package.json +++ b/plugins/store/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/stronghold/package.json b/plugins/stronghold/package.json index 2be6601f..7e9c34b1 100644 --- a/plugins/stronghold/package.json +++ b/plugins/stronghold/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/updater/package.json b/plugins/updater/package.json index bb4f24ab..a9728ef0 100644 --- a/plugins/updater/package.json +++ b/plugins/updater/package.json @@ -27,6 +27,6 @@ "tslib": "^2.5.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/upload/package.json b/plugins/upload/package.json index fce3a920..6fcf3628 100644 --- a/plugins/upload/package.json +++ b/plugins/upload/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/websocket/examples/svelte-app/package.json b/plugins/websocket/examples/svelte-app/package.json index 0b118161..8a66631d 100644 --- a/plugins/websocket/examples/svelte-app/package.json +++ b/plugins/websocket/examples/svelte-app/package.json @@ -13,7 +13,7 @@ "devDependencies": { "@sveltejs/adapter-auto": "2.1.0", "@sveltejs/kit": "1.22.3", - "@tauri-apps/cli": "2.0.0-alpha.12", + "@tauri-apps/cli": "2.0.0-alpha.14", "svelte": "4.0.5", "svelte-check": "3.4.6", "tslib": "2.6.0", diff --git a/plugins/websocket/package.json b/plugins/websocket/package.json index d2d6c437..d44e4107 100644 --- a/plugins/websocket/package.json +++ b/plugins/websocket/package.json @@ -27,6 +27,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/window-state/package.json b/plugins/window-state/package.json index f59709a0..a12705b6 100644 --- a/plugins/window-state/package.json +++ b/plugins/window-state/package.json @@ -28,6 +28,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/plugins/window/package.json b/plugins/window/package.json index c7641200..576cc49f 100644 --- a/plugins/window/package.json +++ b/plugins/window/package.json @@ -27,6 +27,6 @@ "tslib": "^2.5.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7fae68ed..e71c1814 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -64,8 +64,8 @@ importers: examples/api: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 '@tauri-apps/plugin-app': specifier: 2.0.0-alpha.1 version: link:../../plugins/app @@ -119,8 +119,8 @@ importers: specifier: ^2.4.1 version: 2.4.1(svelte@3.59.1)(vite@4.4.4) '@tauri-apps/cli': - specifier: 2.0.0-alpha.12 - version: 2.0.0-alpha.12 + specifier: 2.0.0-alpha.14 + version: 2.0.0-alpha.14 '@unocss/extractor-svelte': specifier: ^0.53.1 version: 0.53.1 @@ -140,8 +140,8 @@ importers: plugins/app: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.5.0 @@ -150,8 +150,8 @@ importers: plugins/authenticator: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -160,8 +160,8 @@ importers: plugins/autostart: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -170,8 +170,8 @@ importers: plugins/cli: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -180,8 +180,8 @@ importers: plugins/clipboard-manager: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -190,8 +190,8 @@ importers: plugins/dialog: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -200,8 +200,8 @@ importers: plugins/fs: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -210,8 +210,8 @@ importers: plugins/global-shortcut: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -220,8 +220,8 @@ importers: plugins/http: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.5.0 @@ -230,8 +230,8 @@ importers: plugins/log: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -240,8 +240,8 @@ importers: plugins/notification: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -250,8 +250,8 @@ importers: plugins/os: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -260,8 +260,8 @@ importers: plugins/positioner: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -270,8 +270,8 @@ importers: plugins/process: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -280,8 +280,8 @@ importers: plugins/shell: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.4.1 @@ -290,14 +290,14 @@ importers: plugins/single-instance/examples/vanilla: devDependencies: '@tauri-apps/cli': - specifier: 2.0.0-alpha.12 - version: 2.0.0-alpha.12 + specifier: 2.0.0-alpha.14 + version: 2.0.0-alpha.14 plugins/sql: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -306,8 +306,8 @@ importers: plugins/store: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -316,8 +316,8 @@ importers: plugins/stronghold: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -326,8 +326,8 @@ importers: plugins/updater: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.5.0 @@ -336,8 +336,8 @@ importers: plugins/upload: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -346,8 +346,8 @@ importers: plugins/websocket: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -366,8 +366,8 @@ importers: specifier: 1.22.3 version: 1.22.3(svelte@4.0.5)(vite@4.4.4) '@tauri-apps/cli': - specifier: 2.0.0-alpha.12 - version: 2.0.0-alpha.12 + specifier: 2.0.0-alpha.14 + version: 2.0.0-alpha.14 svelte: specifier: 4.0.5 version: 4.0.5 @@ -387,8 +387,8 @@ importers: plugins/window: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: ^2.5.0 @@ -397,8 +397,8 @@ importers: plugins/window-state: dependencies: '@tauri-apps/api': - specifier: 2.0.0-alpha.6 - version: 2.0.0-alpha.6 + specifier: 2.0.0-alpha.8 + version: 2.0.0-alpha.8 devDependencies: tslib: specifier: 2.6.0 @@ -1106,13 +1106,13 @@ packages: - supports-color dev: true - /@tauri-apps/api@2.0.0-alpha.6: - resolution: {integrity: sha512-ZMOc3eu9amwvkC6M69h3hWt4/EsFaAXmtkiw4xd2LN59/lTb4ZQiVfq2QKlRcu1rj3n/Tcr7U30ZopvHwXBGIg==} + /@tauri-apps/api@2.0.0-alpha.8: + resolution: {integrity: sha512-3hZ+7EzUA11KN+O/Y4KgmjR+ldhXLdNllkw//hv/AaNsktEopCRBuKfVRLzVK3yov+Z+GzgxqFlwgJ1v6g1iKw==} engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} dev: false - /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.12: - resolution: {integrity: sha512-4PVyuhqka4aid/wTgGcuA2kvvXs0KBHzGgWJ3yMqgADW4r65qxZcSoBcY76JUcru/rECTDdQ1baI5MEwR7Q10A==} + /@tauri-apps/cli-darwin-arm64@2.0.0-alpha.14: + resolution: {integrity: sha512-3K416rvSUt8el/fdPnSnHJOI2j5Os9Kyy17XZp+z3PKRRuo/iJPp9L3w0zFGYsh7C+ylzV4OBUSVTi+e+gO5qA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -1120,8 +1120,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-darwin-x64@2.0.0-alpha.12: - resolution: {integrity: sha512-xno8ByVeRowhfTDf2pKI7bIyDchnldnt1dF2/DcXLLTliOjMCLLhBk67doBMMZ6qBq8n/AKPwVl8dUXzP54q5Q==} + /@tauri-apps/cli-darwin-x64@2.0.0-alpha.14: + resolution: {integrity: sha512-aLEUGG8Z0UpTENe4/UG6DU8bnB2e1uxyxYvcmFKrHv+EAtR9nLH14alBxPl2K54YXy3JLR4bKROW15a/sFrX9g==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -1129,8 +1129,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.12: - resolution: {integrity: sha512-BAO3DSna+589lCtx8mjY2vduigihTicAH8F3csHnDptx2wbm5oASEmEZDCR8nMERKFuJmO2STgqZp+wVOZ6QyA==} + /@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.14: + resolution: {integrity: sha512-Lu7unNvurBccxfHIaUQ0gPgUioTkQBMtWGrqO/auZ/JbjPR1W2eBlRwVNXf+nBWX9HwomPR3YD5yZuZmzxRV2g==} engines: {node: '>= 10'} cpu: [arm] os: [linux] @@ -1138,8 +1138,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.12: - resolution: {integrity: sha512-vOHlOXUBrqbTPpY0/G3FSzxEtsdDIuiy426nGsQA76EZiouGUTAlqzQ6V5MxlLsDkU/wzLDMnQNiNh+JEQ7x2Q==} + /@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.14: + resolution: {integrity: sha512-g8HkwKvAsWLLMJzPup7B1BCilYmXKwXdee7sf8QFbaIUSccR8i5pXLK5N/quKw5lmldYgFveEyuW9Qs8RgTYnQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -1147,8 +1147,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.12: - resolution: {integrity: sha512-ND372Qv6HsAs+TAGjMOSWax7n4ogT/t6d5Vuh+asLX45zfdfvmLRqEFgdyxEuMFbsYaIdYO8Aa/S1y9yU6A/KA==} + /@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.14: + resolution: {integrity: sha512-ag4UuX6zg7vmBFWmg9ChyiJI7GTMkc8tjr/qobd3Lg9ddmjnVWwLUHt6v1kYhXiU7iLPD5DYDIjU8x/POc3hSA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -1156,8 +1156,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.12: - resolution: {integrity: sha512-/r6R4NkdH+ilAxghNXMLHyPwdkdARl6CUKD9gdQCp3oRbSc6NCgckja/r/57xctn9kC3NFadGbd4X6JxIq4wIg==} + /@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.14: + resolution: {integrity: sha512-+CviROc4fzrGqqyHQXh3uc2dGr/oYr19I8r2k+LJ2CDfmtj7CbNd/oC5oehHbHdw1oGFKuDPudrTGvzdRNygYA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -1165,8 +1165,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.12: - resolution: {integrity: sha512-qQkrihz3ORt7h4ecIi2Bmgac95TB3kVxPu8Jr9ZhkeNADiW8f8hOkVitrFyfzanCrhYJRUwpX7QqSGSpng6vkg==} + /@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.14: + resolution: {integrity: sha512-aCP51HOAQXgVhyPHXKy627bYVRkNnpCvSU3L03pYV8YDoGo+veeuek5UiW7PlNdwx52B/yC3Jz7Dr3gEbFimfQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -1174,8 +1174,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-win32-arm64-msvc@2.0.0-alpha.12: - resolution: {integrity: sha512-cl1t9780yMAO0MY+tQaeW1r0YqNjQKyo3C74JOch9WqZD/bRZ0JtWl8oha+xrgXKanbh2VzatQmo6tFYhiPRuw==} + /@tauri-apps/cli-win32-arm64-msvc@2.0.0-alpha.14: + resolution: {integrity: sha512-b6Ei5ERUF0KS1bttM7i6U62GmjIvlgK03XZqvL/KLNvUfqRMu8F7JA1ejSExgTxhEhKSWA768HiTXpXk2GjFFw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -1183,8 +1183,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.12: - resolution: {integrity: sha512-t4X5HFP/oY5KM3fvoV6bjKjLD+VUTbXDr+PvH7/TJrroDdlxfHvEp4YtF1ypnJlwFAfoHdXgFQcVxLN0WfrexQ==} + /@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.14: + resolution: {integrity: sha512-TDkvu5pd37bKxZ6N+BqngCNGcefY7aHxyJ3BdBGxF+wRMjEMh70mgEXk8i0uM/aUi/Kl1GQoO6xJfUDlIMPXOA==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -1192,8 +1192,8 @@ packages: dev: true optional: true - /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.12: - resolution: {integrity: sha512-LNo60aSDBQtdaptWw5CUmbdL8uzkZeVcGmgFWcD3mmfu70NTYgrIT2PNwGPc5ZlUIKz6GNBI8WSEm3ozp3AkKg==} + /@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.14: + resolution: {integrity: sha512-9yfoEe2RSykKr5hCifVAL5o0gHXgRCS+Wo+RJjQ9L2+QHY7XPLZYAhj/h8jdcAdRveyIQwat3k7wl+SW87v1eg==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -1201,21 +1201,21 @@ packages: dev: true optional: true - /@tauri-apps/cli@2.0.0-alpha.12: - resolution: {integrity: sha512-R0FG+dSel4zt5Sra8WlNwclNlZpgxOtDoPFcdezUtUMjmetrwEJGeiUIFMA46IEUV+LCCije5tUvUqEkBlysKg==} + /@tauri-apps/cli@2.0.0-alpha.14: + resolution: {integrity: sha512-4/IQwN5S94D6LTXQrDWbSea0pGb9TTC4BwxHUFmhep4NjFxms161v1zadAUIsq/N2x6WwCBGrsdq9SIkgKv49Q==} engines: {node: '>= 10'} hasBin: true optionalDependencies: - '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.12 - '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.12 - '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.12 - '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.12 - '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.12 - '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.12 - '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.12 - '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-alpha.12 - '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.12 - '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.12 + '@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.14 + '@tauri-apps/cli-darwin-x64': 2.0.0-alpha.14 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.14 + '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.14 + '@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.14 + '@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.14 + '@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.14 + '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-alpha.14 + '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.14 + '@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.14 dev: true /@tauri-apps/toml@2.2.4: diff --git a/shared/template/package.json b/shared/template/package.json index ae154257..8e7c0861 100644 --- a/shared/template/package.json +++ b/shared/template/package.json @@ -27,6 +27,6 @@ "tslib": "2.6.0" }, "dependencies": { - "@tauri-apps/api": "2.0.0-alpha.6" + "@tauri-apps/api": "2.0.0-alpha.8" } }