From d26d53a30a03166c9647465bc4c00440d71d9068 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 02:14:30 +0000 Subject: [PATCH] publish new versions --- .changes/barcode-gs1.md | 6 ------ .changes/window-state-optional-flags.md | 6 ------ .changes/write-readable-stream-create.md | 6 ------ Cargo.lock | 14 +++++++------- examples/api/CHANGELOG.md | 9 +++++++++ examples/api/package.json | 10 +++++----- examples/api/src-tauri/CHANGELOG.md | 9 +++++++++ examples/api/src-tauri/Cargo.toml | 10 +++++----- plugins/barcode-scanner/CHANGELOG.md | 4 ++++ plugins/barcode-scanner/Cargo.toml | 2 +- plugins/barcode-scanner/package.json | 2 +- plugins/dialog/CHANGELOG.md | 6 ++++++ plugins/dialog/Cargo.toml | 4 ++-- plugins/dialog/package.json | 2 +- plugins/fs/CHANGELOG.md | 4 ++++ plugins/fs/Cargo.toml | 2 +- plugins/fs/package.json | 2 +- plugins/http/CHANGELOG.md | 6 ++++++ plugins/http/Cargo.toml | 4 ++-- plugins/http/package.json | 2 +- plugins/persisted-scope/CHANGELOG.md | 6 ++++++ plugins/persisted-scope/Cargo.toml | 4 ++-- plugins/window-state/CHANGELOG.md | 4 ++++ plugins/window-state/Cargo.toml | 2 +- plugins/window-state/package.json | 2 +- pnpm-lock.yaml | 15 +++++++++------ 26 files changed, 88 insertions(+), 55 deletions(-) delete mode 100644 .changes/barcode-gs1.md delete mode 100644 .changes/window-state-optional-flags.md delete mode 100644 .changes/write-readable-stream-create.md diff --git a/.changes/barcode-gs1.md b/.changes/barcode-gs1.md deleted file mode 100644 index 12b5c4e5..00000000 --- a/.changes/barcode-gs1.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -barcode-scanner: minor -barcode-scanner-js: minor ---- - -Added support for GS1 DataBar on iOS 15.4+ diff --git a/.changes/window-state-optional-flags.md b/.changes/window-state-optional-flags.md deleted file mode 100644 index 76c6465a..00000000 --- a/.changes/window-state-optional-flags.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'window-state': 'minor' -'window-state-js': 'minor' ---- - -Making `flags` optional in the `saveWindowState`, `restoreState`, `restoreStateCurrent` JavaScripts APIs, leaving it empty will make it use plugin's default flags diff --git a/.changes/write-readable-stream-create.md b/.changes/write-readable-stream-create.md deleted file mode 100644 index 5cebd696..00000000 --- a/.changes/write-readable-stream-create.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -fs: patch -fs-js: patch ---- - -Fix `writeFile` doesn't create a new file by default when the data is a `ReadableStream` diff --git a/Cargo.lock b/Cargo.lock index 23f4bb0b..998b5fac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.30" +version = "2.0.31" dependencies = [ "log", "serde", @@ -6495,7 +6495,7 @@ dependencies = [ [[package]] name = "tauri-plugin-barcode-scanner" -version = "2.3.0" +version = "2.4.0" dependencies = [ "log", "serde", @@ -6564,7 +6564,7 @@ dependencies = [ [[package]] name = "tauri-plugin-dialog" -version = "2.3.0" +version = "2.3.1" dependencies = [ "log", "raw-window-handle", @@ -6580,7 +6580,7 @@ dependencies = [ [[package]] name = "tauri-plugin-fs" -version = "2.4.0" +version = "2.4.1" dependencies = [ "anyhow", "dunce", @@ -6641,7 +6641,7 @@ dependencies = [ [[package]] name = "tauri-plugin-http" -version = "2.5.0" +version = "2.5.1" dependencies = [ "bytes", "cookie_store", @@ -6769,7 +6769,7 @@ dependencies = [ [[package]] name = "tauri-plugin-persisted-scope" -version = "2.3.0" +version = "2.3.1" dependencies = [ "aho-corasick", "bincode", @@ -6955,7 +6955,7 @@ dependencies = [ [[package]] name = "tauri-plugin-window-state" -version = "2.3.0" +version = "2.4.0" dependencies = [ "bitflags 2.9.0", "log", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index 861d5d88..73c54229 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.27] + +### Dependencies + +- Upgraded to `barcode-scanner-js@2.4.0` +- Upgraded to `fs-js@2.4.1` +- Upgraded to `dialog-js@2.3.1` +- Upgraded to `http-js@2.5.1` + ## \[2.0.26] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index c81db111..e2f4d6fe 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.26", + "version": "2.0.27", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -11,16 +11,16 @@ }, "dependencies": { "@tauri-apps/api": "2.6.0", - "@tauri-apps/plugin-barcode-scanner": "^2.3.0", + "@tauri-apps/plugin-barcode-scanner": "^2.4.0", "@tauri-apps/plugin-biometric": "^2.3.0", "@tauri-apps/plugin-cli": "^2.4.0", "@tauri-apps/plugin-clipboard-manager": "^2.3.0", - "@tauri-apps/plugin-dialog": "^2.3.0", - "@tauri-apps/plugin-fs": "^2.4.0", + "@tauri-apps/plugin-dialog": "^2.3.1", + "@tauri-apps/plugin-fs": "^2.4.1", "@tauri-apps/plugin-geolocation": "^2.2.0", "@tauri-apps/plugin-global-shortcut": "^2.3.0", "@tauri-apps/plugin-haptics": "^2.2.0", - "@tauri-apps/plugin-http": "^2.5.0", + "@tauri-apps/plugin-http": "^2.5.1", "@tauri-apps/plugin-nfc": "^2.3.0", "@tauri-apps/plugin-notification": "^2.3.0", "@tauri-apps/plugin-opener": "^2.4.0", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index c6df4c96..b0ad459b 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.31] + +### Dependencies + +- Upgraded to `barcode-scanner@2.4.0` +- Upgraded to `fs@2.4.1` +- Upgraded to `dialog@2.3.1` +- Upgraded to `http@2.5.1` + ## \[2.0.30] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index d9966254..4d9ba718 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.30" +version = "2.0.31" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -21,15 +21,15 @@ tiny_http = "0.12" time = "0.3" log = { workspace = true } tauri-plugin-log = { path = "../../../plugins/log", version = "2.6.0" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.0", features = [ +tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.1", features = [ "watch", ] } tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.3.0" } -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.3.0" } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.3.1" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", -], version = "2.5.0" } +], version = "2.5.1" } tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.0", features = [ "windows7-compat", ] } @@ -60,7 +60,7 @@ tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" } tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] -tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.3.0" } +tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.4.0" } tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.3.0" } tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.3.0" } tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.0" } diff --git a/plugins/barcode-scanner/CHANGELOG.md b/plugins/barcode-scanner/CHANGELOG.md index be154da2..543acbd8 100644 --- a/plugins/barcode-scanner/CHANGELOG.md +++ b/plugins/barcode-scanner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.0] + +- [`aa9140e1`](https://github.com/tauri-apps/plugins-workspace/commit/aa9140e1ac239ab9f015f92b2ed52bbf0eda7c12) ([#2437](https://github.com/tauri-apps/plugins-workspace/pull/2437) by [@enkhjile](https://github.com/tauri-apps/plugins-workspace/../../enkhjile)) Added support for GS1 DataBar on iOS 15.4+ + ## \[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/barcode-scanner/Cargo.toml b/plugins/barcode-scanner/Cargo.toml index d2cc13de..01679162 100644 --- a/plugins/barcode-scanner/Cargo.toml +++ b/plugins/barcode-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-barcode-scanner" -version = "2.3.0" +version = "2.4.0" description = "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS" edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/barcode-scanner/package.json b/plugins/barcode-scanner/package.json index 6e17569f..b9194415 100644 --- a/plugins/barcode-scanner/package.json +++ b/plugins/barcode-scanner/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-barcode-scanner", - "version": "2.3.0", + "version": "2.4.0", "description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index 566cb939..455e6536 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.1] + +### Dependencies + +- Upgraded to `fs-js@2.4.1` + ## \[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/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index ac8dabe7..18f5a54d 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "2.3.0" +version = "2.3.1" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -34,7 +34,7 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } url = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "2.4.0" } +tauri-plugin-fs = { path = "../fs", version = "2.4.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 76fd4e1a..a0bd27c1 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-dialog", - "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/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index ae859f77..a46c067e 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.1] + +- [`44a1f659`](https://github.com/tauri-apps/plugins-workspace/commit/44a1f659125a341191420e650608b0b6ff316a0e) ([#2846](https://github.com/tauri-apps/plugins-workspace/pull/2846) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix `writeFile` doesn't create a new file by default when the data is a `ReadableStream` + ## \[2.4.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/fs/Cargo.toml b/plugins/fs/Cargo.toml index 00f20bd6..4231c181 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "2.4.0" +version = "2.4.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 672d54d8..1ce3cb57 100644 --- a/plugins/fs/package.json +++ b/plugins/fs/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-fs", - "version": "2.4.0", + "version": "2.4.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 365c2c5c..9544fae2 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.5.1] + +### Dependencies + +- Upgraded to `fs-js@2.4.1` + ## \[2.5.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/http/Cargo.toml b/plugins/http/Cargo.toml index 3417ea8a..6f9ec1d8 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.5.0" +version = "2.5.1" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -34,7 +34,7 @@ serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } tokio = { version = "1", features = ["sync", "macros"] } -tauri-plugin-fs = { path = "../fs", version = "2.4.0" } +tauri-plugin-fs = { path = "../fs", version = "2.4.1" } urlpattern = "0.3" regex = "1" http = "1" diff --git a/plugins/http/package.json b/plugins/http/package.json index 3dc20235..13005771 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "2.5.0", + "version": "2.5.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index d2d90ae7..3b239419 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.1] + +### Dependencies + +- Upgraded to `fs@2.4.1` + ## \[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/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index dba334a7..eccff866 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.0" +version = "2.3.1" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -27,7 +27,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "2.4.0" } +tauri-plugin-fs = { path = "../fs", version = "2.4.1" } [features] protocol-asset = ["tauri/protocol-asset"] diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index 96d42696..296015ea 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.4.0] + +- [`6a8f2558`](https://github.com/tauri-apps/plugins-workspace/commit/6a8f25587852b958a9e48b8c2e8884cc94a7dc7f) ([#2619](https://github.com/tauri-apps/plugins-workspace/pull/2619) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Making `flags` optional in the `saveWindowState`, `restoreState`, `restoreStateCurrent` JavaScripts APIs, leaving it empty will make it use plugin's default flags + ## \[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/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index b7bd6c31..5f8b1807 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "2.3.0" +version = "2.4.0" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/window-state/package.json b/plugins/window-state/package.json index 95adfdbe..ac5555ce 100644 --- a/plugins/window-state/package.json +++ b/plugins/window-state/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-window-state", - "version": "2.3.0", + "version": "2.4.0", "description": "Save window positions and sizes and restore them when the app is reopened.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 46a684e3..6759405d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -57,7 +57,7 @@ importers: specifier: 2.6.0 version: 2.6.0 '@tauri-apps/plugin-barcode-scanner': - specifier: ^2.3.0 + specifier: ^2.4.0 version: link:../../plugins/barcode-scanner '@tauri-apps/plugin-biometric': specifier: ^2.3.0 @@ -69,10 +69,10 @@ importers: specifier: ^2.3.0 version: link:../../plugins/clipboard-manager '@tauri-apps/plugin-dialog': - specifier: ^2.3.0 + specifier: ^2.3.1 version: link:../../plugins/dialog '@tauri-apps/plugin-fs': - specifier: ^2.4.0 + specifier: ^2.4.1 version: link:../../plugins/fs '@tauri-apps/plugin-geolocation': specifier: ^2.2.0 @@ -84,7 +84,7 @@ importers: specifier: ^2.2.0 version: link:../../plugins/haptics '@tauri-apps/plugin-http': - specifier: ^2.5.0 + specifier: ^2.5.1 version: link:../../plugins/http '@tauri-apps/plugin-nfc': specifier: ^2.3.0 @@ -2370,7 +2370,7 @@ snapshots: '@covector/command@0.8.0(mocha@10.8.2)': dependencies: - '@effection/process': 2.1.4 + '@effection/process': 2.1.4(mocha@10.8.2) effection: 2.0.8(mocha@10.8.2) transitivePeerDependencies: - encoding @@ -2422,12 +2422,15 @@ snapshots: effection: 2.0.8(mocha@10.8.2) mocha: 10.8.2 - '@effection/process@2.1.4': + '@effection/process@2.1.4(mocha@10.8.2)': dependencies: cross-spawn: 7.0.6 ctrlc-windows: 2.2.0 effection: 2.0.8(mocha@10.8.2) shellwords: 0.1.1 + transitivePeerDependencies: + - encoding + - mocha '@effection/stream@2.0.6': dependencies: