From 720e0d6540e9b277c882ab65aa388c3ce642ff99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 11:04:06 +0000 Subject: [PATCH] publish new versions --- .changes/deep-link-app-link-regression.md | 6 ------ .changes/opener-windows-network-path.md | 6 ------ .changes/store-set-exit-deadlock.md | 6 ------ Cargo.lock | 10 +++++----- 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/deep-link/CHANGELOG.md | 4 ++++ plugins/deep-link/Cargo.toml | 2 +- plugins/deep-link/examples/app/CHANGELOG.md | 6 ++++++ plugins/deep-link/examples/app/package.json | 4 ++-- plugins/deep-link/package.json | 2 +- plugins/opener/CHANGELOG.md | 4 ++++ plugins/opener/Cargo.toml | 2 +- plugins/opener/package.json | 2 +- plugins/single-instance/CHANGELOG.md | 6 ++++++ plugins/single-instance/Cargo.toml | 4 ++-- plugins/store/CHANGELOG.md | 4 ++++ plugins/store/Cargo.toml | 2 +- plugins/store/package.json | 2 +- pnpm-lock.yaml | 6 +++--- 22 files changed, 62 insertions(+), 42 deletions(-) delete mode 100644 .changes/deep-link-app-link-regression.md delete mode 100644 .changes/opener-windows-network-path.md delete mode 100644 .changes/store-set-exit-deadlock.md diff --git a/.changes/deep-link-app-link-regression.md b/.changes/deep-link-app-link-regression.md deleted file mode 100644 index c4a184bf0..000000000 --- a/.changes/deep-link-app-link-regression.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -deep-link: patch -deep-link-js: patch ---- - -Fix broken iOS custom URL schemes diff --git a/.changes/opener-windows-network-path.md b/.changes/opener-windows-network-path.md deleted file mode 100644 index a1c819c9d..000000000 --- a/.changes/opener-windows-network-path.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"opener": patch -"opener-js": patch ---- - -Fix `revealItemInDir`/`reveal_items_in_dir` can't reveal network paths like `\\wsl.localhost\Ubuntu\etc` on Windows diff --git a/.changes/store-set-exit-deadlock.md b/.changes/store-set-exit-deadlock.md deleted file mode 100644 index ec82f2abc..000000000 --- a/.changes/store-set-exit-deadlock.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -store: patch -store-js: patch ---- - -Fix a deadlock when calling `Store::set` while exiting (on `RunEvent::Exit`) diff --git a/Cargo.lock b/Cargo.lock index a91e02bc3..bafeba028 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.42" +version = "2.0.43" dependencies = [ "log", "serde", @@ -6664,7 +6664,7 @@ dependencies = [ [[package]] name = "tauri-plugin-deep-link" -version = "2.4.8" +version = "2.4.9" dependencies = [ "dunce", "plist", @@ -6851,7 +6851,7 @@ dependencies = [ [[package]] name = "tauri-plugin-opener" -version = "2.5.3" +version = "2.5.4" dependencies = [ "dunce", "glob", @@ -6941,7 +6941,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.4.1" +version = "2.4.2" dependencies = [ "semver", "serde", @@ -6975,7 +6975,7 @@ dependencies = [ [[package]] name = "tauri-plugin-store" -version = "2.4.2" +version = "2.4.3" dependencies = [ "dunce", "serde", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index d7f83d0a3..fa8f3d5b0 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.39] + +### Dependencies + +- Upgraded to `opener-js@2.5.4` +- Upgraded to `store-js@2.4.3` + ## \[2.0.38] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 4d28727bb..bb2e78d2a 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.38", + "version": "2.0.39", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -23,11 +23,11 @@ "@tauri-apps/plugin-http": "^2.5.8", "@tauri-apps/plugin-nfc": "^2.3.5", "@tauri-apps/plugin-notification": "^2.3.3", - "@tauri-apps/plugin-opener": "^2.5.3", + "@tauri-apps/plugin-opener": "^2.5.4", "@tauri-apps/plugin-os": "^2.3.2", "@tauri-apps/plugin-process": "^2.3.1", "@tauri-apps/plugin-shell": "^2.3.5", - "@tauri-apps/plugin-store": "^2.4.2", + "@tauri-apps/plugin-store": "^2.4.3", "@tauri-apps/plugin-updater": "^2.10.1", "@tauri-apps/plugin-upload": "^2.4.0", "@zerodevx/svelte-json-view": "1.0.11" diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 916d2bde5..0269aacc3 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.43] + +### Dependencies + +- Upgraded to `opener@2.5.4` +- Upgraded to `store@2.4.3` + ## \[2.0.42] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index caf45ed67..61c3943a5 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.42" +version = "2.0.43" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -35,9 +35,9 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version = ] } 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.3" } +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.2" } +tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.3" } tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" } [dependencies.tauri] diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index b3afb7d3f..58b52daaf 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.9] + +- [`e6cdc9f5`](https://github.com/tauri-apps/plugins-workspace/commit/e6cdc9f52e2cd975b11b8e4c12879d597f1f76c3) ([#3396](https://github.com/tauri-apps/plugins-workspace/pull/3396) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix broken iOS custom URL schemes + ## \[2.4.8] - [`024ec0c2`](https://github.com/tauri-apps/plugins-workspace/commit/024ec0c29c20cf94579dab9b79d6be0da61a8daa) ([#3214](https://github.com/tauri-apps/plugins-workspace/pull/3214) by [@joshIsCoding](https://github.com/tauri-apps/plugins-workspace/../../joshIsCoding)) Account for differing Android VIEW intent in ChromeOS, fixing deep-link behaviour on Chromium platforms. diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index 7cbf3fa0f..0e07b5e5c 100644 --- a/plugins/deep-link/Cargo.toml +++ b/plugins/deep-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-deep-link" -version = "2.4.8" +version = "2.4.9" description = "Set your Tauri application as the default handler for an URL" authors = { workspace = true } license = { workspace = true } diff --git a/plugins/deep-link/examples/app/CHANGELOG.md b/plugins/deep-link/examples/app/CHANGELOG.md index e6a0e74b7..c417f06bc 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.2.12] + +### Dependencies + +- Upgraded to `deep-link-js@2.4.9` + ## \[2.2.11] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index f4e4f91af..7db8c7e82 100644 --- a/plugins/deep-link/examples/app/package.json +++ b/plugins/deep-link/examples/app/package.json @@ -1,7 +1,7 @@ { "name": "deep-link-example", "private": true, - "version": "2.2.11", + "version": "2.2.12", "type": "module", "scripts": { "dev": "vite", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "^2.10.1", - "@tauri-apps/plugin-deep-link": "2.4.8" + "@tauri-apps/plugin-deep-link": "2.4.9" }, "devDependencies": { "@tauri-apps/cli": "2.10.1", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index 0a186fb6a..e38fcc863 100644 --- a/plugins/deep-link/package.json +++ b/plugins/deep-link/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-deep-link", - "version": "2.4.8", + "version": "2.4.9", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/opener/CHANGELOG.md b/plugins/opener/CHANGELOG.md index a270f932d..9676fefc9 100644 --- a/plugins/opener/CHANGELOG.md +++ b/plugins/opener/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.5.4] + +- [`c1fd33b3`](https://github.com/tauri-apps/plugins-workspace/commit/c1fd33b3a2735f2e25c1d026dc524af932db3315) ([#3343](https://github.com/tauri-apps/plugins-workspace/pull/3343) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix `revealItemInDir`/`reveal_items_in_dir` can't reveal network paths like `\\wsl.localhost\Ubuntu\etc` on Windows + ## \[2.5.3] - [`3d0d2e04`](https://github.com/tauri-apps/plugins-workspace/commit/3d0d2e041bbad9766aebecaeba291a28d8d7bf5c) ([#3163](https://github.com/tauri-apps/plugins-workspace/pull/3163) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Properly ignore `with: inAppBrowser` on desktop. This prevents an issue were `open_url` seamingly did nothing on desktop. diff --git a/plugins/opener/Cargo.toml b/plugins/opener/Cargo.toml index cb3b1b511..7455bc8bd 100644 --- a/plugins/opener/Cargo.toml +++ b/plugins/opener/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-opener" -version = "2.5.3" +version = "2.5.4" description = "Open files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/opener/package.json b/plugins/opener/package.json index 78099edea..355d51492 100644 --- a/plugins/opener/package.json +++ b/plugins/opener/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-opener", - "version": "2.5.3", + "version": "2.5.4", "description": "Open files and URLs using their default application.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index c8dd013c6..8e6467111 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.4.2] + +### Dependencies + +- Upgraded to `deep-link@2.4.9` + ## \[2.4.1] ### Dependencies diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index 65edc053a..3da9ba7c8 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.4.1" +version = "2.4.2" description = "Ensure a single instance of your tauri app is running." authors = { workspace = true } license = { workspace = true } @@ -22,7 +22,7 @@ serde_json = { workspace = true } tauri = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } -tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.8", optional = true } +tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.9", optional = true } semver = { version = "1", optional = true } [target."cfg(target_os = \"windows\")".dependencies.windows-sys] diff --git a/plugins/store/CHANGELOG.md b/plugins/store/CHANGELOG.md index 839efd8d9..0d29f5f49 100644 --- a/plugins/store/CHANGELOG.md +++ b/plugins/store/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[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`) + ## \[2.4.2] - [`eebfd2ed`](https://github.com/tauri-apps/plugins-workspace/commit/eebfd2ed3e4bae4ef195f20c992f01657a5f5121) ([#3157](https://github.com/tauri-apps/plugins-workspace/pull/3157) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Return an error instead of panic when the internally tracked resource id is invalid on creating new stores diff --git a/plugins/store/Cargo.toml b/plugins/store/Cargo.toml index ed2002ce8..a9285eb8d 100644 --- a/plugins/store/Cargo.toml +++ b/plugins/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-store" -version = "2.4.2" +version = "2.4.3" 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 242bdfd0b..62b4f4782 100644 --- a/plugins/store/package.json +++ b/plugins/store/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-store", - "version": "2.4.2", + "version": "2.4.3", "description": "Simple, persistent key-value store.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8ac2c7f15..a619341aa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -90,7 +90,7 @@ importers: specifier: ^2.3.3 version: link:../../plugins/notification '@tauri-apps/plugin-opener': - specifier: ^2.5.3 + specifier: ^2.5.4 version: link:../../plugins/opener '@tauri-apps/plugin-os': specifier: ^2.3.2 @@ -102,7 +102,7 @@ importers: specifier: ^2.3.5 version: link:../../plugins/shell '@tauri-apps/plugin-store': - specifier: ^2.4.2 + specifier: ^2.4.3 version: link:../../plugins/store '@tauri-apps/plugin-updater': specifier: ^2.10.1 @@ -185,7 +185,7 @@ importers: specifier: ^2.10.1 version: 2.10.1 '@tauri-apps/plugin-deep-link': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../.. devDependencies: '@tauri-apps/cli':