Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (v1) (#11012)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog committed Sep 15, 2024
1 parent 328b11f commit bd3c153
Show file tree
Hide file tree
Showing 20 changed files with 58 additions and 51 deletions.
5 changes: 0 additions & 5 deletions .changes/bundler-store-main-binary-name.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-restart-macos.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-tauri-build-filedescription.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/non-zipped-updates.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/update-nsis-arg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/wix-autolaunch-args.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/wix-maintain-args.md

This file was deleted.

4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.5.5]

### Bug Fixes

- [`2e87e85f8`](https://www.github.com/tauri-apps/tauri/commit/2e87e85f8550eccf2a3b23a36b135f3ad682509e) ([#10976](https://www.github.com/tauri-apps/tauri/pull/10976) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The executable and NSIS installer on Windows will now use the `productName` config for the `FileDescription` property instead of `shortDescription`.

## \[1.5.4]

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.5.4"
version = "1.5.5"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand Down
16 changes: 16 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## \[1.8.0]

### New Features

- [`50fbf7bf1`](https://www.github.com/tauri-apps/tauri/commit/50fbf7bf1d8ee7bd97c1c896524be9cf362c73aa) ([#10939](https://www.github.com/tauri-apps/tauri/pull/10939) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add support for updating using non-zipped files. Only `.exe`(NSIS) and `.msi` (MSI Installer) on Windows and `.AppImage` on Linux.
- [`50fbf7bf1`](https://www.github.com/tauri-apps/tauri/commit/50fbf7bf1d8ee7bd97c1c896524be9cf362c73aa) ([#10939](https://www.github.com/tauri-apps/tauri/pull/10939) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Pass `/UPDATE` flag to NSIS installer on updates

### Enhancements

- [`14443a131`](https://www.github.com/tauri-apps/tauri/commit/14443a13190fe006aedc96176e970f9ec8644c13) ([#10966](https://www.github.com/tauri-apps/tauri/pull/10966) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) On Windows, maintain current CLI arguments when relaunching the app after updates using `.msi`.

### Bug Fixes

- [`26d243f43`](https://www.github.com/tauri-apps/tauri/commit/26d243f43a8528194689834dce0101bcba78196a) ([#10991](https://www.github.com/tauri-apps/tauri/pull/10991) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes the restart() function not being compatible with the v2 binary name change.
Additionally, do not panic if we somehow failed to restart, and only exit instead.

## \[1.7.2]

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.7.2"
version = "1.8.0"

[package.metadata.docs.rs]
no-default-features = true
Expand Down
11 changes: 11 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[1.7.0]

### New Features

- [`298f8ca58`](https://www.github.com/tauri-apps/tauri/commit/298f8ca584a5d6c900a11d01c91a0b4a4a3e0014) ([#10952](https://www.github.com/tauri-apps/tauri/pull/10952) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Store main binary name in registry for NSIS installer. This will be used in future app updates to detect main binary name changes.
- [`14443a131`](https://www.github.com/tauri-apps/tauri/commit/14443a13190fe006aedc96176e970f9ec8644c13) ([#10966](https://www.github.com/tauri-apps/tauri/pull/10966) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `AUTOLAUNCHAPP` and `LAUNCHAPPARGS` properties to MSI installer, which can be used by updater to instruct launching the app after update and maintain the passed CLI arguments.

### Bug Fixes

- [`2e87e85f8`](https://www.github.com/tauri-apps/tauri/commit/2e87e85f8550eccf2a3b23a36b135f3ad682509e) ([#10976](https://www.github.com/tauri-apps/tauri/pull/10976) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The executable and NSIS installer on Windows will now use the `productName` config for the `FileDescription` property instead of `shortDescription`.

## \[1.6.1]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "1.6.1"
version = "1.7.0"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy"
Expand Down
6 changes: 6 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.6.2]

### Dependencies

- Upgraded to `[email protected]`

## \[1.6.1]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [ "node" ]

[package]
name = "tauri-cli"
version = "1.6.1"
version = "1.6.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.71"
Expand Down Expand Up @@ -42,7 +42,7 @@ path = "src/main.rs"
clap_complete = "4"
clap = { version = "4.4", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.6.1", path = "../bundler", default-features = false }
tauri-bundler = { version = "1.7.0", path = "../bundler", default-features = false }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }
Expand Down
6 changes: 3 additions & 3 deletions tooling/cli/metadata.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.6.1",
"version": "1.6.2",
"node": ">= 10.0.0"
},
"tauri": "1.7.2",
"tauri-build": "1.5.4"
"tauri": "1.8.0",
"tauri-build": "1.5.5"
}
6 changes: 6 additions & 0 deletions tooling/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.6.2]

### Dependencies

- Upgraded to `[email protected]`

## \[1.6.1]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.6.1",
"version": "1.6.2",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit bd3c153

Please sign in to comment.