From afa27dad3d6754a41d84c8b9b0c9c1a1346f035b Mon Sep 17 00:00:00 2001 From: lucasfernog <20051258+lucasfernog@users.noreply.github.com> Date: Sun, 2 Mar 2025 17:30:05 +0000 Subject: [PATCH] apply version updates --- .changes/disable-javascript.md | 5 ----- .changes/fix-cookies-deadlock.md | 5 ----- .changes/reload.md | 5 ----- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 17 deletions(-) delete mode 100644 .changes/disable-javascript.md delete mode 100644 .changes/fix-cookies-deadlock.md delete mode 100644 .changes/reload.md diff --git a/.changes/disable-javascript.md b/.changes/disable-javascript.md deleted file mode 100644 index de09a5e04..000000000 --- a/.changes/disable-javascript.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Add `WebViewBuilder.with_javascript_disabled` api to disable JavaScript. diff --git a/.changes/fix-cookies-deadlock.md b/.changes/fix-cookies-deadlock.md deleted file mode 100644 index 32dd57429..000000000 --- a/.changes/fix-cookies-deadlock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Fix `Webview::cookies` and `Webview::cookies_for_url` deadlock on macOS. \ No newline at end of file diff --git a/.changes/reload.md b/.changes/reload.md deleted file mode 100644 index 328993c56..000000000 --- a/.changes/reload.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'wry': 'patch' ---- - -feat: add `Webview.reload` diff --git a/CHANGELOG.md b/CHANGELOG.md index a3bb2c2b3..fa6bf2443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.50.3] + +- [`94ecadb`](https://github.com/tauri-apps/wry/commit/94ecadbc73d6357484a4df7358c96e72111ce4be) ([#1496](https://github.com/tauri-apps/wry/pull/1496) by [@Simon-Laux](https://github.com/tauri-apps/wry/../../Simon-Laux)) Add `WebViewBuilder.with_javascript_disabled` api to disable JavaScript. +- [`5120a5c`](https://github.com/tauri-apps/wry/commit/5120a5cc0fd4b9d1df32812d3df121c632821395) ([#1486](https://github.com/tauri-apps/wry/pull/1486) by [@charrondev](https://github.com/tauri-apps/wry/../../charrondev)) Fix `Webview::cookies` and `Webview::cookies_for_url` deadlock on macOS. +- [`8dfeb76`](https://github.com/tauri-apps/wry/commit/8dfeb7650213fc10edbf7b03acc9a95107c7e342) ([#1500](https://github.com/tauri-apps/wry/pull/1500) by [@Simon-Laux](https://github.com/tauri-apps/wry/../../Simon-Laux)) feat: add `Webview.reload` + ## \[0.50.2] - [`cef818f`](https://github.com/tauri-apps/wry/commit/cef818f63f36b9acfc4d31f17b5e9fe7c3058612) ([#1505](https://github.com/tauri-apps/wry/pull/1505) by [@lucasfernog](https://github.com/tauri-apps/wry/../../lucasfernog)) Fix `already mutably borrowed: BorrowError` panic on webview initialization on Android. diff --git a/Cargo.lock b/Cargo.lock index 9f7923acd..3524b8d6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4103,7 +4103,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "wry" -version = "0.50.2" +version = "0.50.3" dependencies = [ "base64", "block2 0.6.0", diff --git a/Cargo.toml b/Cargo.toml index d4ff6c23b..ca18b6425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = {} [package] name = "wry" -version = "0.50.2" +version = "0.50.3" authors = ["Tauri Programme within The Commons Conservancy"] edition = "2021" license = "Apache-2.0 OR MIT"