From a62971c3c15247d853ba637dd70f6daf96206d37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:01:45 +0000 Subject: [PATCH] publish new versions --- .changes/fix-yield-single-instance-macos.md | 4 ---- .changes/log-file-open-strategy.md | 6 ------ .changes/positioner-current-monitor-panic.md | 6 ------ .changes/rmdep.md | 6 ------ Cargo.lock | 8 ++++---- examples/api/CHANGELOG.md | 6 ++++++ examples/api/package.json | 2 +- examples/api/src-tauri/CHANGELOG.md | 6 ++++++ examples/api/src-tauri/Cargo.toml | 4 ++-- plugins/log/CHANGELOG.md | 5 +++++ plugins/log/Cargo.toml | 2 +- plugins/log/package.json | 2 +- plugins/positioner/CHANGELOG.md | 4 ++++ plugins/positioner/Cargo.toml | 2 +- plugins/positioner/package.json | 2 +- plugins/single-instance/CHANGELOG.md | 4 ++++ plugins/single-instance/Cargo.toml | 2 +- 17 files changed, 37 insertions(+), 34 deletions(-) delete mode 100644 .changes/fix-yield-single-instance-macos.md delete mode 100644 .changes/log-file-open-strategy.md delete mode 100644 .changes/positioner-current-monitor-panic.md delete mode 100644 .changes/rmdep.md diff --git a/.changes/fix-yield-single-instance-macos.md b/.changes/fix-yield-single-instance-macos.md deleted file mode 100644 index d9985957a..000000000 --- a/.changes/fix-yield-single-instance-macos.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -"single-instance": patch ---- -Fix blocked thread on the single-instance plugin for MacOS: replace standard `UnixListener` with `tokio::net::UnixListener`, so the task can yield. diff --git a/.changes/log-file-open-strategy.md b/.changes/log-file-open-strategy.md deleted file mode 100644 index 6a6ba55e4..000000000 --- a/.changes/log-file-open-strategy.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"log": minor:feat -"log-js": minor ---- - -Added the `FileOpenStrategy` for log rotation. It defaults to append into existing file if any (previous behaviour), and brings a new feature to create a new file per session: `FileOpenStrategy::Rotate`. diff --git a/.changes/positioner-current-monitor-panic.md b/.changes/positioner-current-monitor-panic.md deleted file mode 100644 index 2f3a3c5d2..000000000 --- a/.changes/positioner-current-monitor-panic.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -positioner: patch -positioner-js: patch ---- - -Replaced a panic in `calculate_position` with an error return when the window has no associated monitor (e.g. during display sleep or monitor reconfiguration). diff --git a/.changes/rmdep.md b/.changes/rmdep.md deleted file mode 100644 index f72fc162f..000000000 --- a/.changes/rmdep.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"log": patch -"log-js": patch ---- - -Removed an unused dependency `byte-unit`. diff --git a/Cargo.lock b/Cargo.lock index 86be4d023..5c47b024b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.44" +version = "2.0.45" dependencies = [ "log", "serde", @@ -6643,7 +6643,7 @@ dependencies = [ [[package]] name = "tauri-plugin-log" -version = "2.8.0" +version = "2.9.0" dependencies = [ "android_logger", "fern", @@ -6745,7 +6745,7 @@ dependencies = [ [[package]] name = "tauri-plugin-positioner" -version = "2.3.2" +version = "2.3.3" dependencies = [ "log", "serde", @@ -6785,7 +6785,7 @@ dependencies = [ [[package]] name = "tauri-plugin-single-instance" -version = "2.4.2" +version = "2.4.3" dependencies = [ "semver", "serde", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 7b2776eb5..2f3d2a539 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.41] + +### Dependencies + +- Upgraded to `log-js@2.9.0` + ## \[2.0.40] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index 2d6703d3b..5a2f5bb8f 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.40", + "version": "2.0.41", "type": "module", "scripts": { "dev": "vite --clearScreen false", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index c69a4585b..3b93638e9 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.45] + +### Dependencies + +- Upgraded to `log@2.9.0` + ## \[2.0.44] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index ed1bf0df1..32d130603 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.44" +version = "2.0.45" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -20,7 +20,7 @@ serde = { workspace = true } tiny_http = "0.12" time = "0.3" log = { workspace = true } -tauri-plugin-log = { path = "../../../plugins/log", version = "2.8.0" } +tauri-plugin-log = { path = "../../../plugins/log", version = "2.9.0" } tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.5.1", features = [ "watch", ] } diff --git a/plugins/log/CHANGELOG.md b/plugins/log/CHANGELOG.md index c26549d39..df3d3958f 100644 --- a/plugins/log/CHANGELOG.md +++ b/plugins/log/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[2.9.0] + +- [`f08980f1`](https://github.com/tauri-apps/plugins-workspace/commit/f08980f123f191b9505bd290acd8fff0fdefeed9) ([#3445](https://github.com/tauri-apps/plugins-workspace/pull/3445) by [@bajoca05](https://github.com/tauri-apps/plugins-workspace/../../bajoca05)) Added the `FileOpenStrategy` for log rotation. It defaults to append into existing file if any (previous behaviour), and brings a new feature to create a new file per session: `FileOpenStrategy::Rotate`. +- [`0c23b8ec`](https://github.com/tauri-apps/plugins-workspace/commit/0c23b8ecfe7c2aca582a81ab7339b11e350b3cac) ([#3446](https://github.com/tauri-apps/plugins-workspace/pull/3446) by [@fee1-dead](https://github.com/tauri-apps/plugins-workspace/../../fee1-dead)) Removed an unused dependency `byte-unit`. + ## \[2.8.0] - [`2a625adf`](https://github.com/tauri-apps/plugins-workspace/commit/2a625adff30238904035b86b6e2db7595597e857) ([#3065](https://github.com/tauri-apps/plugins-workspace/pull/3065) by [@BinaryMuse](https://github.com/tauri-apps/plugins-workspace/../../BinaryMuse)) Allow specifying a log formatter per target using the `format` method on `Target`. diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index c5c82fd27..367fe05e5 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-log" -version = "2.8.0" +version = "2.9.0" description = "Configurable logging for your Tauri app." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/log/package.json b/plugins/log/package.json index 2185fa9e8..342e12500 100644 --- a/plugins/log/package.json +++ b/plugins/log/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-log", - "version": "2.8.0", + "version": "2.9.0", "description": "Configurable logging for your Tauri app.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index 5fd9c3ebd..b427a1c15 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.3.3] + +- [`4be76900`](https://github.com/tauri-apps/plugins-workspace/commit/4be76900854cae3dc91363dea71b54505896e928) ([#3449](https://github.com/tauri-apps/plugins-workspace/pull/3449) by [@skkap](https://github.com/tauri-apps/plugins-workspace/../../skkap)) Replaced a panic in `calculate_position` with an error return when the window has no associated monitor (e.g. during display sleep or monitor reconfiguration). + ## \[2.3.2] - [`c0d64bf7`](https://github.com/tauri-apps/plugins-workspace/commit/c0d64bf7d9c0f2c8ed1d2614745e15bbb3cde6a7) ([#3420](https://github.com/tauri-apps/plugins-workspace/pull/3420) by [@UrsDeSwardt](https://github.com/tauri-apps/plugins-workspace/../../UrsDeSwardt)) Removed panics and replaced them with error handling. diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index dec0a24e6..4113953ca 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "2.3.2" +version = "2.3.3" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/positioner/package.json b/plugins/positioner/package.json index e91377dec..94b78f500 100644 --- a/plugins/positioner/package.json +++ b/plugins/positioner/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-positioner", - "version": "2.3.2", + "version": "2.3.3", "description": "Position your windows at well-known locations.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index 8e6467111..08b77d46f 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.3] + +- [`d1573877`](https://github.com/tauri-apps/plugins-workspace/commit/d1573877226e609461761aa538cd0ca4f24d22be) ([#3466](https://github.com/tauri-apps/plugins-workspace/pull/3466) by [@bajoca05](https://github.com/tauri-apps/plugins-workspace/../../bajoca05)) Fix blocked thread on the single-instance plugin for MacOS: replace standard `UnixListener` with `tokio::net::UnixListener`, so the task can yield. + ## \[2.4.2] ### Dependencies diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index 3af5667c8..d19b63ab4 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.2" +version = "2.4.3" description = "Ensure a single instance of your tauri app is running." authors = { workspace = true } license = { workspace = true }