Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changes/change-pr-1736.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/change-pr-1748.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/early-mutex-release.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/forward-hwnd-handler.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/macos-protocol-body-nocopy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/objc2-0.3.2.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changes/permission-handler.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/update-dom-query.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/windows-with-profile-name.md

This file was deleted.

20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# 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.
- [`871497a`](https://github.com/tauri-apps/wry/commit/871497a726adaa2a29ab4a51b8bff23f23d22182) ([#1748](https://github.com/tauri-apps/wry/pull/1748)) Add back/forward navigation APIs (`go_back`, `go_forward`, `can_go_back`, and `can_go_forward`) to `WebView`.
- [`fe52ff9`](https://github.com/tauri-apps/wry/commit/fe52ff9374fb4d649eda7d7f6fccb8b047fb49ba) ([#1715](https://github.com/tauri-apps/wry/pull/1715)) On Android, release REQUEST_HANDLER mutex sooner by cloning the underlying Send + Sync handler.
- [`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`.
- [`6ef93b3`](https://github.com/tauri-apps/wry/commit/6ef93b3e99161446d8a829d8c985074c6f5d1c9c) ([#1737](https://github.com/tauri-apps/wry/pull/1737)) On macOS, updated `objc2-*` dependencies to 0.3.2
- [`9f9a237`](https://github.com/tauri-apps/wry/commit/9f9a237d781ad972442ea7330ecce885de08a445) ([#1654](https://github.com/tauri-apps/wry/pull/1654)) Add an expanded permission handling API for WebView2, WKWebView, WebKitGTK, and Android.
This includes:

- `PermissionKind` expansion: `DisplayCapture`, `Midi`, `Sensors`, `MediaKeySystemAccess`, `LocalFonts`, `WindowManagement`, `PointerLock`, `AutomaticDownloads`, `FileSystemAccess`, `Autoplay`.
- Support for `PermissionResponse::Prompt` to trigger native system dialogs.
- Android support via JNI bridge (`onPermissionRequest` in `RustWebChromeClient`).
- macOS: Split camera/microphone requests; `CameraAndMicrophone` resolved from individual responses.
- Linux: `DisplayCapture` detection for WebKitGTK < 2.42 (getDisplayMedia fix).
- Windows: Full coverage of all 12 `COREWEBVIEW2_PERMISSION_KIND` values.
- [`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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,6 @@ Wry uses a set of feature flags to toggle several advanced features.
for the crate to work. This feature was added in preparation of other ports like cef and servo.
- `protocol` (default): Enables [`WebViewBuilder::with_custom_protocol`] to define custom URL scheme for handling tasks like
loading assets.
- `drag-drop` (default): Enables [`WebViewBuilder::with_drag_drop_handler`] to control the behavior when there are files
interacting with the window.
- `devtools`: Enables devtools on release builds. Devtools are always enabled in debug builds.
On **macOS**, enabling devtools, requires calling private APIs so you should not enable this flag in release
build if your app needs to publish to App Store.
Expand Down