Apply Version Updates From Current Changes #13887
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Version Updates
Merging this PR will release new versions of the following packages based on your change files.
@tauri-apps/api
[2.8.0]
New Features
Window::setSimpleFullscreen
.Enhancements
5ba1c3f (feat(menu): add icon support for Submenu in Rust and JS/TS APIs #13722 by @s00d) Added icon (icon and nativeIcon) support for Submenu:
tauri
), you can now set an icon for submenus via the builder and dedicated methods.@tauri-apps/api
),SubmenuOptions
now has anicon
field, and theSubmenu
class providessetIcon
andsetNativeIcon
methods.This is a backwards-compatible feature. Submenus can now display icons just like regular menu items.
tauri-utils
[2.7.0]
New Features
tauri dev
.Enhancements
fips_compliant
field toWixConfig
#13787 by @JakenHerman) Addedfips_compliant
field toWixConfig
so that it can be configured viatauri.conf.json
as well.Debug
format size for binary buffers.Bug Fixes
tauri-macos-sign
[2.2.0]
New Features
--skip-stapling
option to maketauri build|bundle
not wait for notarization to finish on macOS.tauri-bundler
[2.6.0]
New Features
--skip-stapling
option to maketauri build|bundle
not wait for notarization to finish on macOS.Enhancements
Bug Fixes
1
for the release in case an empty string was provided instead of using-.
in the file name.Dependencies
[email protected]
[email protected]
tauri-runtime
[2.8.0]
New Features
App::set_device_event_filter
forAppHandle
also #14008 by @WSH032) ImplementApp::set_device_event_filter
forAppHandle
also.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_document_title_changed
andWebviewWindowBuilder::on_document_title_changed
.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_new_window
andWebviewWindowBuilder::on_new_window
.WebView::set_cookie
andWebView::delete_cookie
#13661 by @WSH032) AddedWebviewDispatch::set_cookie()
andWebviewDispatch::delete_cookie()
.Window::set_simple_fullscreen
.Dependencies
[email protected]
tauri-runtime-wry
[2.8.0]
New Features
App::set_device_event_filter
forAppHandle
also #14008 by @WSH032) ImplementApp::set_device_event_filter
forAppHandle
also.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_document_title_changed
andWebviewWindowBuilder::on_document_title_changed
.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_new_window
andWebviewWindowBuilder::on_new_window
.WebView::set_cookie
andWebView::delete_cookie
#13661 by @WSH032) AddedWebviewDispatch::set_cookie()
andWebviewDispatch::delete_cookie()
.Window::set_simple_fullscreen
.Bug Fixes
tauri_runtime::Error::CreateWindow
instead of panic on window creation failedDependencies
[email protected]
[email protected]
tauri-codegen
[2.3.2]
Dependencies
[email protected]
tauri-macros
[2.3.3]
Dependencies
[email protected]
[email protected]
tauri-plugin
[2.4.0]
New Features
build::mobile::update_info_plist
to allow a plugin to update the iOS project Info.plist file.Dependencies
[email protected]
tauri-build
[2.3.2]
Dependencies
[email protected]
[email protected]
tauri
[2.8.0]
New Features
App::set_device_event_filter
forAppHandle
also #14008 by @WSH032) ImplementApp::set_device_event_filter
forAppHandle
also.--root-certificate-path
option for mobile dev #13358 by @lucasfernog) Load root certificate from CLI-set environment variable and use it on the mobile dev server proxy.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_document_title_changed
andWebviewWindowBuilder::on_document_title_changed
.WebviewBuilder::on_new_window
andWebviewBuilder::on_document_title_changed
#13876 by @thlstsul) AddedWebviewBuilder::on_new_window
andWebviewWindowBuilder::on_new_window
.PluginHandle::run_mobile_plugin_async
#13895 by @ahqsoftwares) IntroducesPluginHandle::run_mobile_plugin_async
as an async alternative torun_mobile_plugin
WebView::set_cookie
andWebView::delete_cookie
#13661 by @WSH032) AddedWebview::set_cookie()
,Webview::delete_cookie()
,WebviewWindow::set_cookie()
andWebviewWindow::delete_cookie()
.Window::set_simple_fullscreen
.Enhancements
7261a14 (feat: impl
AsRef<Window>
andon_webview_event
forWebviewWindow
#14012 by @WSH032) ImplementedWebview::on_webview_event
forWebviewWindow
as well0e6b5cb (feat(tauri): re-export
PixelUnit
,PhysicalUnit
,LogicalUnit
#14009 by @WSH032) re-exportPixelUnit
,PhysicalUnit
,LogicalUnit
a3dc424 (feat(tauri): export
TitleBarStyle
for all platforms #14013 by @WSH032) exportTitleBarStyle
for all platforms.f123267 (feat: expose internal TrayIcon #13959 by @petersamokhin) Introduce
with_inner_tray_icon
for TauriTrayIcon
to access the inner platform-specific tray icon.Note that
tray-icon
crate may be updated in minor releases of Tauri.Therefore, it’s recommended to pin Tauri to at least a minor version when you’re using
with_inner_tray_icon
.72b4226 (feat: reduce Debug format size for binary buffers #13809 by @Beanow) Reduced
Debug
format size for binary buffers.21ebc6e (feat(tauri): remove 'static lifetime bound from AppHandle::remove_plugin #14007 by @WSH032) Changed the parameter type of
AppHandle::remove_plugin
from&'static str
to&str
.5ba1c3f (feat(menu): add icon support for Submenu in Rust and JS/TS APIs #13722 by @s00d) Added icon (icon and nativeIcon) support for Submenu:
tauri
), you can now set an icon for submenus via the builder and dedicated methods.@tauri-apps/api
),SubmenuOptions
now has anicon
field, and theSubmenu
class providessetIcon
andsetNativeIcon
methods.This is a backwards-compatible feature. Submenus can now display icons just like regular menu items.
Dependencies
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
@tauri-apps/cli
[2.8.0]
New Features
tauri dev
.--root-certificate-path
option for mobile dev #13358 by @lucasfernog) Added--root-certificate-path
option toandroid dev
andios dev
to be able to connect to HTTPS dev servers.Enhancements
goblin
to only show its debug logs in-vv
and above.Bug Fixes
tauri add
fortauri-plugin-autostart
andtauri-plugin-single-instance
patch_binary
causing codesigning verification failure #13943 by @acx0) Fix codesigning verification failures caused by binary-patching during bundlingtauri permission add
could add duplicated permissions to the capability filesDependencies
[email protected]
tauri-cli
[2.8.0]
New Features
tauri dev
.--skip-stapling
option to maketauri build|bundle
not wait for notarization to finish on macOS.--root-certificate-path
option for mobile dev #13358 by @lucasfernog) Added--root-certificate-path
option toandroid dev
andios dev
to be able to connect to HTTPS dev servers.Enhancements
goblin
to only show its debug logs in-vv
and above.Bug Fixes
tauri add
fortauri-plugin-autostart
andtauri-plugin-single-instance
patch_binary
causing codesigning verification failure #13943 by @acx0) Fix codesigning verification failures caused by binary-patching during bundlingtauri permission add
could add duplicated permissions to the capability filesDependencies
[email protected]
[email protected]
[email protected]