tauri
tauri copied to clipboard
Apply Version Updates From Current Changes
Version Updates
Merging this PR will release new versions of the following packages based on your change files.
@tauri-apps/api
[2.6.0]
New Features
- 50ebddaa2 (#13319 by @kingsword09) Expose the
setAutoResizeAPI for webviews in@tauri-apps/api. - 267368fd4 (#13276 by @amrbashir) Add
Monitor.workAreafield.
Bug Fixes
- 23b9da75b (#13324 by @kingsword09) Fixed path joining behavior where
path.join('', 'a')incorrectly returns "/a" instead of "a". - b985eaf0a (#13306 by @lucasfernog) Immediately unregister event listener when the unlisten function is called.
What's Changed
- b5c549d18 (#13325 by @Legend-Master)
transformCallbacknow registers the callbacks insidewindow.__TAURI_INTERNALS__.callbacksinstead of directly onwindow['_{id}']
tauri-utils
[2.5.0]
New Features
- 414619c36 (#13536 by @Tunglies) Added support for the
bundleNameproperty in the macOS bundler configuration. This allows specifying theCFBundleNamevalue for generated macOS bundles. - 09c19932d (#13304 by @39zde) Adds the option to configure the HTTP
Service-Worker-Allowedresponse header inapp > security > headers
Bug Fixes
- c8a30a61d (#13476 by @lucasfernog) Fix capability filtering via
tauri.conf.json > app > security > capabilitiesnot working when generating allowed commands. - b52da29d5 (#13429 by @Legend-Master) Fix
mainBinaryNamedoesn't work when there's.in it
What's Changed
- 168629646 (#13418 by @Legend-Master) Put dynamic ACL into a feature
dynamic-acl, this is currently enabled by default to align with the previous behaviors, you can disable it throughdefault-features = falseto reduce the final binary size by not including the ACL references
Breaking Changes
- b7cdb3b39 (#13410 by @Legend-Master) Feature gated the HTML manipulation code in
tauri-utilsbehined a flag to reduce compile time
tauri-bundler
[2.5.0]
New Features
- 414619c36 (#13536 by @Tunglies) Added support for the
bundleNameproperty in the macOS bundler configuration. This allows specifying theCFBundleNamevalue for generated macOS bundles. - 7322f0579 (#13502 by @amrbashir) Allow using
CheckIfAppIsRunningmacro inside NSIS hooks, for example!insertmacro CheckIfAppIsRunning "another-executable.exe" "Another Executable".
Bug Fixes
- 479cee3d3 (#13260 by @FabianLars) The bundler now sets the
ARCHenv var to the current build target to prevent potential issues withappimagetool's auto-detection. - e045fe32c (#13334 by @lucasfernog) Fix custom Windows sign command failing to sign app uninstaller if it references relative paths.
- bd8a7cf39 (#13581 by @martpie) Fixes app icon not being displayed on Gnome dock and grid view when using Wayland.
- b52da29d5 (#13429 by @Legend-Master) Fix
mainBinaryNamedoesn't work when there's.in it
Dependencies
- Upgraded to
[email protected]
tauri-runtime
[2.6.1]
Dependencies
- Upgraded to
[email protected]
tauri-runtime-wry
[2.6.1]
Enhancements
- 96ecfca42 (#13406 by @amrbashir) Check if the webview runtime is accessible when creating a webview, returning an error if it doesn't.
Bug Fixes
- f0662e41f (#13365 by @lucasfernog) Fix monitor check on the window prevent overflow implementation.
- 4acae1ec0 (#13443 by @Legend-Master) Fix
AppHandle::set_themecrashes or has no effect on macOS if not ran on main thread - 78d15e892 (#13558 by @Legend-Master) Allow web fullscreen APIs to work on Windows (e.g.
video.requestFullscreenanddocument.exitFullscreen)
Dependencies
- Upgraded to
[email protected] - Upgraded to
[email protected]
tauri-codegen
[2.3.0]
New Features
- 414619c36 (#13536 by @Tunglies) Added support for the
bundleNameproperty in the macOS bundler configuration. This allows specifying theCFBundleNamevalue for generated macOS bundles.
What's Changed
- 168629646 (#13418 by @Legend-Master) Put dynamic ACL into a feature
dynamic-acl, this is currently enabled by default to align with the previous behaviors, you can disable it throughdefault-features = falseto reduce the final binary size by not including the ACL references
Dependencies
- Upgraded to
[email protected]
tauri-macros
[2.2.1]
Dependencies
- Upgraded to
[email protected] - Upgraded to
[email protected]
tauri-plugin
[2.2.1]
Dependencies
- Upgraded to
[email protected]
tauri-build
[2.2.1]
Dependencies
- Upgraded to
[email protected] - Upgraded to
[email protected]
tauri
[2.6.0]
New Features
- 50ebddaa2 (#13319 by @kingsword09) Expose the
setAutoResizeAPI for webviews in@tauri-apps/api. - 267368fd4 (#13276 by @amrbashir) Add
Monitor::work_areagetter - 267368fd4 (#13276 by @amrbashir) Added
tauri::PhysicalRectandtauri::LogicalRecttypes. - 09c19932d (#13304 by @39zde) Adds the option to configure the HTTP
Service-Worker-Allowedresponse header inapp > security > headers
Enhancements
- 96ecfca42 (#13406 by @amrbashir) Check if the webview runtime is accessible when creating a webview, returning an error if it doesn't.
Bug Fixes
- 94b77b36e (#13288 by @oscartbeaumont) Prevent the JavaScript runtime crashing when channel events fire in a webview that no longer has callbacks for the channel.
- bc2f0e48a (#13401 by @oscartbeaumont) fix(macOS): caculation for work area
- dfacb656d (#13360 by @velocitysystems) Fixes multiple event listeners registration for iOS plugins.
- 23b9da75b (#13324 by @kingsword09) Fixed path joining behavior where
path.join('', 'a')incorrectly returns "/a" instead of "a". - 638804e9c (#13423 by @kingsword09) Fixed set_window_effects not runs on main thread in WindowBuilder.
- 039f44b7b (#13307 by @lucasfernog) Fix
TrayIcon.getByIdreturning a new resource ID instead of reusing a previously created id fromTrayIcon.new. - 76cbeef20 (#13278 by @situ2001) Fix JavaScript API
Webview.proxyUrlhad no effect when used in theWebviewconstructor - b985eaf0a (#13306 by @lucasfernog) Immediately unregister event listener when the unlisten function is called.
Performance Improvements
- 6a39f4999 (#13464 by @Legend-Master) Use dynamic dispatch for async commands in dev, this should speed up the compilation time by quite a bit, and significantly reduces the incremental compilation time
What's Changed
- 168629646 (#13418 by @Legend-Master) Put dynamic ACL into a feature
dynamic-acl, this is currently enabled by default to align with the previous behaviors, you can disable it throughdefault-features = falseto reduce the final binary size by not including the ACL references - b5c549d18 (#13325 by @Legend-Master)
transformCallbacknow registers the callbacks insidewindow.__TAURI_INTERNALS__.callbacksinstead of directly onwindow['_{id}']
Dependencies
- Upgraded to
[email protected] - Upgraded to
[email protected] - Upgraded to
[email protected] - Upgraded to
[email protected] - Upgraded to
[email protected]
Breaking Changes
- b7cdb3b39 (#13410 by @Legend-Master) Feature gated the HTML manipulation code in
tauri-utilsbehined a flag to reduce compile time
@tauri-apps/cli
[2.6.0]
New Features
- 414619c36 (#13536 by @Tunglies) Added support for the
bundleNameproperty in the macOS bundler configuration. This allows specifying theCFBundleNamevalue for generated macOS bundles. - 7322f0579 (#13502 by @amrbashir) Allow using
CheckIfAppIsRunningmacro inside NSIS hooks, for example!insertmacro CheckIfAppIsRunning "another-executable.exe" "Another Executable". - 8ee14a864 (#13618 by @Sky-walkerX) Warn the user that the app id shouldn't end in
.appbecause it conflicts with the application bundle extension on macOS
Bug Fixes
- 35aa7e121 (#13294 by @kingsword09) fix: allow the target directory to be inside frontendDir as long as it is not the Rust target directory inside frontendDir.
- 5a5291d66 (#13483 by @lucasfernog) Fix simulator build detection on Xcode.
Dependencies
- Upgraded to
[email protected]
tauri-cli
[2.6.0]
New Features
- 414619c36 (#13536 by @Tunglies) Added support for the
bundleNameproperty in the macOS bundler configuration. This allows specifying theCFBundleNamevalue for generated macOS bundles. - 7322f0579 (#13502 by @amrbashir) Allow using
CheckIfAppIsRunningmacro inside NSIS hooks, for example!insertmacro CheckIfAppIsRunning "another-executable.exe" "Another Executable". - 8ee14a864 (#13618 by @Sky-walkerX) Warn the user that the app id shouldn't end in
.appbecause it conflicts with the application bundle extension on macOS
Bug Fixes
- 574a4d4d3 (#13426 by @Legend-Master) Fix
dev,buildandbundlecommands always take 2 seconds to start - 35aa7e121 (#13294 by @kingsword09) fix: allow the target directory to be inside frontendDir as long as it is not the Rust target directory inside frontendDir.
- 5a5291d66 (#13483 by @lucasfernog) Fix simulator build detection on Xcode.
Dependencies
- Upgraded to
[email protected] - Upgraded to
[email protected]
marking as draft because it seems like the cli from git can't do cargo tauri build anymore. i'll try to look into it today (may be just on my end idk)
Edit: Fixed once https://github.com/tauri-apps/tauri/pull/13392 is merged
Package Changes Through 32d756ab9523a6a32d2fcde754edd97383024aaf
No changes.
Add a change file through the GitHub UI by following this link.
Read about change files or the docs at github.com/jbolda/covector