Skip to content

chore(deps): update rust crate wry to 0.54#234

Open
renovate[bot] wants to merge 1 commit intodevfrom
renovate/wry-0.x
Open

chore(deps): update rust crate wry to 0.54#234
renovate[bot] wants to merge 1 commit intodevfrom
renovate/wry-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 12, 2024

This PR contains the following updates:

Package Type Update Change
wry dev-dependencies minor 0.450.54

Release Notes

tauri-apps/wry (wry)

v0.54.1

Compare Source

v0.54.0

Compare Source

  • 5fdd1a9 (#​1625) Use OnBackPressedCallback instead of the deprecated onKeyDown for back navigation on Android.

  • 51d06d0 (#​1646) Remove redundant clones in WebView and download handling. No user facing changes.

  • 7b77322 (#​1647) Fix clippy io_other_error. No user facing changes.

  • ff8876d (#​1652) Improve wkwebview performance. No user-facing changes.

  • 27ba73f Add handler for web content process termination.

  • 4fcff14 (#​1547) Set WebsiteDataManagerBuilder::base_cache_directory with the same path as base_data_directory.

    This change allows the cache directory to be changed instead of using the default one from WebKitGTK.

  • 64d9296 (#​1640) Update webkit2gtk-rs crates to 2.0.2.

v0.53.5

Compare Source

  • #​1622 Fixed an issue that caused docs.rs builds to fail. No user facing changes.

v0.53.4

Compare Source

  • 093856a (#​1622 by @​lucasfernog) Add flag to opt out of automatic back navigation handling on Android via WryActivity#handleBackNavigation.
  • 0f51d67 (#​1605 by @​dgerhardt) On Linux, removed a workaround which forced inital requests for multiple webviews to be handled sequentially.
    The workaround was intended to fix a concurrency bug with loading multiple URIs at the same time on WebKitGTK.
    But it prevented parallelization and could cause a deadlock in certain situations.
    It is no longer needed with newer WebKitGTK versions.

v0.53.3

Compare Source

v0.53.2

Compare Source

  • 1743e7f (#​1608 by @​lucasfernog) Fix new_window_req_handler craashing when creating new window for webview that has a custom data_store_identifier.

v0.53.1

Compare Source

v0.53.0

Compare Source

v0.52.1

Compare Source

v0.52.0

Compare Source

breaking
  • 1567635 (#​1558 by @​amrbashir) Rename WebViewBuilder methods for consistency and clarity:

    • Renamed WebViewBuilder::with_web_context to WebViewBuilder::new_with_web_context
    • Renamed WebViewBuilder::with_attributes to WebViewBuilder::new_with_attributes
  • f868658 (#​1556 by @​Legend-Master) WebContext::is_custom_protocol_registered now takes &str instead of String

v0.51.2

Compare Source

  • f7781a7 (#​1544 by @​lucasfernog) Allow modifying or removing the input accessory view on iOS via WebViewBuilderExtIos::with_input_accessory_view_builder.

v0.51.1

Compare Source

v0.51.0

Compare Source

feat
  • ecbced2 (#​1534 by @​Simon-Laux) macOS/iOS: add option to disable link previews when building a webview (the webkit API has it enabled by default)

    • WebViewBuilderExtDarwin.with_allow_link_preview(bool)

v0.50.5

Compare Source

enhance
bug

v0.50.4

Compare Source

  • 349dfe3 (#​1512 by @​Simon-Laux) Added WebViewExtDarwin to expose WebView functions available to both macOS and iOS.
  • 349dfe3 (#​1512 by @​Simon-Laux) fix: crash when using WebViewBuilderExtDarwin.with_data_store_identifier
  • 349dfe3 (#​1512 by @​Simon-Laux) feat: macOS: add WebViewExtDarwin::fetch_data_store_identifiers and WebViewExtDarwin::remove_data_store.
  • d0b16a7 (#​1491 by @​neilmcguire) On Windows, Add support for iframe requests in custom protocols. Requires WebView2 1.0.2365.46 or higher.
  • 148d7cd (#​1513 by @​FabianLars) Wry by default now passes --enable-features=RemoveRedirectionBitmap to WebView2 to hide the initial white flash of newly created webviews. Only takes effect on WebView2 Runtime versions 134 and above.

v0.50.3

Compare Source

v0.50.2

Compare Source

v0.50.1

Compare Source

v0.50.0

Compare Source

v0.49.0

Compare Source

enhance

v0.48.1

Compare Source

  • cbbcccc (#​1446 by @​FabianLars) Add functionality to set the traffic light inset on macOS. This is required to prevent flickers if the WebView is injected via build() instead of build_as_child().
enhance

v0.48.0

Compare Source

v0.47.2

Compare Source

v0.47.1

Compare Source

v0.47.0

Compare Source

  • 7221256 (#​1365 by @​Norbiros) Add WebViewBuilder::with_initialization_script_for_main_only to enable injecting JavaScript code into main frame only or all subframes.
  • c1b26b9 (#​1394 by @​amrbashir) Add WebView::cookies and WebView::cookies_for_url APIs.
  • c193e2a (#​1408 by @​amrbashir) Fix DragDropEvent::Drop event never fired on Wayland (and sometimes on X11).
  • 1d63fa3 (#​1403 by @​SpikeHD) Add WebViewBuilder::with_extension_path API to Windows and Linux.
  • 0c192f4 (#​1414 by @​lucasfernog) Fix Android static handlers not being replaced when the application UI is relaunched while still running in the foreground.
  • 9a2a2d4 (#​1412 by @​amrbashir) Fix icons of dragged items getting stuck when using WebViewBuilder::with_drag_drop_handler on some distros like Gnome.
  • fa9875b (#​1409 by @​amrbashir) On Windows, disable Webview2's file drop when using WebViewBuilder::with_drag_drop_handler which fix drag events for files from "Recent files" view.
  • 6007608 (#​1400 by @​amrbashir) On Windows, fix webview slightly larger than the window inner size, which resulted in a hidden 1px in the right and bottom borders of the webview

v0.46.3

Compare Source

v0.46.2

Compare Source

v0.46.1

Compare Source

bug

v0.46.0

Compare Source

  • 8cc2a7f (#​1384 by @​amrbashir) This release contains quite the breaking changes, because even though wry@​0.44, ignored duplicate custom protocols, On Linux when using a shared web context, the custom protocol handler can only be registered once so we are bringing the duplicate custom protocols on Linux again, Windows and macOS are not affected. If using a shared web context, make sure to register a protocol only once on Linux (other platforms should be registed multiple times), use WebContext::is_custom_protocol_registered with #[cfg(target_os = "linux")].

    We also noticed that it is hard to know which webview made a request to the custom protocol so we added a method to attach an ID to a webview, and changed relevant custom protocol APIs to take a new argument that passes the specified id back to protocol handler.

    We also made a few changes to the builder, specifically WebViewBuilder::new and WebViewBuilder::build methods to make them more ergonomic to work with.

    • Added Error::DuplicateCustomProtocol enum variant.
    • Added Error::ContextDuplicateCustomProtocol enum variant.
    • On Linux, return an error in WebViewBuilder::build if registering a custom protocol multiple times.
    • Added WebContext::is_custom_protocol_registered to check if a protocol has been regsterd for this web context.
    • Added WebViewId alias type.
    • Breaking Changed WebViewAttributes to have a lifetime parameter.
    • Added WebViewAttributes.id field to specify an id for the webview.
    • Added WebViewBuilder::with_id method to specify an id for the webview.
    • Added WebViewAttributes.context field to specify a shared context for the webview.
    • Breaking Changed WebViewAttributes.custom_protocols field,WebViewBuilder::with_custom_protocol method and WebViewBuilder::with_asynchronous_custom_protocol method handler function to take WebViewId as the first argument to check which webview made the request to the protocol.
    • Breaking Changed WebViewBuilder::with_web_context to be a static method to create a builder with a webcontext, instead of it being a setter method. It is now an alternative to WebviewBuilder::new
    • Added WebViewBuilder::with_attributes to create a webview builder with provided attributes.
    • Breaking Changed WebViewBuilder::new to take no arguments.
    • Breaking Changed WebViewBuilder::build method to take a reference to a window to create the webview in it.
    • Breaking Removed WebViewBuilder::new_as_child.
    • Added WebViewBuilder::build_as_child method, which takes a reference to a window to create the webview in it.
    • Breaking Removed WebViewBuilderExtUnix::new_gtk.
    • Added WebViewBuilderExtUnix::build_gtk.
  • 0abc221 (#​1316 by @​pewsheen) Migrate to obj2.

  • b01eac3 (#​1386 by @​lucasfernog) Use unescaped Android package identifier for the proguard rules.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Contributor

github-actions bot commented Oct 12, 2024

Package Changes Through 62f9acc

There are 1 changes which include muda with patch

Planned Package Versions

The following package releases are the planned based on the context of changes in this pull request.

package current next
muda 0.17.1 0.17.2

Add another change file through the GitHub UI by following this link.


Read about change files or the docs at github.com/jbolda/covector

@renovate renovate bot force-pushed the renovate/wry-0.x branch from 62584a5 to e15a09a Compare November 9, 2024 03:36
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.46 chore(deps): update rust crate wry to 0.47 Nov 9, 2024
@renovate renovate bot force-pushed the renovate/wry-0.x branch from e15a09a to b1e1c4f Compare January 1, 2025 22:04
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.47 chore(deps): update rust crate wry to 0.48 Jan 1, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch from b1e1c4f to b3e5809 Compare January 29, 2025 11:44
@renovate renovate bot force-pushed the renovate/wry-0.x branch 2 times, most recently from 9261bb5 to b226f20 Compare February 21, 2025 18:46
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.48 chore(deps): update rust crate wry to 0.49 Feb 21, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch from b226f20 to a3916fa Compare February 25, 2025 19:35
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.49 chore(deps): update rust crate wry to 0.50 Feb 25, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch from a3916fa to 96b3dca Compare April 7, 2025 16:38
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.50 chore(deps): update rust crate wry to 0.51 Apr 7, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch from 96b3dca to 81992fe Compare June 14, 2025 15:28
@renovate renovate bot force-pushed the renovate/wry-0.x branch from 81992fe to 590765a Compare June 24, 2025 16:37
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.51 chore(deps): update rust crate wry to 0.52 Jun 24, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch 2 times, most recently from 343de89 to c0734ba Compare August 16, 2025 18:25
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.52 chore(deps): update rust crate wry to 0.53 Aug 16, 2025
@renovate renovate bot force-pushed the renovate/wry-0.x branch 2 times, most recently from c0f0756 to 1353b30 Compare August 27, 2025 20:32
@renovate renovate bot force-pushed the renovate/wry-0.x branch from 1353b30 to b68cedd Compare September 25, 2025 20:26
@renovate renovate bot force-pushed the renovate/wry-0.x branch from b68cedd to e88c2b3 Compare October 22, 2025 17:51
@renovate renovate bot force-pushed the renovate/wry-0.x branch from e88c2b3 to b537459 Compare December 10, 2025 12:38
@renovate renovate bot force-pushed the renovate/wry-0.x branch from b537459 to f681212 Compare January 15, 2026 16:56
@renovate renovate bot changed the title chore(deps): update rust crate wry to 0.53 chore(deps): update rust crate wry to 0.54 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/wry-0.x branch from f681212 to 3e7e9d1 Compare January 18, 2026 16:27
@renovate renovate bot force-pushed the renovate/wry-0.x branch from 3e7e9d1 to 62f9acc Compare February 2, 2026 16:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants