tauri-runtime-wry@2.12.0
Sep 26, 2026
New Features
3f62c70d6(#13848) AddWebviewBuilder::limit_navigations_to_app_bound_domains,WebviewWindowBuilder::limit_navigations_to_app_bound_domains, and limitNavigationsToAppBoundDomains to tauri.config.json.21ec647cf(#15223) AddBuilder::activate_ignoring_other_appson macOS to control whether the app activates at launch when another app is already active.29265557c(#15410) AddedWindowBuilder/WebviewWindowBuilder::no_redirection_bitmapmethod to disable the window redirection bitmap on Windows.382dd6ccc(#14865) Expose thewrypermission handler API through Tauri. This includes support for permission types such asDisplayCapture,Midi,Sensors,MediaKeySystemAccess,LocalFonts,WindowManagement,PointerLock,AutomaticDownloads,FileSystemAccess, andAutoplay. AddedPermissionResponse::{Allow, Deny, Default}for runtime permission decisions.6edc2f4d4(#14926) AddedWindow::set_fullscreen_on_monitor,WebviewWindow::set_fullscreen_on_monitorand thesetFullscreenOnMonitorJavaScript API to make a window fullscreen on the monitor containing a given physical position, along with thecore:window:allow-set-fullscreen-on-monitorpermission.
Bug Fixes
0aeadb6b2(#15821) Transfer the exit code from thewindow.app_handle().exit(1)call to therun_return()result instead of always returning 0.d727d6316(#15630) Query monitor information (primary_monitor,monitor_from_point,available_monitors) on the main thread from the app-level runtime handle instead of touching the event loop's window target directly.a370f6533(#15224) Avoid leaking Objective-C objects inWebviewMessage::WithWebviewon Apple targets by replacingRetained::into_rawwith scoped retained bindings andRetained::as_ptrpointer handoff.59e077457(#16075) Fix a crash on iOS when the monitor APIs (Window::current_monitor,primary_monitor,available_monitors,monitor_from_pointand theAppHandleequivalents) are called off the main thread, e.g. from a command: the monitor is now read on the main thread, where iOS requires it.0a28d9b76(#15760) On macOS,App::set_themenow also updates the theme each window reports, soWindow::theme(andgetCurrentWindow().theme()in JavaScript) reflects the app-level theme instead of keeping the previous value until the system appearance changes.e2c54be10WindowsStoreandActiveTraceSpanStorenow implementDebugmanually without borrowing the innerRefCell, so formatting them re-entrantly while the store is already borrowed no longer panics with "already borrowed".08acfb3fa(#15625) Fix webview don't get focus when Alt-Tab back to the window ifunstablefeature is enabled on Windows1c573a075(#15508)create_windowandcreate_webviewshould wait for the window creation to complete before returning even if it's off main thread, it should also return the error if it failed5a882eccf(#15701) On Linux, fix resize cursor for undecorated Window not being set correctly when mouse is over a resize edge.08acfb3fa(#15625) FixWindowEvent::Focusedevents emitted when dragging the window on Windowsf4feb2ba7(#15950) On Windows, fixedWindow::is_focusedalways returnsfalsein multi-webview mode
What's Changed
2e6e33c85(#16029) Moved to edition 2024ce3f13b91(#15887) Lock unstable tauri crates to minor versions.7cc68e74f(#15307)WindowEvent::ResumedandWindowEvent::Suspendedare now only fired for the matching activity window instead of every window.1cffb01da(#13221) Set MSRV to 1.90.7fd603542(#15413)EventLoopIterationContextandUserMessageContextnow takes references to avoid clones
Dependencies
- Upgraded to
tauri-utils@2.10.0 - Upgraded to
tauri-runtime@2.12.0 872428fe9(#15790) On macOS, updatedobjc2-*dependencies to 0.3.251433d740(#15996) Updatedwindowsto0.62andwebview2-comto0.39, this drops Windows 7 support, see https://github.com/microsoft/windows-rs/issues/3808.
Breaking Changes
24cb6de2d(#15544) Removed unused dpi wrapper types likePhysicalPositionWrapper579c7e2d2(#14805)WindowsStoreandDispatcherMainThreadContextare no longerSendandSync, and unsafe impl has been moved toContextdirectly.d727d6316(#15630) ChangedRuntimeHandle::primary_monitor,RuntimeHandle::monitor_from_point,RuntimeHandle::available_monitorsto returnResults08acfb3fa(#15625)CreateWebviewOptions::focused_webviewnow takesArc<Mutex<FocusState>>instead ofArc<Mutex<Option<String>>>
© 2026 Tauri Contributors. CC-BY / MIT