tauri icon indicating copy to clipboard operation
tauri copied to clipboard

Apply Version Updates From Current Changes

Open github-actions[bot] opened this issue 8 months ago • 1 comments

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 setAutoResize API for webviews in @tauri-apps/api.
  • 267368fd4 (#13276 by @amrbashir) Add Monitor.workArea field.

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) transformCallback now registers the callbacks inside window.__TAURI_INTERNALS__.callbacks instead of directly on window['_{id}']

tauri-utils

[2.5.0]

New Features

  • 414619c36 (#13536 by @Tunglies) Added support for the bundleName property in the macOS bundler configuration. This allows specifying the CFBundleName value for generated macOS bundles.
  • 09c19932d (#13304 by @39zde) Adds the option to configure the HTTP Service-Worker-Allowed response header in app > security > headers

Bug Fixes

  • c8a30a61d (#13476 by @lucasfernog) Fix capability filtering via tauri.conf.json > app > security > capabilities not working when generating allowed commands.
  • b52da29d5 (#13429 by @Legend-Master) Fix mainBinaryName doesn'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 through default-features = false to 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-utils behined a flag to reduce compile time

tauri-bundler

[2.5.0]

New Features

  • 414619c36 (#13536 by @Tunglies) Added support for the bundleName property in the macOS bundler configuration. This allows specifying the CFBundleName value for generated macOS bundles.
  • 7322f0579 (#13502 by @amrbashir) Allow using CheckIfAppIsRunning macro inside NSIS hooks, for example !insertmacro CheckIfAppIsRunning "another-executable.exe" "Another Executable".

Bug Fixes

  • 479cee3d3 (#13260 by @FabianLars) The bundler now sets the ARCH env var to the current build target to prevent potential issues with appimagetool'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 mainBinaryName doesn't work when there's . in it

Dependencies

tauri-runtime

[2.6.1]

Dependencies

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_theme crashes 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.requestFullscreen and document.exitFullscreen)

Dependencies

tauri-codegen

[2.3.0]

New Features

  • 414619c36 (#13536 by @Tunglies) Added support for the bundleName property in the macOS bundler configuration. This allows specifying the CFBundleName value 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 through default-features = false to reduce the final binary size by not including the ACL references

Dependencies

tauri-macros

[2.2.1]

Dependencies

tauri-plugin

[2.2.1]

Dependencies

tauri-build

[2.2.1]

Dependencies

tauri

[2.6.0]

New Features

  • 50ebddaa2 (#13319 by @kingsword09) Expose the setAutoResize API for webviews in @tauri-apps/api.
  • 267368fd4 (#13276 by @amrbashir) Add Monitor::work_area getter
  • 267368fd4 (#13276 by @amrbashir) Added tauri::PhysicalRect and tauri::LogicalRect types.
  • 09c19932d (#13304 by @39zde) Adds the option to configure the HTTP Service-Worker-Allowed response header in app > 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.getById returning a new resource ID instead of reusing a previously created id from TrayIcon.new.
  • 76cbeef20 (#13278 by @situ2001) Fix JavaScript API Webview.proxyUrl had no effect when used in the Webview constructor
  • 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 through default-features = false to reduce the final binary size by not including the ACL references
  • b5c549d18 (#13325 by @Legend-Master) transformCallback now registers the callbacks inside window.__TAURI_INTERNALS__.callbacks instead of directly on window['_{id}']

Dependencies

Breaking Changes

  • b7cdb3b39 (#13410 by @Legend-Master) Feature gated the HTML manipulation code in tauri-utils behined a flag to reduce compile time

@tauri-apps/cli

[2.6.0]

New Features

  • 414619c36 (#13536 by @Tunglies) Added support for the bundleName property in the macOS bundler configuration. This allows specifying the CFBundleName value for generated macOS bundles.
  • 7322f0579 (#13502 by @amrbashir) Allow using CheckIfAppIsRunning macro 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 .app because 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

tauri-cli

[2.6.0]

New Features

  • 414619c36 (#13536 by @Tunglies) Added support for the bundleName property in the macOS bundler configuration. This allows specifying the CFBundleName value for generated macOS bundles.
  • 7322f0579 (#13502 by @amrbashir) Allow using CheckIfAppIsRunning macro 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 .app because it conflicts with the application bundle extension on macOS

Bug Fixes

  • 574a4d4d3 (#13426 by @Legend-Master) Fix dev, build and bundle commands 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

github-actions[bot] avatar Apr 23 '25 01:04 github-actions[bot]

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

FabianLars avatar May 07 '25 16:05 FabianLars

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

github-actions[bot] avatar Jun 24 '25 18:06 github-actions[bot]