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/fs-toml-1.md b/.changes/fs-toml-1.md deleted file mode 100644 index 6db3b6893..000000000 --- a/.changes/fs-toml-1.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -fs: patch -fs-js: patch ---- - -Updated dependency `toml` from 0.9 to 1 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 5e6b87d21..59d71957a 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", @@ -6562,7 +6562,7 @@ dependencies = [ [[package]] name = "tauri-plugin-deep-link" -version = "2.4.8" +version = "2.4.9" dependencies = [ "dunce", "plist", @@ -6581,7 +6581,7 @@ dependencies = [ [[package]] name = "tauri-plugin-dialog" -version = "2.7.0" +version = "2.7.1" dependencies = [ "log", "raw-window-handle", @@ -6597,7 +6597,7 @@ dependencies = [ [[package]] name = "tauri-plugin-fs" -version = "2.5.0" +version = "2.5.1" dependencies = [ "anyhow", "dunce", @@ -6660,7 +6660,7 @@ dependencies = [ [[package]] name = "tauri-plugin-http" -version = "2.5.8" +version = "2.5.9" dependencies = [ "bytes", "cookie_store", @@ -6749,7 +6749,7 @@ dependencies = [ [[package]] name = "tauri-plugin-opener" -version = "2.5.3" +version = "2.5.4" dependencies = [ "dunce", "glob", @@ -6785,7 +6785,7 @@ dependencies = [ [[package]] name = "tauri-plugin-persisted-scope" -version = "2.3.6" +version = "2.3.7" dependencies = [ "aho-corasick", "bincode", @@ -6839,7 +6839,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.4.1" +version = "2.4.2" dependencies = [ "semver", "serde", @@ -6873,7 +6873,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..5718bd20f 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.39] + +### Dependencies + +- Upgraded to `fs-js@2.5.1` +- Upgraded to `opener-js@2.5.4` +- Upgraded to `store-js@2.4.3` +- Upgraded to `dialog-js@2.7.1` +- Upgraded to `http-js@2.5.9` + ## \[2.0.38] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index dcc35beeb..9f22713e3 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", @@ -15,19 +15,19 @@ "@tauri-apps/plugin-biometric": "^2.3.2", "@tauri-apps/plugin-cli": "^2.4.1", "@tauri-apps/plugin-clipboard-manager": "^2.3.2", - "@tauri-apps/plugin-dialog": "^2.7.0", - "@tauri-apps/plugin-fs": "^2.5.0", + "@tauri-apps/plugin-dialog": "^2.7.1", + "@tauri-apps/plugin-fs": "^2.5.1", "@tauri-apps/plugin-geolocation": "^2.3.2", "@tauri-apps/plugin-global-shortcut": "^2.3.1", "@tauri-apps/plugin-haptics": "^2.3.2", - "@tauri-apps/plugin-http": "^2.5.8", + "@tauri-apps/plugin-http": "^2.5.9", "@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..5c3bc1e2b 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.43] + +### Dependencies + +- Upgraded to `fs@2.5.1` +- Upgraded to `opener@2.5.4` +- Upgraded to `store@2.4.3` +- Upgraded to `dialog@2.7.1` +- Upgraded to `http@2.5.9` + ## \[2.0.42] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index caf45ed67..9fd5f8930 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 } @@ -21,23 +21,23 @@ tiny_http = "0.12" time = "0.3" log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.8.0" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.5.0", features = [ +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.0" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.7.1" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", -], version = "2.5.8" } +], version = "2.5.9" } tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.3", features = [ "windows7-compat", ] } 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 3f7b1fc08..a5e144570 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.11.0", - "@tauri-apps/plugin-deep-link": "2.4.8" + "@tauri-apps/plugin-deep-link": "2.4.9" }, "devDependencies": { "@tauri-apps/cli": "2.11.0", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index 81a4402a0..68c209af8 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/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index 7a6d7c108..f875cf115 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.7.1] + +### Dependencies + +- Upgraded to `fs-js@2.5.1` + ## \[2.7.0] - [`24154472`](https://github.com/tauri-apps/plugins-workspace/commit/24154472a6710a690173df0a121125d1f1b871e8) ([#3287](https://github.com/tauri-apps/plugins-workspace/pull/3287) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Re-use `message` command in Rust side for `ask` and `confirm` commands, `allow-ask` and `allow-confirm` permissions are now aliases to `allow-message` diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 9683c2b05..7044a941a 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.7.0" +version = "2.7.1" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -37,7 +37,7 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } url = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.5.0" } +tauri-plugin-fs = { path = "../fs", version = "2.5.1" } [target.'cfg(target_os = "ios")'.dependencies] tauri = { workspace = true, features = ["wry"] } diff --git a/plugins/dialog/package.json b/plugins/dialog/package.json index dfb92fde9..0e651988b 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-dialog", - "version": "2.7.0", + "version": "2.7.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index 2f382a2ff..21927c65e 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.5.1] + +- [`ec054013`](https://github.com/tauri-apps/plugins-workspace/commit/ec0540138bece081e9a87982091947360e61987a) ([#3323](https://github.com/tauri-apps/plugins-workspace/pull/3323) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Updated dependency `toml` from 0.9 to 1 + ## \[2.5.0] - [`e97a4ded`](https://github.com/tauri-apps/plugins-workspace/commit/e97a4dedab8608d9d57029784ee8a2607ca3a996) ([#3244](https://github.com/tauri-apps/plugins-workspace/pull/3244) by [@SeijiOkuda](https://github.com/tauri-apps/plugins-workspace/../../SeijiOkuda)) Add `encoding` option for `readTextFile` and `readTextFileLines` diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index 88948a006..298bcce56 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "2.5.0" +version = "2.5.1" description = "Access the file system." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/fs/package.json b/plugins/fs/package.json index 85d336518..7dfd96693 100644 --- a/plugins/fs/package.json +++ b/plugins/fs/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-fs", - "version": "2.5.0", + "version": "2.5.1", "description": "Access the file system.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index ba6defa83..12deccbe0 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.5.9] + +### Dependencies + +- Upgraded to `fs-js@2.5.1` + ## \[2.5.8] - [`29712892`](https://github.com/tauri-apps/plugins-workspace/commit/29712892526cfc2d35c9002e0a56925084ae1b73) ([#3252](https://github.com/tauri-apps/plugins-workspace/pull/3252) by [@NVolcz](https://github.com/tauri-apps/plugins-workspace/../../NVolcz)) Correct Response header initialization to support cloning and ensure Set-Cookie visibility. diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 51aee7d5d..19b22293c 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.5.8" +version = "2.5.9" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -30,7 +30,7 @@ serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } tokio = { version = "1", features = ["sync", "macros"] } -tauri-plugin-fs = { path = "../fs", version = "2.5.0" } +tauri-plugin-fs = { path = "../fs", version = "2.5.1" } urlpattern = "0.3" regex = "1" http = "1" diff --git a/plugins/http/package.json b/plugins/http/package.json index beeac94db..0f87e658d 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "2.5.8", + "version": "2.5.9", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" 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 12e10aa92..f5bae176c 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/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index 29baed4b3..6d979d203 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.7] + +### Dependencies + +- Upgraded to `fs@2.5.1` + ## \[2.3.6] ### Dependencies diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index 04e736f08..d3df032eb 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.3.6" +version = "2.3.7" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -23,7 +23,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "2.5.0" } +tauri-plugin-fs = { path = "../fs", version = "2.5.1" } [features] protocol-asset = ["tauri/protocol-asset"] 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 f2b3ef347..2ffc54afe 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 47d6029e9..11786c410 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -66,10 +66,10 @@ importers: specifier: ^2.3.2 version: link:../../plugins/clipboard-manager '@tauri-apps/plugin-dialog': - specifier: ^2.7.0 + specifier: ^2.7.1 version: link:../../plugins/dialog '@tauri-apps/plugin-fs': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../plugins/fs '@tauri-apps/plugin-geolocation': specifier: ^2.3.2 @@ -81,7 +81,7 @@ importers: specifier: ^2.3.2 version: link:../../plugins/haptics '@tauri-apps/plugin-http': - specifier: ^2.5.8 + specifier: ^2.5.9 version: link:../../plugins/http '@tauri-apps/plugin-nfc': specifier: ^2.3.5 @@ -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.11.0 version: 2.11.0 '@tauri-apps/plugin-deep-link': - specifier: 2.4.8 + specifier: 2.4.9 version: link:../.. devDependencies: '@tauri-apps/cli':