From 37d9a296da3433b3873c17336ecdf81f10ce0445 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 14:28:48 +0000 Subject: [PATCH] publish new versions --- .changes/material-dialog.md | 6 ------ .changes/store-optional-defaults.md | 6 ------ Cargo.lock | 6 +++--- examples/api/CHANGELOG.md | 7 +++++++ examples/api/package.json | 6 +++--- examples/api/src-tauri/CHANGELOG.md | 7 +++++++ examples/api/src-tauri/Cargo.toml | 6 +++--- plugins/dialog/CHANGELOG.md | 4 ++++ plugins/dialog/Cargo.toml | 2 +- plugins/dialog/package.json | 2 +- plugins/store/CHANGELOG.md | 4 ++++ plugins/store/Cargo.toml | 2 +- plugins/store/package.json | 2 +- pnpm-lock.yaml | 22 ++++++++++++++++++---- 14 files changed, 53 insertions(+), 29 deletions(-) delete mode 100644 .changes/material-dialog.md delete mode 100644 .changes/store-optional-defaults.md diff --git a/.changes/material-dialog.md b/.changes/material-dialog.md deleted file mode 100644 index 30b4418ae..000000000 --- a/.changes/material-dialog.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -dialog: patch -dialog-js: patch ---- - -Use `com.google.android.material.dialog.MaterialAlertDialogBuilder` instead of `AlertDialog` so the dialog follows the app's theme diff --git a/.changes/store-optional-defaults.md b/.changes/store-optional-defaults.md deleted file mode 100644 index 6eddb2d65..000000000 --- a/.changes/store-optional-defaults.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -store: patch -store-js: patch ---- - -Fix `StoreOptions` requires `defaults` field diff --git a/Cargo.lock b/Cargo.lock index 56aa85999..b73674a00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "api" -version = "2.0.45" +version = "2.0.46" dependencies = [ "log", "serde", @@ -6525,7 +6525,7 @@ dependencies = [ [[package]] name = "tauri-plugin-dialog" -version = "2.7.1" +version = "2.7.2" dependencies = [ "log", "raw-window-handle", @@ -6817,7 +6817,7 @@ dependencies = [ [[package]] name = "tauri-plugin-store" -version = "2.4.3" +version = "2.4.4" dependencies = [ "dunce", "serde", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 2f3d2a539..c08be7ede 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.42] + +### Dependencies + +- Upgraded to `dialog-js@2.7.2` +- Upgraded to `store-js@2.4.4` + ## \[2.0.41] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 51456eea7..8a78158e7 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.41", + "version": "2.0.42", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -15,7 +15,7 @@ "@tauri-apps/plugin-biometric": "workspace:*", "@tauri-apps/plugin-cli": "workspace:*", "@tauri-apps/plugin-clipboard-manager": "workspace:*", - "@tauri-apps/plugin-dialog": "workspace:*", + "@tauri-apps/plugin-dialog": "2", "@tauri-apps/plugin-fs": "workspace:*", "@tauri-apps/plugin-geolocation": "workspace:*", "@tauri-apps/plugin-global-shortcut": "workspace:*", @@ -27,7 +27,7 @@ "@tauri-apps/plugin-os": "workspace:*", "@tauri-apps/plugin-process": "workspace:*", "@tauri-apps/plugin-shell": "workspace:*", - "@tauri-apps/plugin-store": "workspace:*", + "@tauri-apps/plugin-store": "2", "@tauri-apps/plugin-updater": "workspace:*", "@tauri-apps/plugin-upload": "workspace:*", "@zerodevx/svelte-json-view": "1.0.11" diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 3b93638e9..96a2cab40 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.46] + +### Dependencies + +- Upgraded to `dialog@2.7.2` +- Upgraded to `store@2.4.4` + ## \[2.0.45] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 32d130603..ec8b6c3d4 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.45" +version = "2.0.46" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -25,7 +25,7 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.5.1", features = "watch", ] } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.3.2" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.7.1" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.7.2" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", @@ -37,7 +37,7 @@ tauri-plugin-os = { path = "../../../plugins/os", version = "2.3.2" } tauri-plugin-process = { path = "../../../plugins/process", version = "2.3.1" } tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.5.4" } tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.3.5" } -tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.3" } +tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.4" } tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" } [dependencies.tauri] diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index f875cf115..3b9f66152 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.7.2] + +- [`40ae0a7f`](https://github.com/tauri-apps/plugins-workspace/commit/40ae0a7fa0ecc9b0cdbd952297f7a17f37308229) ([#3491](https://github.com/tauri-apps/plugins-workspace/pull/3491) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Use `com.google.android.material.dialog.MaterialAlertDialogBuilder` instead of `AlertDialog` so the dialog follows the app's theme + ## \[2.7.1] ### Dependencies diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 7044a941a..9435ea484 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.7.1" +version = "2.7.2" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/dialog/package.json b/plugins/dialog/package.json index 0e651988b..451eb1a7f 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-dialog", - "version": "2.7.1", + "version": "2.7.2", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/store/CHANGELOG.md b/plugins/store/CHANGELOG.md index 0d29f5f49..dcc84abe9 100644 --- a/plugins/store/CHANGELOG.md +++ b/plugins/store/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.4] + +- [`2ed6d6c1`](https://github.com/tauri-apps/plugins-workspace/commit/2ed6d6c1de4f5051b87cb6a2c5ac45320c444989) ([#3499](https://github.com/tauri-apps/plugins-workspace/pull/3499) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix `StoreOptions` requires `defaults` field + ## \[2.4.3] - [`964e13f1`](https://github.com/tauri-apps/plugins-workspace/commit/964e13f124ad1feeb93c10168b265dc4936f738c) ([#3395](https://github.com/tauri-apps/plugins-workspace/pull/3395) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix a deadlock when calling `Store::set` while exiting (on `RunEvent::Exit`) diff --git a/plugins/store/Cargo.toml b/plugins/store/Cargo.toml index a9285eb8d..d7b9072e9 100644 --- a/plugins/store/Cargo.toml +++ b/plugins/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-store" -version = "2.4.3" +version = "2.4.4" description = "Simple, persistent key-value store." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/store/package.json b/plugins/store/package.json index 2ffc54afe..8a85ca192 100644 --- a/plugins/store/package.json +++ b/plugins/store/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-store", - "version": "2.4.3", + "version": "2.4.4", "description": "Simple, persistent key-value store.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 37ee40e3b..90ed78a66 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,8 +63,8 @@ importers: specifier: workspace:* version: link:../../plugins/clipboard-manager '@tauri-apps/plugin-dialog': - specifier: workspace:* - version: link:../../plugins/dialog + specifier: '2' + version: 2.7.1 '@tauri-apps/plugin-fs': specifier: workspace:* version: link:../../plugins/fs @@ -99,8 +99,8 @@ importers: specifier: workspace:* version: link:../../plugins/shell '@tauri-apps/plugin-store': - specifier: workspace:* - version: link:../../plugins/store + specifier: '2' + version: 2.4.3 '@tauri-apps/plugin-updater': specifier: workspace:* version: link:../../plugins/updater @@ -1123,6 +1123,12 @@ packages: engines: {node: '>= 10'} hasBin: true + '@tauri-apps/plugin-dialog@2.7.1': + resolution: {integrity: sha512-OK1UBXYt+ojcmxMktzzuyonYIFta8CmAASpX+CA+DTGK24KlHjhYI6x2iOJ/TjZF4N7/ACK1oFmEOjIY9IhzOQ==} + + '@tauri-apps/plugin-store@2.4.3': + resolution: {integrity: sha512-9LWPj9yMphRi9czEtUv87XHbl1b6xgd9EXpPrUnq6nG7+nbtoF84d4Kwz9xhAv/Hf30sr58pq7EOlyI936y8qw==} + '@tybys/wasm-util@0.10.2': resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} @@ -2469,6 +2475,14 @@ snapshots: '@tauri-apps/cli-win32-ia32-msvc': 2.11.4 '@tauri-apps/cli-win32-x64-msvc': 2.11.4 + '@tauri-apps/plugin-dialog@2.7.1': + dependencies: + '@tauri-apps/api': 2.11.0 + + '@tauri-apps/plugin-store@2.4.3': + dependencies: + '@tauri-apps/api': 2.11.0 + '@tybys/wasm-util@0.10.2': dependencies: tslib: 2.8.1