diff --git a/.changes/change-pr-1736.md b/.changes/change-pr-1736.md deleted file mode 100644 index 33b527dc0..000000000 --- a/.changes/change-pr-1736.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -Remove Send, Sync bounds from NewWindowOpener. diff --git a/.changes/forward-hwnd-handler.md b/.changes/forward-hwnd-handler.md deleted file mode 100644 index d7a9c0518..000000000 --- a/.changes/forward-hwnd-handler.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -On Windows, Add `WebViewExtWindows::hwnd` getter to access the child HWND containing the webview. diff --git a/.changes/macos-protocol-body-nocopy.md b/.changes/macos-protocol-body-nocopy.md deleted file mode 100644 index 8774ab1c7..000000000 --- a/.changes/macos-protocol-body-nocopy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -On macOS, avoid an extra copy for owned custom protocol response bodies by transferring the body buffer into `NSData`. diff --git a/.changes/update-dom-query.md b/.changes/update-dom-query.md deleted file mode 100644 index 39ceafd58..000000000 --- a/.changes/update-dom-query.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -Updated `dom_query` dependency to 0.28.0 diff --git a/.changes/windows-with-profile-name.md b/.changes/windows-with-profile-name.md deleted file mode 100644 index 57ff43f47..000000000 --- a/.changes/windows-with-profile-name.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -On Windows, add `WebViewBuilderExtWindows::with_profile_name` to opt the webview into a named WebView2 profile. Webviews with different profile names within the same environment have isolated cookies, storage, IndexedDB, and cache while sharing the runtime — matching WebView2's documented multi-profile pattern. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aea0d9ca..26a393ec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[0.56.0] + +- [`145b36f`](https://github.com/tauri-apps/wry/commit/145b36fb5e3551851a9afbdf9c34154e2388f85d) ([#1736](https://github.com/tauri-apps/wry/pull/1736)) Remove Send, Sync bounds from NewWindowOpener. +- [`9d0a9fe`](https://github.com/tauri-apps/wry/commit/9d0a9fe31321797b2fb4dd83e01408df9d7fedcc) ([#1712](https://github.com/tauri-apps/wry/pull/1712)) On Windows, Add `WebViewExtWindows::hwnd` getter to access the child HWND containing the webview. +- [`5bdda32`](https://github.com/tauri-apps/wry/commit/5bdda323937c01e497a9735ce83a3636202a8a6a) ([#1719](https://github.com/tauri-apps/wry/pull/1719)) On macOS, avoid an extra copy for owned custom protocol response bodies by transferring the body buffer into `NSData`. +- [`86ac6e8`](https://github.com/tauri-apps/wry/commit/86ac6e8891be99efa21756d751573bcbaa22554c) ([#1732](https://github.com/tauri-apps/wry/pull/1732)) Updated `dom_query` dependency to 0.28.0 +- [`10fdf73`](https://github.com/tauri-apps/wry/commit/10fdf7308013d40741990c60e960cf82b18d9372) ([#1738](https://github.com/tauri-apps/wry/pull/1738)) On Windows, add `WebViewBuilderExtWindows::with_profile_name` to opt the webview into a named WebView2 profile. Webviews with different profile names within the same environment have isolated cookies, storage, IndexedDB, and cache while sharing the runtime — matching WebView2's documented multi-profile pattern. + ## \[0.55.1] - [`3860359`](https://github.com/tauri-apps/wry/commit/3860359e3dc75260fb9865f7a8eae00a9ec4733d) ([#1721](https://github.com/tauri-apps/wry/pull/1721) by [@lucasfernog](https://github.com/tauri-apps/wry/../../lucasfernog)) Tweak ProGuard rules to keep the getId required activity method. diff --git a/Cargo.lock b/Cargo.lock index ca793ce0a..3b249c528 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4050,7 +4050,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "wry" -version = "0.55.1" +version = "0.56.0" dependencies = [ "base64", "block2 0.6.2", diff --git a/Cargo.toml b/Cargo.toml index 9983b3a0c..737483334 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = {} [package] name = "wry" -version = "0.55.1" +version = "0.56.0" authors = ["Tauri Programme within The Commons Conservancy"] edition = "2021" license = "Apache-2.0 OR MIT"