diff --git a/.changes/fix-register-deep-link.md b/.changes/fix-register-deep-link.md deleted file mode 100644 index 6245a4687..000000000 --- a/.changes/fix-register-deep-link.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"deep-link": patch -"deep-link-js": patch ---- - -Fix runtime deep link registration failing on Linux when the app path has spaces. diff --git a/.changes/fix-unconventional-dbus-names.md b/.changes/fix-unconventional-dbus-names.md deleted file mode 100644 index 56b820d2e..000000000 --- a/.changes/fix-unconventional-dbus-names.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"single-instance": minor:fix ---- - -**Breaking Change:** On Linux, the DBus ID/name will now be `.SingleInstance` instead of `org..SingleInstance` to follow DBus specifications. - -This will break the single-instance mechanism across different app versions if the app was installed multiple times. - -Added `dbus_id` builder method, which can be used to restore previous behavior. For a bundle identifier of `com.tauri.my-example` this would be `dbus_id("org.com_tauri_my_example")`. \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 925ef4daa..291c2a3ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6683,7 +6683,7 @@ dependencies = [ [[package]] name = "tauri-plugin-deep-link" -version = "2.4.6" +version = "2.4.7" dependencies = [ "dunce", "plist", @@ -6961,7 +6961,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.3.7" +version = "2.4.0" dependencies = [ "semver", "serde", diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index 34e4011c5..adee890a1 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.7] + +- [`8374e997`](https://github.com/tauri-apps/plugins-workspace/commit/8374e997b82c95516fc0c1f6d665d9fc3b52edf8) ([#3258](https://github.com/tauri-apps/plugins-workspace/pull/3258) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Fix runtime deep link registration failing on Linux when the app path has spaces. + ## \[2.4.6] - [`28048039`](https://github.com/tauri-apps/plugins-workspace/commit/28048039496e84b46847c008416d341f1349e30e) ([#3143](https://github.com/tauri-apps/plugins-workspace/pull/3143) by [@Tunglies](https://github.com/tauri-apps/plugins-workspace/../../Tunglies)) Fix clippy warnings. No user facing changes. diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index 412e2acfa..38bb8aae8 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.6" +version = "2.4.7" 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 6417600fe..cebbbbc0a 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.2.10] + +### Dependencies + +- Upgraded to `deep-link-js@2.4.7` + ## \[2.2.9] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index 6d0b429a2..ab498ae9a 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.9", + "version": "2.2.10", "type": "module", "scripts": { "dev": "vite", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "^2.10.1", - "@tauri-apps/plugin-deep-link": "2.4.6" + "@tauri-apps/plugin-deep-link": "2.4.7" }, "devDependencies": { "@tauri-apps/cli": "2.10.0", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index c4925b1a5..3db561f6c 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.6", + "version": "2.4.7", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index 314d29087..d1a824773 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[2.4.0] + +### Dependencies + +- Upgraded to `deep-link@2.4.7` + +### fix + +- [`98e2c11e`](https://github.com/tauri-apps/plugins-workspace/commit/98e2c11eefc3ee562f1ed280efe7e8ea6ff0f3b0) ([#3194](https://github.com/tauri-apps/plugins-workspace/pull/3194) by [@mrquantumoff](https://github.com/tauri-apps/plugins-workspace/../../mrquantumoff)) **Breaking Change:** On Linux, the DBus ID/name will now be `.SingleInstance` instead of `org..SingleInstance` to follow DBus specifications. + + This will break the single-instance mechanism across different app versions if the app was installed multiple times. + + Added `dbus_id` builder method, which can be used to restore previous behavior. For a bundle identifier of `com.tauri.my-example` this would be `dbus_id("org.com_tauri_my_example")`. + ## \[2.3.7] ### Dependencies diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index f8f8ea1ae..2fa0b30a8 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.7" +version = "2.4.0" 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.6", optional = true } +tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.7", 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 8911bab0a..0f4cd507f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -189,7 +189,7 @@ importers: specifier: ^2.10.1 version: 2.10.1 '@tauri-apps/plugin-deep-link': - specifier: 2.4.6 + specifier: 2.4.7 version: link:../.. devDependencies: '@tauri-apps/cli':