From 50b159f668a5fcf42d6356e2af1dc549632b413d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 12:18:37 +0100 Subject: [PATCH] Publish New Versions (v2) (#3211) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changes/add-updater-no-proxy.md | 6 --- .changes/barcode-scanner-ios-crash.md | 6 --- .changes/barcode-scanner-ios-thread.md | 6 --- .changes/fix-barcode-scanner-ios-sim-crash.md | 6 --- .changes/fix-http-stream-cancellation.md | 6 --- ...sql-query-results-uuid-returned-as-null.md | 6 --- .changes/make-sidecars-work-in-tests.md | 6 --- .changes/updater-allow-invalid-tls.md | 6 --- .changes/updater-new-bundle-support.md | 6 --- .changes/updater-reqwest-0.13.md | 6 --- Cargo.lock | 12 ++--- 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 | 6 +++ plugins/barcode-scanner/Cargo.toml | 2 +- plugins/barcode-scanner/package.json | 2 +- plugins/http/CHANGELOG.md | 4 ++ plugins/http/Cargo.toml | 2 +- plugins/http/package.json | 2 +- plugins/shell/CHANGELOG.md | 6 +++ plugins/shell/Cargo.toml | 2 +- plugins/shell/package.json | 2 +- plugins/sql/CHANGELOG.md | 4 ++ plugins/sql/Cargo.toml | 2 +- plugins/sql/package.json | 2 +- plugins/updater/CHANGELOG.md | 7 +++ plugins/updater/Cargo.toml | 2 +- plugins/updater/package.json | 2 +- pnpm-lock.yaml | 47 +++++++++++++------ 31 files changed, 104 insertions(+), 100 deletions(-) delete mode 100644 .changes/add-updater-no-proxy.md delete mode 100644 .changes/barcode-scanner-ios-crash.md delete mode 100644 .changes/barcode-scanner-ios-thread.md delete mode 100644 .changes/fix-barcode-scanner-ios-sim-crash.md delete mode 100644 .changes/fix-http-stream-cancellation.md delete mode 100644 .changes/fix-sql-query-results-uuid-returned-as-null.md delete mode 100644 .changes/make-sidecars-work-in-tests.md delete mode 100644 .changes/updater-allow-invalid-tls.md delete mode 100644 .changes/updater-new-bundle-support.md delete mode 100644 .changes/updater-reqwest-0.13.md diff --git a/.changes/add-updater-no-proxy.md b/.changes/add-updater-no-proxy.md deleted file mode 100644 index 42641e063..000000000 --- a/.changes/add-updater-no-proxy.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"updater": minor -"updater-js": minor ---- - -Add no_proxy config to disable system proxy for updater plugin. diff --git a/.changes/barcode-scanner-ios-crash.md b/.changes/barcode-scanner-ios-crash.md deleted file mode 100644 index fbc70f2f9..000000000 --- a/.changes/barcode-scanner-ios-crash.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -barcode-scanner: patch -barcode-scanner-js: patch ---- - -On iOS, fixed an application crash happening when the scanner was started when user denied permission before. diff --git a/.changes/barcode-scanner-ios-thread.md b/.changes/barcode-scanner-ios-thread.md deleted file mode 100644 index 61365bfa8..000000000 --- a/.changes/barcode-scanner-ios-thread.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -barcode-scanner: patch -barcode-scanner-js: patch ---- - -On iOS, start the scanning session on a separate thread to fix performance issues. diff --git a/.changes/fix-barcode-scanner-ios-sim-crash.md b/.changes/fix-barcode-scanner-ios-sim-crash.md deleted file mode 100644 index bd325e2ab..000000000 --- a/.changes/fix-barcode-scanner-ios-sim-crash.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -barcode-scanner: patch -barcode-scanner-js: patch ---- - -On iOS, fixed an application crash happening when the scanner was started on the iOS Simulator (no camera available). diff --git a/.changes/fix-http-stream-cancellation.md b/.changes/fix-http-stream-cancellation.md deleted file mode 100644 index 10ad0d354..000000000 --- a/.changes/fix-http-stream-cancellation.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -http: patch -http-js: patch ---- - -Cleanup resource when the returned `ReadableStream.cancel` is called to avoid memory leaks diff --git a/.changes/fix-sql-query-results-uuid-returned-as-null.md b/.changes/fix-sql-query-results-uuid-returned-as-null.md deleted file mode 100644 index 9fb834d0b..000000000 --- a/.changes/fix-sql-query-results-uuid-returned-as-null.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"sql": "patch" -"sql-js": "patch" ---- - -Fixes issue with UUIDs returned as null in sql query results. \ No newline at end of file diff --git a/.changes/make-sidecars-work-in-tests.md b/.changes/make-sidecars-work-in-tests.md deleted file mode 100644 index 4f07cff80..000000000 --- a/.changes/make-sidecars-work-in-tests.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'shell': 'patch:bug' -'shell-js': 'patch:bug' ---- - -Make sidecars work in tests. Executable resolution is aware of the "deps" directory. \ No newline at end of file diff --git a/.changes/updater-allow-invalid-tls.md b/.changes/updater-allow-invalid-tls.md deleted file mode 100644 index 7c8e275cf..000000000 --- a/.changes/updater-allow-invalid-tls.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"updater": minor -"updater-js": minor ---- - -Allow configuring the updater client to accept invalid TLS certificates and hostnames for internal/self-signed update servers. These options are available via the plugin config (`dangerousAcceptInvalidCerts`, `dangerousAcceptInvalidHostnames`) and via the `UpdaterBuilder` (`dangerous_accept_invalid_certs`, `dangerous_accept_invalid_hostnames`). diff --git a/.changes/updater-new-bundle-support.md b/.changes/updater-new-bundle-support.md deleted file mode 100644 index 471da921c..000000000 --- a/.changes/updater-new-bundle-support.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"updater": minor -"updater-js": minor ---- - -Updater plugin now supports all bundle types: Deb, Rpm and AppImage for Linux; NSiS, MSI for Windows. This was added in https://github.com/tauri-apps/plugins-workspace/pull/2624 diff --git a/.changes/updater-reqwest-0.13.md b/.changes/updater-reqwest-0.13.md deleted file mode 100644 index 879367650..000000000 --- a/.changes/updater-reqwest-0.13.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"updater": minor -"updater-js": minor ---- - -Updated `reqwest` to 0.13, make sure to update your `reqwest` dependency if you're using `UpdaterBuilder::configure_client` diff --git a/Cargo.lock b/Cargo.lock index 59c4ff0f4..167de98cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "api" -version = "2.0.40" +version = "2.0.41" dependencies = [ "log", "serde", @@ -6632,7 +6632,7 @@ dependencies = [ [[package]] name = "tauri-plugin-barcode-scanner" -version = "2.4.3" +version = "2.4.4" dependencies = [ "log", "serde", @@ -6779,7 +6779,7 @@ dependencies = [ [[package]] name = "tauri-plugin-http" -version = "2.5.6" +version = "2.5.7" dependencies = [ "bytes", "cookie_store", @@ -6942,7 +6942,7 @@ dependencies = [ [[package]] name = "tauri-plugin-shell" -version = "2.3.4" +version = "2.3.5" dependencies = [ "encoding_rs", "log", @@ -6976,7 +6976,7 @@ dependencies = [ [[package]] name = "tauri-plugin-sql" -version = "2.3.1" +version = "2.3.2" dependencies = [ "futures-core", "indexmap 2.9.0", @@ -7029,7 +7029,7 @@ dependencies = [ [[package]] name = "tauri-plugin-updater" -version = "2.9.0" +version = "2.10.0" dependencies = [ "base64 0.22.1", "dirs 6.0.0", diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index cf0b0376f..e471582b8 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.37] + +### Dependencies + +- Upgraded to `updater-js@2.10.0` +- Upgraded to `barcode-scanner-js@2.4.4` +- Upgraded to `http-js@2.5.7` +- Upgraded to `shell-js@2.3.5` + ## \[2.0.36] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index edcea717c..3e6f82799 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.36", + "version": "2.0.37", "type": "module", "scripts": { "dev": "vite --clearScreen false", @@ -11,7 +11,7 @@ }, "dependencies": { "@tauri-apps/api": "^2.10.1", - "@tauri-apps/plugin-barcode-scanner": "^2.4.3", + "@tauri-apps/plugin-barcode-scanner": "^2.4.4", "@tauri-apps/plugin-biometric": "^2.3.2", "@tauri-apps/plugin-cli": "^2.4.1", "@tauri-apps/plugin-clipboard-manager": "^2.3.2", @@ -20,15 +20,15 @@ "@tauri-apps/plugin-geolocation": "^2.2.0", "@tauri-apps/plugin-global-shortcut": "^2.3.1", "@tauri-apps/plugin-haptics": "^2.2.0", - "@tauri-apps/plugin-http": "^2.5.6", + "@tauri-apps/plugin-http": "^2.5.7", "@tauri-apps/plugin-nfc": "^2.3.4", "@tauri-apps/plugin-notification": "^2.3.3", "@tauri-apps/plugin-opener": "^2.5.3", "@tauri-apps/plugin-os": "^2.3.2", "@tauri-apps/plugin-process": "^2.3.1", - "@tauri-apps/plugin-shell": "^2.3.4", + "@tauri-apps/plugin-shell": "^2.3.5", "@tauri-apps/plugin-store": "^2.4.2", - "@tauri-apps/plugin-updater": "^2.9.0", + "@tauri-apps/plugin-updater": "^2.10.0", "@tauri-apps/plugin-upload": "^2.3.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 06cbde0b1..a07e697c6 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[2.0.41] + +### Dependencies + +- Upgraded to `updater@2.10.0` +- Upgraded to `barcode-scanner@2.4.4` +- Upgraded to `http@2.5.7` +- Upgraded to `shell@2.3.5` + ## \[2.0.40] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index eabf34faa..afbb0c459 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.40" +version = "2.0.41" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -29,14 +29,14 @@ tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.6.0" } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", -], version = "2.5.6" } +], version = "2.5.7" } 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-shell = { path = "../../../plugins/shell", version = "2.3.4" } +tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.3.5" } tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.2" } tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" } @@ -57,11 +57,11 @@ features = [ [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.1" } tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.1" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.10.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.4.3" } +tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.4.4" } tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.3.4" } tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.3.2" } tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.2" } diff --git a/plugins/barcode-scanner/CHANGELOG.md b/plugins/barcode-scanner/CHANGELOG.md index 26a9499b6..4060bd09a 100644 --- a/plugins/barcode-scanner/CHANGELOG.md +++ b/plugins/barcode-scanner/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.4.4] + +- [`82fbb0c7`](https://github.com/tauri-apps/plugins-workspace/commit/82fbb0c790288eca72af9ade13828ded7700ff90) ([#3221](https://github.com/tauri-apps/plugins-workspace/pull/3221)) On iOS, fixed an application crash happening when the scanner was started when user denied permission before. +- [`b60dd887`](https://github.com/tauri-apps/plugins-workspace/commit/b60dd88702a2be2af942a3d104d728970a4c42d6) ([#3223](https://github.com/tauri-apps/plugins-workspace/pull/3223)) On iOS, start the scanning session on a separate thread to fix performance issues. +- [`c27af912`](https://github.com/tauri-apps/plugins-workspace/commit/c27af9128d6cc7a2424ec49e98005e68b2d0eb1a) ([#3222](https://github.com/tauri-apps/plugins-workspace/pull/3222)) On iOS, fixed an application crash happening when the scanner was started on the iOS Simulator (no camera available). + ## \[2.4.3] - [`d8bfe61f`](https://github.com/tauri-apps/plugins-workspace/commit/d8bfe61f20f235314bad93a9c50d8b7f3eade734) ([#3121](https://github.com/tauri-apps/plugins-workspace/pull/3121) by [@NKIPSC](https://github.com/tauri-apps/plugins-workspace/../../NKIPSC)) Remove unnecessary checks on Android when requesting camera permission. diff --git a/plugins/barcode-scanner/Cargo.toml b/plugins/barcode-scanner/Cargo.toml index f9e9ae229..d7654dcf7 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.4.3" +version = "2.4.4" 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 4091c6cfe..45f6bee26 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.4.3", + "version": "2.4.4", "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/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index 2f96b3467..ff21ffa0c 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.5.7] + +- [`61e9b0ab`](https://github.com/tauri-apps/plugins-workspace/commit/61e9b0ab64c56cc5f7a5cb3b92b386671da6e0a2) ([#3228](https://github.com/tauri-apps/plugins-workspace/pull/3228)) Cleanup resource when the returned `ReadableStream.cancel` is called to avoid memory leaks + ## \[2.5.6] - [`b1dbee2c`](https://github.com/tauri-apps/plugins-workspace/commit/b1dbee2c55c1aa7b64732c4cc9f8cb20520b8666) ([#3210](https://github.com/tauri-apps/plugins-workspace/pull/3210) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused the Origin header to always be `null` on macOS, iOS and Linux. diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index f57b99495..b2d48e7c6 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "2.5.6" +version = "2.5.7" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/http/package.json b/plugins/http/package.json index c1f10492f..20e9e5996 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "2.5.6", + "version": "2.5.7", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/shell/CHANGELOG.md b/plugins/shell/CHANGELOG.md index c3799fcf6..d93aee7ff 100644 --- a/plugins/shell/CHANGELOG.md +++ b/plugins/shell/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.3.5] + +### bug + +- [`d4613ff0`](https://github.com/tauri-apps/plugins-workspace/commit/d4613ff0029ea65f5c6895c3a6f8f5668dd1b55e) ([#3234](https://github.com/tauri-apps/plugins-workspace/pull/3234)) Make sidecars work in tests. Executable resolution is aware of the "deps" directory. + ## \[2.3.4] - [`31415eff`](https://github.com/tauri-apps/plugins-workspace/commit/31415effdf5a9ced19934a681cb044a732174088) ([#3183](https://github.com/tauri-apps/plugins-workspace/pull/3183) by [@Tunglies](https://github.com/tauri-apps/plugins-workspace/../../Tunglies)) Docs on example to Encoding usage in `Command::spawn`. No user facing changes. diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index fc7df9a04..fbbd51f42 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-shell" -version = "2.3.4" +version = "2.3.5" description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/shell/package.json b/plugins/shell/package.json index 31c801b10..7d82118ac 100644 --- a/plugins/shell/package.json +++ b/plugins/shell/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-shell", - "version": "2.3.4", + "version": "2.3.5", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index 825ad2329..dfe49b11c 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.3.2] + +- [`2dc3f3f0`](https://github.com/tauri-apps/plugins-workspace/commit/2dc3f3f0397fa91b1f3ffbc4b42ca2b4ae55bbe0) ([#3144](https://github.com/tauri-apps/plugins-workspace/pull/3144)) Fixes issue with UUIDs returned as null in sql query results. + ## \[2.3.1] - [`93426f85`](https://github.com/tauri-apps/plugins-workspace/commit/93426f85120f49beb9f40222bff45185a32d54a9) Fixed an issue that caused docs.rs builds to fail. No user facing changes. diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index ab7b48f8d..e1a5feefc 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "2.3.1" +version = "2.3.2" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/sql/package.json b/plugins/sql/package.json index 2d9f8221d..6b0bf812a 100644 --- a/plugins/sql/package.json +++ b/plugins/sql/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-sql", - "version": "2.3.1", + "version": "2.3.2", "description": "Interface with SQL databases", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index a08123802..537d88f54 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.10.0] + +- [`4375c98b`](https://github.com/tauri-apps/plugins-workspace/commit/4375c98bed1769a1fc1be26eded4db9f7c095d95) ([#3073](https://github.com/tauri-apps/plugins-workspace/pull/3073)) Add no_proxy config to disable system proxy for updater plugin. +- [`f122ee98`](https://github.com/tauri-apps/plugins-workspace/commit/f122ee98c6954075891ac3cd530f5e29da117b39) Allow configuring the updater client to accept invalid TLS certificates and hostnames for internal/self-signed update servers. These options are available via the plugin config (`dangerousAcceptInvalidCerts`, `dangerousAcceptInvalidHostnames`) and via the `UpdaterBuilder` (`dangerous_accept_invalid_certs`, `dangerous_accept_invalid_hostnames`). +- [`f122ee98`](https://github.com/tauri-apps/plugins-workspace/commit/f122ee98c6954075891ac3cd530f5e29da117b39) Updater plugin now supports all bundle types: Deb, Rpm and AppImage for Linux; NSiS, MSI for Windows. This was added in https://github.com/tauri-apps/plugins-workspace/pull/2624 +- [`05c5da07`](https://github.com/tauri-apps/plugins-workspace/commit/05c5da072b6e3254c19ee69024f80f4dfe1b779b) ([#3213](https://github.com/tauri-apps/plugins-workspace/pull/3213)) Updated `reqwest` to 0.13, make sure to update your `reqwest` dependency if you're using `UpdaterBuilder::configure_client` + ## \[2.9.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/updater/Cargo.toml b/plugins/updater/Cargo.toml index e24cabc28..da444fa24 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "2.9.0" +version = "2.10.0" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/updater/package.json b/plugins/updater/package.json index c99b19cee..387897cbe 100644 --- a/plugins/updater/package.json +++ b/plugins/updater/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-updater", - "version": "2.9.0", + "version": "2.10.0", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4795b5854..5829f419e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,7 +58,7 @@ importers: specifier: ^2.10.1 version: 2.10.1 '@tauri-apps/plugin-barcode-scanner': - specifier: ^2.4.3 + specifier: ^2.4.4 version: link:../../plugins/barcode-scanner '@tauri-apps/plugin-biometric': specifier: ^2.3.2 @@ -85,7 +85,7 @@ importers: specifier: ^2.2.0 version: link:../../plugins/haptics '@tauri-apps/plugin-http': - specifier: ^2.5.6 + specifier: ^2.5.7 version: link:../../plugins/http '@tauri-apps/plugin-nfc': specifier: ^2.3.4 @@ -103,13 +103,13 @@ importers: specifier: ^2.3.1 version: link:../../plugins/process '@tauri-apps/plugin-shell': - specifier: ^2.3.4 + specifier: ^2.3.5 version: link:../../plugins/shell '@tauri-apps/plugin-store': specifier: ^2.4.2 version: link:../../plugins/store '@tauri-apps/plugin-updater': - specifier: ^2.9.0 + specifier: ^2.10.0 version: link:../../plugins/updater '@tauri-apps/plugin-upload': specifier: ^2.3.0 @@ -794,66 +794,79 @@ packages: resolution: {integrity: sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==} cpu: [arm] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.55.1': resolution: {integrity: sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==} cpu: [arm] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.55.1': resolution: {integrity: sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==} cpu: [arm64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.55.1': resolution: {integrity: sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==} cpu: [arm64] os: [linux] + libc: [musl] '@rollup/rollup-linux-loong64-gnu@4.55.1': resolution: {integrity: sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==} cpu: [loong64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-loong64-musl@4.55.1': resolution: {integrity: sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==} cpu: [loong64] os: [linux] + libc: [musl] '@rollup/rollup-linux-ppc64-gnu@4.55.1': resolution: {integrity: sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==} cpu: [ppc64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-ppc64-musl@4.55.1': resolution: {integrity: sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==} cpu: [ppc64] os: [linux] + libc: [musl] '@rollup/rollup-linux-riscv64-gnu@4.55.1': resolution: {integrity: sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==} cpu: [riscv64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-musl@4.55.1': resolution: {integrity: sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==} cpu: [riscv64] os: [linux] + libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.55.1': resolution: {integrity: sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==} cpu: [s390x] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.55.1': resolution: {integrity: sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==} cpu: [x64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.55.1': resolution: {integrity: sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==} cpu: [x64] os: [linux] + libc: [musl] '@rollup/rollup-openbsd-x64@4.55.1': resolution: {integrity: sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==} @@ -931,30 +944,35 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@tauri-apps/cli-linux-arm64-musl@2.10.0': resolution: {integrity: sha512-GUoPdVJmrJRIXFfW3Rkt+eGK9ygOdyISACZfC/bCSfOnGt8kNdQIQr5WRH9QUaTVFIwxMlQyV3m+yXYP+xhSVA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [musl] '@tauri-apps/cli-linux-riscv64-gnu@2.10.0': resolution: {integrity: sha512-JO7s3TlSxshwsoKNCDkyvsx5gw2QAs/Y2GbR5UE2d5kkU138ATKoPOtxn8G1fFT1aDW4LH0rYAAfBpGkDyJJnw==} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] + libc: [glibc] '@tauri-apps/cli-linux-x64-gnu@2.10.0': resolution: {integrity: sha512-Uvh4SUUp4A6DVRSMWjelww0GnZI3PlVy7VS+DRF5napKuIehVjGl9XD0uKoCoxwAQBLctvipyEK+pDXpJeoHng==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@tauri-apps/cli-linux-x64-musl@2.10.0': resolution: {integrity: sha512-AP0KRK6bJuTpQ8kMNWvhIpKUkQJfcPFeba7QshOQZjJ8wOS6emwTN4K5g/d3AbCMo0RRdnZWwu67MlmtJyxC1Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@tauri-apps/cli-win32-arm64-msvc@2.10.0': resolution: {integrity: sha512-97DXVU3dJystrq7W41IX+82JEorLNY+3+ECYxvXWqkq7DBN6FsA08x/EFGE8N/b0LTOui9X2dvpGGoeZKKV08g==} @@ -2369,9 +2387,9 @@ snapshots: - encoding - mocha - '@covector/assemble@0.12.0(mocha@10.8.2)': + '@covector/assemble@0.12.0': dependencies: - '@covector/command': 0.8.0(mocha@10.8.2) + '@covector/command': 0.8.0 '@covector/files': 0.8.0 effection: 2.0.8(mocha@10.8.2) js-yaml: 4.1.1 @@ -2382,10 +2400,9 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding - - mocha - supports-color - '@covector/changelog@0.12.0(mocha@10.8.2)': + '@covector/changelog@0.12.0': dependencies: '@covector/files': 0.8.0 effection: 2.0.8(mocha@10.8.2) @@ -2395,16 +2412,14 @@ snapshots: unified: 9.2.2 transitivePeerDependencies: - encoding - - mocha - supports-color - '@covector/command@0.8.0(mocha@10.8.2)': + '@covector/command@0.8.0': dependencies: '@effection/process': 2.1.4 effection: 2.0.8(mocha@10.8.2) transitivePeerDependencies: - encoding - - mocha '@covector/files@0.8.0': dependencies: @@ -2451,6 +2466,8 @@ snapshots: dependencies: effection: 2.0.8(mocha@10.8.2) mocha: 10.8.2 + transitivePeerDependencies: + - encoding '@effection/process@2.1.4': dependencies: @@ -2458,6 +2475,8 @@ snapshots: ctrlc-windows: 2.2.0 effection: 2.0.8(mocha@10.8.2) shellwords: 0.1.1 + transitivePeerDependencies: + - encoding '@effection/stream@2.0.6': dependencies: @@ -3305,9 +3324,9 @@ snapshots: dependencies: '@clack/prompts': 0.7.0 '@covector/apply': 0.10.0(mocha@10.8.2) - '@covector/assemble': 0.12.0(mocha@10.8.2) - '@covector/changelog': 0.12.0(mocha@10.8.2) - '@covector/command': 0.8.0(mocha@10.8.2) + '@covector/assemble': 0.12.0 + '@covector/changelog': 0.12.0 + '@covector/command': 0.8.0 '@covector/files': 0.8.0 effection: 2.0.8(mocha@10.8.2) globby: 11.1.0