From e7153a85a33f1b8013ab41bb95b94c4b75560eab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:13:53 -0300 Subject: [PATCH] apply version updates (#11075) Co-authored-by: lucasfernog --- .changes/bundler-nsis-webview2-success.md | 6 ------ .changes/deno.md | 6 ------ .changes/fix-deadlock-tracing-window-creation.md | 5 ----- .changes/updater-endpoint-version-encoded.md | 5 ----- Cargo.lock | 2 +- core/tauri/CHANGELOG.md | 7 +++++++ core/tauri/Cargo.toml | 2 +- tooling/bundler/CHANGELOG.md | 6 ++++++ tooling/bundler/Cargo.toml | 2 +- tooling/cli/CHANGELOG.md | 10 ++++++++++ tooling/cli/Cargo.lock | 4 ++-- tooling/cli/Cargo.toml | 4 ++-- tooling/cli/metadata.json | 4 ++-- tooling/cli/node/CHANGELOG.md | 10 ++++++++++ tooling/cli/node/package.json | 2 +- 15 files changed, 43 insertions(+), 32 deletions(-) delete mode 100644 .changes/bundler-nsis-webview2-success.md delete mode 100644 .changes/deno.md delete mode 100644 .changes/fix-deadlock-tracing-window-creation.md delete mode 100644 .changes/updater-endpoint-version-encoded.md diff --git a/.changes/bundler-nsis-webview2-success.md b/.changes/bundler-nsis-webview2-success.md deleted file mode 100644 index c2699e904363..000000000000 --- a/.changes/bundler-nsis-webview2-success.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri-bundler": "patch:bug" ---- - -Fix NSIS installer failing to determine whether webview installer downloaded correctly or not. - diff --git a/.changes/deno.md b/.changes/deno.md deleted file mode 100644 index cdd0a1a8d6c3..000000000000 --- a/.changes/deno.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'tauri-cli': 'patch:feat' -'@tauri-apps/cli': 'patch:feat' ---- - -Add Deno support in tauri-cli operations. diff --git a/.changes/fix-deadlock-tracing-window-creation.md b/.changes/fix-deadlock-tracing-window-creation.md deleted file mode 100644 index a3a93f743116..000000000000 --- a/.changes/fix-deadlock-tracing-window-creation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch:bug ---- - -Fixes a deadlock on window creation when the `tracing` feature is enabled. diff --git a/.changes/updater-endpoint-version-encoded.md b/.changes/updater-endpoint-version-encoded.md deleted file mode 100644 index e248a0026a21..000000000000 --- a/.changes/updater-endpoint-version-encoded.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tauri': 'patch:bug' ---- - -Encode `+` when making updater requests which can be cause incorrectly interpolating the endpoint when using `{{current_version}}` in the endpoint where the current version contains a build number, for example `1.8.0+1`. diff --git a/Cargo.lock b/Cargo.lock index 40cd3ee3ffb3..1bbd14ac3e19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4055,7 +4055,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "1.8.0" +version = "1.8.1" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index affe30ef177e..2b8ea56c0634 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.8.1] + +### Bug Fixes + +- [`c72cd45cc`](https://www.github.com/tauri-apps/tauri/commit/c72cd45ccdef453ee1082d8b55409da41f8c343b) ([#11213](https://www.github.com/tauri-apps/tauri/pull/11213) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes a deadlock on window creation when the `tracing` feature is enabled. +- [`9ef1be46e`](https://www.github.com/tauri-apps/tauri/commit/9ef1be46e89794334313359879868c98f47167c0) ([#11070](https://www.github.com/tauri-apps/tauri/pull/11070) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Encode `+` when making updater requests which can be cause incorrectly interpolating the endpoint when using `{{current_version}}` in the endpoint where the current version contains a build number, for example `1.8.0+1`. + ## \[1.8.0] ### New Features diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 570d8d3d93f9..9c64beab97ae 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.8.0" +version = "1.8.1" [package.metadata.docs.rs] no-default-features = true diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 6f9c848d2a8d..65ee4afcbb38 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.7.1] + +### Bug Fixes + +- [`019f94f12`](https://www.github.com/tauri-apps/tauri/commit/019f94f1284eebdf4fd72c4d1ca6ae096f09449d) ([#11131](https://www.github.com/tauri-apps/tauri/pull/11131) by [@0rvar](https://www.github.com/tauri-apps/tauri/../../0rvar)) Fix NSIS installer failing to determine whether webview installer downloaded correctly or not. + ## \[1.7.0] ### New Features diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index e37e73a5278e..40979a3d2423 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.7.0" +version = "1.7.1" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index 4576bffd8321..742549ccb4c0 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[1.6.3] + +### New Features + +- [`343b11d7c`](https://www.github.com/tauri-apps/tauri/commit/343b11d7c775fc01aa6ff8ab517fd1edd7e483ca) ([#11305](https://www.github.com/tauri-apps/tauri/pull/11305) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add Deno support in tauri-cli operations. + +### Dependencies + +- Upgraded to `tauri-bundler@1.7.1` + ## \[1.6.2] ### Dependencies diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 367400fee5f6..50f087985dac 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4298,7 +4298,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri-bundler" -version = "1.7.0" +version = "1.7.1" dependencies = [ "anyhow", "ar", @@ -4339,7 +4339,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.6.2" +version = "1.6.3" dependencies = [ "anyhow", "axum", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index ac67a459c0b7..8ddecf798242 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.6.2" +version = "1.6.3" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.71" @@ -42,7 +42,7 @@ path = "src/main.rs" clap_complete = "4" clap = { version = "4.4", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.7.0", path = "../bundler", default-features = false } +tauri-bundler = { version = "1.7.1", path = "../bundler", default-features = false } colored = "2.0" once_cell = "1" serde = { version = "1.0", features = [ "derive" ] } diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 5b032aaf89b7..a38c8293e158 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.6.2", + "version": "1.6.3", "node": ">= 10.0.0" }, - "tauri": "1.8.0", + "tauri": "1.8.1", "tauri-build": "1.5.5" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index b5f5d161923b..cb414ece0bb4 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[1.6.3] + +### New Features + +- [`343b11d7c`](https://www.github.com/tauri-apps/tauri/commit/343b11d7c775fc01aa6ff8ab517fd1edd7e483ca) ([#11305](https://www.github.com/tauri-apps/tauri/pull/11305) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add Deno support in tauri-cli operations. + +### Dependencies + +- Upgraded to `tauri-cli@1.6.3` + ## \[1.6.2] ### Dependencies diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 6c8a4d268b6b..17168a67cb89 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.6.2", + "version": "1.6.3", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",