apply version updates (#11075)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-10-14 13:13:53 -03:00 committed by GitHub
parent 3c7258d651
commit e7153a85a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 43 additions and 32 deletions

View File

@ -1,6 +0,0 @@
---
"tauri-bundler": "patch:bug"
---
Fix NSIS installer failing to determine whether webview installer downloaded correctly or not.

View File

@ -1,6 +0,0 @@
---
'tauri-cli': 'patch:feat'
'@tauri-apps/cli': 'patch:feat'
---
Add Deno support in tauri-cli operations.

View File

@ -1,5 +0,0 @@
---
"tauri": patch:bug
---
Fixes a deadlock on window creation when the `tracing` feature is enabled.

View File

@ -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`.

2
Cargo.lock generated
View File

@ -4055,7 +4055,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
[[package]]
name = "tauri"
version = "1.8.0"
version = "1.8.1"
dependencies = [
"anyhow",
"base64 0.22.1",

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "1.7.0"
version = "1.7.1"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"

View File

@ -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

View File

@ -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",

View File

@ -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" ] }

View File

@ -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"
}

View File

@ -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

View File

@ -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",