Bladeren bron

apply version updates (#11175)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 10 maanden geleden
bovenliggende
commit
11b5e9c525

+ 7 - 0
.changes/pre.json

@@ -54,9 +54,11 @@
     ".changes/core-unmanage.md",
     ".changes/crash-closing-window-multiple-times.md",
     ".changes/custom-invoke-system-invoke-key.md",
+    ".changes/custom-protocol-label.md",
     ".changes/dev-url-localhost-mobile.md",
     ".changes/do-not-exit-on-log-fail.md",
     ".changes/embed-plist-no-unit-val.md",
+    ".changes/enhance-android-port-forwarding.md",
     ".changes/enhance-ios-lib-validation.md",
     ".changes/enhance-permission-error-message.md",
     ".changes/ensure-gradlew-unix.md",
@@ -77,6 +79,7 @@
     ".changes/fix-dev-server-proxy-url.md",
     ".changes/fix-export-default-permissions.md",
     ".changes/fix-identifier-config-required.md",
+    ".changes/fix-ios-app-export.md",
     ".changes/fix-ios-automatic-signing-ci.md",
     ".changes/fix-ios-build-older-swift.md",
     ".changes/fix-ios-build-simulator.md",
@@ -97,6 +100,7 @@
     ".changes/fix-v1-frontend-migration.md",
     ".changes/fix-xcodebuild-arch.md",
     ".changes/get-window-async.md",
+    ".changes/ide-commands-verbosity.md",
     ".changes/improve-cli-init.md",
     ".changes/infer-signing-identity.md",
     ".changes/inject-mobile-resources.md",
@@ -140,10 +144,12 @@
     ".changes/resources-map-becoming-dirs.md",
     ".changes/resources-path-deb-rpm.md",
     ".changes/restart-handle-binary-name-change.md",
+    ".changes/revert-10969-consistent-update-code.md",
     ".changes/rust-permission-state.md",
     ".changes/safe-file-path-serialize.md",
     ".changes/safe-path-buf-from-str.md",
     ".changes/scope-object-match.md",
+    ".changes/self-signed-cert.md",
     ".changes/serialize-array-buffer.md",
     ".changes/set-theme-api.md",
     ".changes/set-theme.md",
@@ -157,6 +163,7 @@
     ".changes/tauri-cli-generate-upgrade-code.md",
     ".changes/tauri-driver-1.x.md",
     ".changes/tray-double-click.md",
+    ".changes/trunk-ios-dev.md",
     ".changes/universal-bin-build-fails.md",
     ".changes/update-android-plugin-template.md",
     ".changes/update-docs-icon-path.md",

+ 4 - 4
Cargo.lock

@@ -8684,7 +8684,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
 
 [[package]]
 name = "tauri"
-version = "2.0.0-rc.16"
+version = "2.0.0-rc.17"
 dependencies = [
  "anyhow",
  "bytes",
@@ -8766,7 +8766,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.1-rc.14"
+version = "2.0.1-rc.15"
 dependencies = [
  "anyhow",
  "ar",
@@ -8810,7 +8810,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-rc.17"
+version = "2.0.0-rc.18"
 dependencies = [
  "anyhow",
  "ar",
@@ -8964,7 +8964,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-macos-sign"
-version = "0.1.1-rc.0"
+version = "0.1.1-rc.1"
 dependencies = [
  "anyhow",
  "apple-codesign",

+ 10 - 0
crates/tauri-bundler/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.1-rc.15]
+
+### Bug Fixes
+
+- [`e10fdb786`](https://www.github.com/tauri-apps/tauri/commit/e10fdb786cc3e23b957238835881c41fa6acf8d4) ([#11182](https://www.github.com/tauri-apps/tauri/pull/11182) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Revert recent change that generated MSI installers with the same product code which prevented updates to happen, it is now ranomized like it previously was.
+
+### Dependencies
+
+- Upgraded to `tauri-macos-sign@0.1.1-rc.1`
+
 ## \[2.0.1-rc.14]
 
 ### New Features

+ 2 - 2
crates/tauri-bundler/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-bundler"
-version = "2.0.1-rc.14"
+version = "2.0.1-rc.15"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy",
@@ -59,7 +59,7 @@ features = ["Win32_System_SystemInformation", "Win32_System_Diagnostics_Debug"]
 icns = { package = "tauri-icns", version = "0.1" }
 time = { version = "0.3", features = ["formatting"] }
 plist = "1"
-tauri-macos-sign = { version = "0.1.1-rc.0", path = "../tauri-macos-sign" }
+tauri-macos-sign = { version = "0.1.1-rc.1", path = "../tauri-macos-sign" }
 
 [target."cfg(target_os = \"linux\")".dependencies]
 heck = "0.5"

+ 17 - 0
crates/tauri-cli/CHANGELOG.md

@@ -1,5 +1,22 @@
 # Changelog
 
+## \[2.0.0-rc.18]
+
+### Enhancements
+
+- [`a08e6ffa6`](https://www.github.com/tauri-apps/tauri/commit/a08e6ffa6fe499553be3c4c620726d6031cd6dd3) ([#11185](https://www.github.com/tauri-apps/tauri/pull/11185) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Enhance port forwarding on `android dev` to be more resilient and tolerate delays when booting up devices.
+- [`6cfe7edf6`](https://www.github.com/tauri-apps/tauri/commit/6cfe7edf63636fdf66c429efdeb7bc9a0f404e9f) ([#11186](https://www.github.com/tauri-apps/tauri/pull/11186) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Retain logger verbosity on the `android-studio-script` and `xcode-script` commands.
+- [`60a5aea53`](https://www.github.com/tauri-apps/tauri/commit/60a5aea53db02ae6af325812ab97555f2c013d70) ([#11181](https://www.github.com/tauri-apps/tauri/pull/11181) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Set the `TRUNK_SERVE_ADDRESS` environment variable when running on iOS physical devices to support Trunk.
+
+### Bug Fixes
+
+- [`f5d61822b`](https://www.github.com/tauri-apps/tauri/commit/f5d61822bf5988827776dd58bed75c19364e86bd) ([#11184](https://www.github.com/tauri-apps/tauri/pull/11184) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fix iOS application not including the provided capabilities (entitlements).
+
+### Dependencies
+
+- Upgraded to `tauri-bundler@2.0.1-rc.15`
+- Upgraded to `tauri-macos-sign@0.1.1-rc.1`
+
 ## \[2.0.0-rc.17]
 
 ### New Features

+ 3 - 3
crates/tauri-cli/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-cli"
-version = "2.0.0-rc.17"
+version = "2.0.0-rc.18"
 authors = ["Tauri Programme within The Commons Conservancy"]
 edition = "2021"
 rust-version = "1.71"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
 clap_complete = "4"
 clap = { version = "4.5", features = ["derive", "env"] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.1-rc.14", default-features = false, path = "../tauri-bundler" }
+tauri-bundler = { version = "2.0.1-rc.15", default-features = false, path = "../tauri-bundler" }
 colored = "2.1"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = { version = "1.0", features = ["preserve_order"] }
@@ -131,7 +131,7 @@ libc = "0.2"
 
 [target."cfg(target_os = \"macos\")".dependencies]
 plist = "1"
-tauri-macos-sign = { version = "0.1.1-rc.0", path = "../tauri-macos-sign" }
+tauri-macos-sign = { version = "0.1.1-rc.1", path = "../tauri-macos-sign" }
 object = { version = "0.36", default-features = false, features = [
   "macho",
   "read_core",

File diff suppressed because it is too large
+ 1 - 1
crates/tauri-cli/config.schema.json


+ 2 - 2
crates/tauri-cli/metadata-v2.json

@@ -1,9 +1,9 @@
 {
   "cli.js": {
-    "version": "2.0.0-rc.17",
+    "version": "2.0.0-rc.18",
     "node": ">= 10.0.0"
   },
-  "tauri": "2.0.0-rc.16",
+  "tauri": "2.0.0-rc.17",
   "tauri-build": "2.0.0-rc.13",
   "tauri-plugin": "2.0.0-rc.13"
 }

+ 6 - 0
crates/tauri-macos-sign/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[0.1.1-rc.1]
+
+### Enhancements
+
+- [`f5d61822b`](https://www.github.com/tauri-apps/tauri/commit/f5d61822bf5988827776dd58bed75c19364e86bd) ([#11184](https://www.github.com/tauri-apps/tauri/pull/11184) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added `Keychain::with_certificate_file` and `certificate::generate_self_signed`.
+
 ## \[0.1.1-rc.0]
 
 ### Bug Fixes

+ 1 - 1
crates/tauri-macos-sign/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macos-sign"
-version = "0.1.1-rc.0"
+version = "0.1.1-rc.1"
 authors = ["Tauri Programme within The Commons Conservancy"]
 license = "Apache-2.0 OR MIT"
 keywords = ["codesign", "signing", "macos", "ios", "tauri"]

File diff suppressed because it is too large
+ 1 - 1
crates/tauri-schema-generator/schemas/config.schema.json


+ 11 - 0
crates/tauri/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[2.0.0-rc.17]
+
+### Breaking Changes
+
+- [`354be36d4`](https://www.github.com/tauri-apps/tauri/commit/354be36d4efed6c0c53639af44607f7b050adfd2) ([#11163](https://www.github.com/tauri-apps/tauri/pull/11163) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Changed uri scheme protocol handler to take `UriSchemeContext` as first argument instead of `AppHandle`. `UriSchemeContext` can be used to access an app handle or the webview label that made the request. The following methods are affected:
+
+  - `tauri::Builder::register_uri_scheme_protocol`
+  - `tauri::Builder::register_asynchronous_uri_scheme_protocol`
+  - `tauri::plugin::Builder::register_uri_scheme_protocol`
+  - `tauri::plugin::Builder::register_asynchronous_uri_scheme_protocol`
+
 ## \[2.0.0-rc.16]
 
 ### New Features

+ 1 - 1
crates/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "2.0.0-rc.16"
+version = "2.0.0-rc.17"
 description = "Make tiny, secure apps for all desktop platforms with Tauri"
 exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"]
 readme = "README.md"

+ 16 - 0
packages/cli/CHANGELOG.md

@@ -1,5 +1,21 @@
 # Changelog
 
+## \[2.0.0-rc.18]
+
+### Enhancements
+
+- [`a08e6ffa6`](https://www.github.com/tauri-apps/tauri/commit/a08e6ffa6fe499553be3c4c620726d6031cd6dd3) ([#11185](https://www.github.com/tauri-apps/tauri/pull/11185) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Enhance port forwarding on `android dev` to be more resilient and tolerate delays when booting up devices.
+- [`6cfe7edf6`](https://www.github.com/tauri-apps/tauri/commit/6cfe7edf63636fdf66c429efdeb7bc9a0f404e9f) ([#11186](https://www.github.com/tauri-apps/tauri/pull/11186) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Retain logger verbosity on the `android-studio-script` and `xcode-script` commands.
+- [`60a5aea53`](https://www.github.com/tauri-apps/tauri/commit/60a5aea53db02ae6af325812ab97555f2c013d70) ([#11181](https://www.github.com/tauri-apps/tauri/pull/11181) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Set the `TRUNK_SERVE_ADDRESS` environment variable when running on iOS physical devices to support Trunk.
+
+### Bug Fixes
+
+- [`f5d61822b`](https://www.github.com/tauri-apps/tauri/commit/f5d61822bf5988827776dd58bed75c19364e86bd) ([#11184](https://www.github.com/tauri-apps/tauri/pull/11184) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fix iOS application not including the provided capabilities (entitlements).
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-rc.18`
+
 ## \[2.0.0-rc.17]
 
 ### New Features

+ 1 - 1
packages/cli/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "2.0.0-rc.17",
+  "version": "2.0.0-rc.18",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",

Some files were not shown because too many files changed in this diff