From 44ada250a9be7afdcb18f070c527a86ba446bfac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 13:06:18 +0000 Subject: [PATCH] publish new versions --- .changes/deep-link-linux-errors.md | 6 ------ .changes/fix-notification-schedule-ios.md | 6 ------ .changes/notification-sound.md | 6 ------ Cargo.lock | 8 ++++---- examples/api/CHANGELOG.md | 6 ++++++ examples/api/package.json | 4 ++-- examples/api/src-tauri/CHANGELOG.md | 6 ++++++ examples/api/src-tauri/Cargo.toml | 4 ++-- 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/notification/CHANGELOG.md | 5 +++++ plugins/notification/Cargo.toml | 2 +- plugins/notification/package.json | 2 +- plugins/single-instance/CHANGELOG.md | 6 ++++++ plugins/single-instance/Cargo.toml | 4 ++-- pnpm-lock.yaml | 4 ++-- 19 files changed, 51 insertions(+), 36 deletions(-) delete mode 100644 .changes/deep-link-linux-errors.md delete mode 100644 .changes/fix-notification-schedule-ios.md delete mode 100644 .changes/notification-sound.md diff --git a/.changes/deep-link-linux-errors.md b/.changes/deep-link-linux-errors.md deleted file mode 100644 index 53cc30b07d..0000000000 --- a/.changes/deep-link-linux-errors.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -deep-link: patch -deep-link-js: patch ---- - -On Linux, improved error messages when OS commands fail. diff --git a/.changes/fix-notification-schedule-ios.md b/.changes/fix-notification-schedule-ios.md deleted file mode 100644 index 481cba1b6f..0000000000 --- a/.changes/fix-notification-schedule-ios.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"notification": patch -"notification-js": patch ---- - -Fix notification scheduling on iOS. diff --git a/.changes/notification-sound.md b/.changes/notification-sound.md deleted file mode 100644 index be864bea96..0000000000 --- a/.changes/notification-sound.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"notification": patch -"notification-js": patch ---- - -Added sound support for desktop notifications which was previously only available on mobile platforms. diff --git a/Cargo.lock b/Cargo.lock index 4bb80b623e..94ef37aa11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.33" +version = "2.0.34" dependencies = [ "log", "serde", @@ -6559,7 +6559,7 @@ dependencies = [ [[package]] name = "tauri-plugin-deep-link" -version = "2.4.1" +version = "2.4.2" dependencies = [ "dunce", "plist", @@ -6725,7 +6725,7 @@ dependencies = [ [[package]] name = "tauri-plugin-notification" -version = "2.3.0" +version = "2.3.1" dependencies = [ "color-backtrace", "ctor", @@ -6837,7 +6837,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.3.2" +version = "2.3.3" dependencies = [ "semver", "serde", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 4e9e8ef714..d960e340db 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.30] + +### Dependencies + +- Upgraded to `notification-js@2.3.1` + ## \[2.0.29] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index ca7536c0db..b96c62e539 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.29", + "version": "2.0.30", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -22,7 +22,7 @@ "@tauri-apps/plugin-haptics": "^2.2.0", "@tauri-apps/plugin-http": "^2.5.2", "@tauri-apps/plugin-nfc": "^2.3.1", - "@tauri-apps/plugin-notification": "^2.3.0", + "@tauri-apps/plugin-notification": "^2.3.1", "@tauri-apps/plugin-opener": "^2.5.0", "@tauri-apps/plugin-os": "^2.3.1", "@tauri-apps/plugin-process": "^2.3.0", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 1b89d9359c..8362c4b149 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.34] + +### Dependencies + +- Upgraded to `notification@2.3.1` + ## \[2.0.33] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index fc8542c4e7..e5915d1d82 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.33" +version = "2.0.34" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -30,7 +30,7 @@ tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", ], version = "2.5.2" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.0", features = [ +tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.1", features = [ "windows7-compat", ] } tauri-plugin-os = { path = "../../../plugins/os", version = "2.3.1" } diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index e55810a552..0b15547ff7 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.2] + +- [`21d721a0`](https://github.com/tauri-apps/plugins-workspace/commit/21d721a0c2731fc201872f5b99ea8bbdc61b0b60) ([#2928](https://github.com/tauri-apps/plugins-workspace/pull/2928) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) On Linux, improved error messages when OS commands fail. + ## \[2.4.1] - [`d4f8299b`](https://github.com/tauri-apps/plugins-workspace/commit/d4f8299b12f107718c70692840a63768d65baaf9) ([#2844](https://github.com/tauri-apps/plugins-workspace/pull/2844) by [@yobson1](https://github.com/tauri-apps/plugins-workspace/../../yobson1)) Fix deep link protocol handler not set as default on linux diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index 2b0cd5c522..5ed76255f6 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.1" +version = "2.4.2" 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 773bef385b..1d0ca0a805 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.2.5] + +### Dependencies + +- Upgraded to `deep-link-js@2.4.2` + ## \[2.2.4] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index 1dd7af1093..eaacd97d4c 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.4", + "version": "2.2.5", "type": "module", "scripts": { "dev": "vite", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "2.8.0", - "@tauri-apps/plugin-deep-link": "link:../.." + "@tauri-apps/plugin-deep-link": "2.4.2" }, "devDependencies": { "@tauri-apps/cli": "2.8.1", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index c2333b7c1e..3c3ca48457 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.1", + "version": "2.4.2", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index dd4dcdee32..3adc96e50e 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.3.1] + +- [`8abb31ee`](https://github.com/tauri-apps/plugins-workspace/commit/8abb31ee59c68197102c0aa699d690b34646ec3c) ([#2905](https://github.com/tauri-apps/plugins-workspace/pull/2905) by [@ChristianPavilonis](https://github.com/tauri-apps/plugins-workspace/../../ChristianPavilonis)) Fix notification scheduling on iOS. +- [`2d03e2ea`](https://github.com/tauri-apps/plugins-workspace/commit/2d03e2eac2c19ad997d81d23836ab6a219252ffb) ([#2678](https://github.com/tauri-apps/plugins-workspace/pull/2678) by [@Keerthi421](https://github.com/tauri-apps/plugins-workspace/../../Keerthi421)) Added sound support for desktop notifications which was previously only available on mobile platforms. + ## \[2.3.0] - [`f209b2f2`](https://github.com/tauri-apps/plugins-workspace/commit/f209b2f23cb29133c97ad5961fb46ef794dbe063) ([#2804](https://github.com/tauri-apps/plugins-workspace/pull/2804) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Updated tauri to 2.6 diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 10ef6267a6..ad51b2655d 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "2.3.0" +version = "2.3.1" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/notification/package.json b/plugins/notification/package.json index 424376c8f0..52a7ac6043 100644 --- a/plugins/notification/package.json +++ b/plugins/notification/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-notification", - "version": "2.3.0", + "version": "2.3.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index f2ac4031fe..b187c1985f 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.3] + +### Dependencies + +- Upgraded to `deep-link@2.4.2` + ## \[2.3.2] ### Dependencies diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index 24ff572bd6..b88ee63f2c 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.3.2" +version = "2.3.3" description = "Ensure a single instance of your tauri app is running." authors = { workspace = true } license = { workspace = true } @@ -26,7 +26,7 @@ serde_json = { workspace = true } tauri = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } -tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.1", optional = true } +tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.2", optional = true } semver = { version = "1", optional = true } [target."cfg(target_os = \"windows\")".dependencies.windows-sys] diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a59ac09f5c..b249f938fe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -90,7 +90,7 @@ importers: specifier: ^2.3.1 version: link:../../plugins/nfc '@tauri-apps/plugin-notification': - specifier: ^2.3.0 + specifier: ^2.3.1 version: link:../../plugins/notification '@tauri-apps/plugin-opener': specifier: ^2.5.0 @@ -188,7 +188,7 @@ importers: specifier: 2.8.0 version: 2.8.0 '@tauri-apps/plugin-deep-link': - specifier: link:../.. + specifier: 2.4.2 version: link:../.. devDependencies: '@tauri-apps/cli':