From f15a9097d6dc247108d7fef4bb8ac6169fb02b5c Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 24 Jun 2024 12:42:07 +0000 Subject: [PATCH] publish new versions --- .changes/pre.json | 3 +++ examples/api/CHANGELOG.md | 6 ++++++ examples/api/package.json | 4 ++-- examples/api/src-tauri/CHANGELOG.md | 10 ++++++++++ examples/api/src-tauri/Cargo.toml | 12 ++++++------ plugins/dialog/CHANGELOG.md | 8 +++++++- plugins/dialog/Cargo.toml | 4 ++-- plugins/fs/CHANGELOG.md | 4 ++++ plugins/fs/Cargo.toml | 2 +- plugins/http/CHANGELOG.md | 8 +++++++- plugins/http/Cargo.toml | 4 ++-- plugins/notification/CHANGELOG.md | 4 ++++ plugins/notification/Cargo.toml | 2 +- plugins/os/CHANGELOG.md | 4 ++++ plugins/os/Cargo.toml | 2 +- plugins/os/package.json | 2 +- plugins/persisted-scope/CHANGELOG.md | 6 ++++++ plugins/persisted-scope/Cargo.toml | 4 ++-- pnpm-lock.yaml | 26 ++++++++++++++------------ 19 files changed, 83 insertions(+), 32 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 7ea7c20ec9..06d0c3f919 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -29,6 +29,7 @@ ".changes/fix-deep-link-is-registered-typo.md", ".changes/fix-deep-link-linux.md", ".changes/fix-default-arg-value.md", + ".changes/fix-fs-async-cmds.md", ".changes/fix-fs-scope-deadlock.md", ".changes/fix-fs-watcher-basedir.md", ".changes/fix-http-default-features.md", @@ -52,8 +53,10 @@ ".changes/http-user-agent.md", ".changes/impl-ext-for-webview-windows.md", ".changes/msrv-1.75.md", + ".changes/notifcation-permission-commands.md", ".changes/notification-fix-dev-check.md", ".changes/notification-fix-dev-name.md", + ".changes/os-sync-functions.md", ".changes/public-with-store.md", ".changes/remove-unc-path-prefix.md", ".changes/reqwest-0.12.md", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 5b7be7e67a..d6ded882d8 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `os-js@2.0.0-beta.6` + ## \[2.0.0-beta.9] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 09016b2064..f8d4ea9333 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "svelte-app", "private": true, - "version": "2.0.0-beta.9", + "version": "2.0.0-beta.10", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -20,7 +20,7 @@ "@tauri-apps/plugin-http": "2.0.0-beta.6", "@tauri-apps/plugin-nfc": "2.0.0-beta.5", "@tauri-apps/plugin-notification": "2.0.0-beta.5", - "@tauri-apps/plugin-os": "2.0.0-beta.5", + "@tauri-apps/plugin-os": "2.0.0-beta.6", "@tauri-apps/plugin-process": "2.0.0-beta.5", "@tauri-apps/plugin-shell": "2.0.0-beta.6", "@tauri-apps/plugin-updater": "2.0.0-beta.5", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 57b51475e9..47b4818bd1 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-beta.12] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` +- Upgraded to `notification@2.0.0-beta.9` +- Upgraded to `os@2.0.0-beta.7` +- Upgraded to `dialog@2.0.0-beta.10` +- Upgraded to `http@2.0.0-beta.11` + ## \[2.0.0-beta.11] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index a58f313a5d..ec1ad26565 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.11" +version = "2.0.0-beta.12" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -20,12 +20,12 @@ serde = { workspace = true } tiny_http = "0.12" log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.6" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.9", features = [ "watch" ] } +tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.10", features = [ "watch" ] } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.4" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.9" } -tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.10" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.8", features = [ "windows7-compat" ] } -tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.6" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.10" } +tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.11" } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.9", features = [ "windows7-compat" ] } +tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.7" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.6" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" } diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index 251dc08083..c3acb56251 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. @@ -153,5 +159,5 @@ pull/371)) First v2 alpha release! lpha release! pull/371)) First v2 alpha release! -lpha release! + lpha release! pull/371)) First v2 alpha release! diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 73a415ed8f..48e4b76fe8 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -24,7 +24,7 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } dunce = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] rfd = { version = "0.14", default-features = false, features = [ "tokio", "gtk3", "common-controls-v6" ] } diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index a38b199a2d..a1a1f66a63 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.10] + +- [`1146f068`](https://github.com/tauri-apps/plugins-workspace/commit/1146f068e1a2ce4244982532c621270c022bcdff) ([#1477](https://github.com/tauri-apps/plugins-workspace/pull/1477) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixes an issue that caused the app to freeze when the `fs` plugin's read/write apis were used on large files. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index c0e19660d6..c6929a6321 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "2.0.0-beta.9" +version = "2.0.0-beta.10" description = "Access the file system." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index 889795dd7d..6f9720071a 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.11] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.6] - [`0f739dbc`](https://github.com/tauri-apps/plugins-workspace/commit/0f739dbc483a1f091977cbe575c3862fd39f8cf1) ([#1392](https://github.com/tauri-apps/plugins-workspace/pull/1392) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Allow setting `Origin` header when `unsafe-headers` feature flag is active. @@ -179,7 +185,7 @@ lpha release! ! 371\)) First v2 alpha release! -t v2 alpha release! + t v2 alpha release! ! 371\)) First v2 alpha release! ace/pull/371)) First v2 alpha release! diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 11bb784b9e..362404e8d3 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.0.0-beta.10" +version = "2.0.0-beta.11" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -26,7 +26,7 @@ serde = { workspace = true } serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } urlpattern = "0.2" regex = "1" http = "1" diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index ea756a4290..621f3827d3 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.9] + +- [`17c42fd4`](https://github.com/tauri-apps/plugins-workspace/commit/17c42fd42a93f9c9f29d7cb8f83570ba790120a6) ([#1459](https://github.com/tauri-apps/plugins-workspace/pull/1459) by [@naman-crabnebula](https://github.com/tauri-apps/plugins-workspace/../../naman-crabnebula)) Add `register_action_types` and `register_listener` permission command, so that new Action types can be registered and used on Android. + ## \[2.0.0-beta.8] - [`3779fb50`](https://github.com/tauri-apps/plugins-workspace/commit/3779fb50634fba4d7e7eb0bfecc2216349b9d64d) ([#1432](https://github.com/tauri-apps/plugins-workspace/pull/1432) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use notify_rust from crates.io instead of local fork. diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 952213fe94..e3b0c20b3c 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.8" +version = "2.0.0-beta.9" 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 005f1cfce5..5c20be783c 100644 --- a/plugins/os/CHANGELOG.md +++ b/plugins/os/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-beta.6] + +- [`0959fe37`](https://github.com/tauri-apps/plugins-workspace/commit/0959fe3757250c6dea6247edb20e6ab468f20511) ([#1353](https://github.com/tauri-apps/plugins-workspace/pull/1353) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) **Breaking** Changed `platform`, `arch`, `type`, `family`, `version` and `exe_extension` functions to be sync. + ## \[2.0.0-beta.5] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 974abdb505..4bacac1583 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-os" -version = "2.0.0-beta.6" +version = "2.0.0-beta.7" description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/package.json b/plugins/os/package.json index 5713d13576..9922050f6e 100644 --- a/plugins/os/package.json +++ b/plugins/os/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-os", - "version": "2.0.0-beta.5", + "version": "2.0.0-beta.6", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index fac0f94c51..64355af3a0 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.10] + +### Dependencies + +- Upgraded to `fs@2.0.0-beta.10` + ## \[2.0.0-beta.9] - [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22. diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index dd77a0f9e1..8f3cbad46a 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-beta.9" +version = "2.0.0-beta.10" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -20,7 +20,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.9" } +tauri-plugin-fs = { path = "../fs", version = "2.0.0-beta.10" } [features] protocol-asset = [ "tauri/protocol-asset" ] diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1896f401ab..76b4d21187 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -91,7 +91,7 @@ importers: specifier: 2.0.0-beta.5 version: link:../../plugins/notification '@tauri-apps/plugin-os': - specifier: 2.0.0-beta.5 + specifier: 2.0.0-beta.6 version: link:../../plugins/os '@tauri-apps/plugin-process': specifier: 2.0.0-beta.5 @@ -2669,9 +2669,9 @@ snapshots: - encoding - mocha - '@covector/assemble@0.11.0': + '@covector/assemble@0.11.0(mocha@10.4.0)': dependencies: - '@covector/command': 0.7.1 + '@covector/command': 0.7.1(mocha@10.4.0) '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0) js-yaml: 4.1.0 @@ -2682,9 +2682,10 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding + - mocha - supports-color - '@covector/changelog@0.11.0': + '@covector/changelog@0.11.0(mocha@10.4.0)': dependencies: '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0) @@ -2694,14 +2695,16 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding + - mocha - supports-color - '@covector/command@0.7.1': + '@covector/command@0.7.1(mocha@10.4.0)': dependencies: - '@effection/process': 2.1.4 + '@effection/process': 2.1.4(mocha@10.4.0) effection: 2.0.8(mocha@10.4.0) transitivePeerDependencies: - encoding + - mocha '@covector/files@0.7.2': dependencies: @@ -2748,10 +2751,8 @@ snapshots: dependencies: effection: 2.0.8(mocha@10.4.0) mocha: 10.4.0 - transitivePeerDependencies: - - encoding - '@effection/process@2.1.4': + '@effection/process@2.1.4(mocha@10.4.0)': dependencies: cross-spawn: 7.0.3 ctrlc-windows: 2.1.0 @@ -2759,6 +2760,7 @@ snapshots: shellwords: 0.1.1 transitivePeerDependencies: - encoding + - mocha '@effection/stream@2.0.6': dependencies: @@ -3545,9 +3547,9 @@ snapshots: covector@0.11.0(mocha@10.4.0): dependencies: '@covector/apply': 0.9.3(mocha@10.4.0) - '@covector/assemble': 0.11.0 - '@covector/changelog': 0.11.0 - '@covector/command': 0.7.1 + '@covector/assemble': 0.11.0(mocha@10.4.0) + '@covector/changelog': 0.11.0(mocha@10.4.0) + '@covector/command': 0.7.1(mocha@10.4.0) '@covector/files': 0.7.2 effection: 2.0.8(mocha@10.4.0) globby: 11.1.0