Skip to content

Commit bb5faa2

Browse files
chore: update tao, wry, windows, webview2-com (#13163)
* chore: update tao, wry, windows, webview2-com * update docs * Use `impl Into<String>` * More docs --------- Co-authored-by: Tony <[email protected]>
1 parent b32153b commit bb5faa2

File tree

13 files changed

+166
-87
lines changed

13 files changed

+166
-87
lines changed

.changes/update-tao.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-runtime-wry": minor:deps
3+
---
4+
5+
Update tao to 0.33.

.changes/update-webview2.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri": minor:deps
3+
"tauri-runtime-wry": minor:deps
4+
---
5+
6+
Update webview2-com to 0.37.

.changes/update-windows.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"tauri": minor:deps
3+
"tauri-runtime": minor:deps
4+
"tauri-runtime-wry": minor:deps
5+
---
6+
7+
Update windows to 0.61.

.changes/update-wry.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-runtime-wry": minor:deps
3+
---
4+
5+
Update wry to 0.51.

Cargo.lock

+66-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tauri-runtime-wry/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ rustc-args = ["--cfg", "docsrs"]
1717
rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[dependencies]
20-
wry = { version = "0.50.5", default-features = false, features = [
20+
wry = { version = "0.51", default-features = false, features = [
2121
"drag-drop",
2222
"protocol",
2323
"os-webview",
2424
"linux-body",
2525
] }
26-
tao = { version = "0.32.8", default-features = false, features = ["rwh_06"] }
26+
tao = { version = "0.33", default-features = false, features = ["rwh_06"] }
2727
tauri-runtime = { version = "2.5.1", path = "../tauri-runtime" }
2828
tauri-utils = { version = "2.3.1", path = "../tauri-utils" }
2929
raw-window-handle = "0.6"
@@ -33,12 +33,12 @@ tracing = { version = "0.1", optional = true }
3333
log = "0.4.21"
3434

3535
[target."cfg(windows)".dependencies]
36-
webview2-com = "0.36"
36+
webview2-com = "0.37"
3737
softbuffer = { version = "0.4", default-features = false }
3838
once_cell = "1.20"
3939

4040
[target."cfg(windows)".dependencies.windows]
41-
version = "0.60"
41+
version = "0.61"
4242
features = ["Win32_Foundation", "Win32_Graphics_Dwm"]
4343

4444
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]

crates/tauri-runtime-wry/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4557,7 +4557,7 @@ fn create_webview<T: UserEvent>(
45574557

45584558
for script in webview_attributes.initialization_scripts {
45594559
webview_builder = webview_builder
4560-
.with_initialization_script_for_main_only(&script.script, script.for_main_frame_only);
4560+
.with_initialization_script_for_main_only(script.script, script.for_main_frame_only);
45614561
}
45624562

45634563
for (scheme, protocol) in uri_scheme_protocols {

crates/tauri-runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dpi = { version = "0.1", features = ["serde"] }
3838
cookie = "0.18"
3939

4040
[target."cfg(windows)".dependencies.windows]
41-
version = "0.60"
41+
version = "0.61"
4242
features = ["Win32_Foundation", "Win32_System_WinRT"]
4343

4444
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]

0 commit comments

Comments
 (0)