浏览代码

Apply Version Updates From Current Changes (#7811)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 1 年之前
父节点
当前提交
3c66a53a9e

+ 2 - 0
.changes/pre.json

@@ -51,6 +51,7 @@
     ".changes/core-navigate-method.md",
     ".changes/core-remove-file-dir-semver-apis.md",
     ".changes/core-wry-0-28.md",
+    ".changes/custom-protocol-http-android.md",
     ".changes/custom-protocol-response-refactor.md",
     ".changes/dark-light-mica-effect.md",
     ".changes/default-tls-features.md",
@@ -90,6 +91,7 @@
     ".changes/fix-tauri-binary-windows.md",
     ".changes/fix-tray-icon-validation.md",
     ".changes/fix-windows-custom-protocol-url.md",
+    ".changes/fix-windows-custom-protocol.md",
     ".changes/fix-xcodescript-lib-path.md",
     ".changes/force-colored-logs.md",
     ".changes/generate-tauri-activity.md",

+ 6 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-alpha.2]
+
+### Bug Fixes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) Fixes custom protocol not working on Windows.
+
 ## \[1.0.0-alpha.1]
 
 ### Enhancements

+ 1 - 1
core/tauri-runtime-wry/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "1.0.0-alpha.1"
+version = "1.0.0-alpha.2"
 description = "Wry bindings to the Tauri runtime"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"

+ 14 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,19 @@
 # Changelog
 
+## \[2.0.0-alpha.14]
+
+### Bug Fixes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) Fixes custom protocol not working on Windows.
+
+### Dependencies
+
+- Upgraded to `tauri-runtime-wry@1.0.0-alpha.2`
+
+### Breaking Changes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
+
 ## \[2.0.0-alpha.13]
 
 ### Breaking Changes

+ 2 - 2
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "2.0.0-alpha.13"
+version = "2.0.0-alpha.14"
 description = "Make tiny, secure apps for all desktop platforms with Tauri"
 exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -50,7 +50,7 @@ once_cell = "1"
 tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
 tauri-macros = { version = "2.0.0-alpha.7", path = "../tauri-macros" }
 tauri-utils = { version = "2.0.0-alpha.7", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "1.0.0-alpha.1", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime-wry = { version = "1.0.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 serde_repr = "0.1"
 state = "0.6"

+ 6 - 0
tooling/api/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+### Breaking Changes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
+
 ## \[2.0.0-alpha.7]
 
 ### Breaking Changes

+ 1 - 1
tooling/api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/api",
-  "version": "2.0.0-alpha.7",
+  "version": "2.0.0-alpha.8",
   "description": "Tauri API definitions",
   "type": "module",
   "funding": {

+ 6 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-alpha.14]
+
+### Breaking Changes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
+
 ## \[2.0.0-alpha.13]
 
 ### Breaking Changes

+ 1 - 1
tooling/cli/Cargo.lock

@@ -3945,7 +3945,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-alpha.13"
+version = "2.0.0-alpha.14"
 dependencies = [
  "anyhow",
  "axum",

+ 1 - 1
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-alpha.13"
+version = "2.0.0-alpha.14"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.65"

+ 2 - 2
tooling/cli/metadata-v2.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "2.0.0-alpha.13",
+    "version": "2.0.0-alpha.14",
     "node": ">= 10.0.0"
   },
-  "tauri": "2.0.0-alpha.13",
+  "tauri": "2.0.0-alpha.14",
   "tauri-build": "2.0.0-alpha.8"
 }

+ 10 - 0
tooling/cli/node/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-alpha.14]
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-alpha.14`
+
+### Breaking Changes
+
+- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
+
 ## \[2.0.0-alpha.13]
 
 ### Dependencies

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

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