瀏覽代碼

apply version updates (#9857)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 1 年之前
父節點
當前提交
bf708a21a8

+ 0 - 6
.changes/ipc-only-main-frame.md

@@ -1,6 +0,0 @@
----
-"tauri": patch:sec
-"tauri-runtime-wry": patch:sec
----
-
-Only process IPC commands from the main frame.

+ 0 - 5
.changes/shellexecute-updater.md

@@ -1,5 +0,0 @@
----
-"tauri": patch:bug
----
-
-On Windows, fix flashing PowerShell for updates for NSIS installer, and address possible "permission denied" problems.

+ 2 - 2
Cargo.lock

@@ -4021,7 +4021,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
 
 [[package]]
 name = "tauri"
-version = "1.6.6"
+version = "1.6.7"
 dependencies = [
  "anyhow",
  "base64 0.21.7",
@@ -4181,7 +4181,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-runtime-wry"
-version = "0.14.7"
+version = "0.14.8"
 dependencies = [
  "arboard",
  "cocoa",

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[0.14.8]
+
+### Security fixes
+
+- [`f6d81dfe0`](https://www.github.com/tauri-apps/tauri/commit/f6d81dfe0871e0ccd012e5190d41e3767e733608) Only process IPC commands from the main frame.
+
 ## \[0.14.7]
 
 ### Bug Fixes

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "0.14.7"
+version = "0.14.8"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"

+ 14 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,19 @@
 # Changelog
 
+## \[1.6.7]
+
+### Bug Fixes
+
+- [`50aabad1f`](https://www.github.com/tauri-apps/tauri/commit/50aabad1f602066417d815b0f2d2c5948848bb00)([#9818](https://www.github.com/tauri-apps/tauri/pull/9818)) On Windows, fix flashing PowerShell for updates for NSIS installer, and address possible "permission denied" problems.
+
+### Security fixes
+
+- [`f6d81dfe0`](https://www.github.com/tauri-apps/tauri/commit/f6d81dfe0871e0ccd012e5190d41e3767e733608) Only process IPC commands from the main frame.
+
+### Dependencies
+
+- Upgraded to `tauri-runtime-wry@0.14.8`
+
 ## \[1.6.6]
 
 ### Bug Fixes

+ 7 - 3
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.6.6"
+version = "1.6.7"
 
 [package.metadata.docs.rs]
 no-default-features = true
@@ -61,7 +61,7 @@ once_cell = "1"
 tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" }
 tauri-macros = { version = "1.4.4", path = "../tauri-macros" }
 tauri-utils = { version = "1.5.4", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "0.14.7", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime-wry = { version = "0.14.8", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 semver = { version = "1.0", features = [ "serde" ] }
 serde_repr = "0.1"
@@ -120,7 +120,11 @@ win7-notifications = { version = "0.4", optional = true }
 
   [target."cfg(windows)".dependencies.windows]
   version = "0.39.0"
-  features = [ "Win32_Foundation", "Win32_UI_WindowsAndMessaging", "Win32_UI_Shell" ]
+  features = [
+  "Win32_Foundation",
+  "Win32_UI_WindowsAndMessaging",
+  "Win32_UI_Shell"
+]
 
 [build-dependencies]
 heck = "0.5"

+ 1 - 1
tooling/cli/metadata.json

@@ -3,6 +3,6 @@
     "version": "1.5.14",
     "node": ">= 10.0.0"
   },
-  "tauri": "1.6.6",
+  "tauri": "1.6.7",
   "tauri-build": "1.5.2"
 }