浏览代码

Apply Version Updates From Current Changes (v1) (#11012)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 10 月之前
父节点
当前提交
bd3c153145

+ 0 - 5
.changes/bundler-store-main-binary-name.md

@@ -1,5 +0,0 @@
----
-"tauri-bundler": "patch:feat"
----
-
-Store main binary name in registry for NSIS installer. This will be used in future app updates to detect main binary name changes.

+ 0 - 6
.changes/fix-restart-macos.md

@@ -1,6 +0,0 @@
----
-"tauri": patch:bug
----
-
-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.

+ 0 - 6
.changes/fix-tauri-build-filedescription.md

@@ -1,6 +0,0 @@
----
-tauri-build: 'patch:bug'
-tauri-bundler: 'patch:bug'
----
-
-The executable and NSIS installer on Windows will now use the `productName` config for the `FileDescription` property instead of `shortDescription`.

+ 0 - 5
.changes/non-zipped-updates.md

@@ -1,5 +0,0 @@
----
-"tauri": "minor:feat"
----
-
-Add support for updating using non-zipped files. Only `.exe`(NSIS) and `.msi` (MSI Installer) on Windows and `.AppImage` on Linux.

+ 0 - 5
.changes/update-nsis-arg.md

@@ -1,5 +0,0 @@
----
-"tauri": "minor:feat"
----
-
-Pass `/UPDATE` flag to NSIS installer on updates

+ 0 - 5
.changes/wix-autolaunch-args.md

@@ -1,5 +0,0 @@
----
-"tauri-bundler": "minor:feat"
----
-
-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.

+ 0 - 6
.changes/wix-maintain-args.md

@@ -1,6 +0,0 @@
----
-"tauri": "minor:enhance"
----
-
-On Windows, maintain current CLI arguments when relaunching the app after updates using `.msi`.
-

+ 2 - 2
Cargo.lock

@@ -4055,7 +4055,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
 
 [[package]]
 name = "tauri"
-version = "1.7.2"
+version = "1.8.0"
 dependencies = [
  "anyhow",
  "base64 0.22.1",
@@ -4132,7 +4132,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-build"
-version = "1.5.4"
+version = "1.5.5"
 dependencies = [
  "anyhow",
  "cargo_toml",

+ 6 - 0
core/tauri-build/CHANGELOG.md

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

+ 1 - 1
core/tauri-build/Cargo.toml

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

+ 16 - 0
core/tauri/CHANGELOG.md

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

+ 1 - 1
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.7.2"
+version = "1.8.0"
 
 [package.metadata.docs.rs]
 no-default-features = true

+ 11 - 0
tooling/bundler/CHANGELOG.md

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

+ 1 - 1
tooling/bundler/Cargo.toml

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

+ 6 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.6.2]
+
+### Dependencies
+
+- Upgraded to `tauri-bundler@1.7.0`
+
 ## \[1.6.1]
 
 ### New Features

+ 2 - 2
tooling/cli/Cargo.lock

@@ -4298,7 +4298,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
 
 [[package]]
 name = "tauri-bundler"
-version = "1.6.1"
+version = "1.7.0"
 dependencies = [
  "anyhow",
  "ar",
@@ -4339,7 +4339,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.6.1"
+version = "1.6.2"
 dependencies = [
  "anyhow",
  "axum",

+ 2 - 2
tooling/cli/Cargo.toml

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

+ 3 - 3
tooling/cli/metadata.json

@@ -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 - 0
tooling/cli/node/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.6.2]
+
+### Dependencies
+
+- Upgraded to `tauri-cli@1.6.2`
+
 ## \[1.6.1]
 
 ### New Features

+ 1 - 1
tooling/cli/node/package.json

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