Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply Version Updates From Current Changes #4560

Merged
merged 1 commit into from Jul 6, 2022
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jul 1, 2022

Version Updates

Merging this PR will release new versions of the following packages based on your change files.

api

[1.0.2]

  • Added helper functions to listen to updater and window events.
    • b02fc90f feat(api): add abstractions to updater and window event listeners (#4569) on 2022-07-05
  • Add support to ArrayBuffer in Body.bytes and writeBinaryFile.
    • 92aca55a feat(api): add support to ArrayBuffer (#4579) on 2022-07-05
  • Use toString() on message/confirm/ask dialogs title and message values.
    • b8cd2a79 feat(api): call toString() on dialog title and message, closes #4583 (#4588) on 2022-07-04
  • Remove the type-fest dependency, changing the OS types to the specific enum instead of allowing any string.

tauri-utils

[1.0.3]

  • Added menu_on_left_click: bool to the SystemTrayConfig.
    • f8a3becb feat(core): add option to disable tray menu on left click, closes #4584 (#4587) on 2022-07-05
  • Added config::parse::read_platform and config::parse::get_platform_config_filename.
    • 8e3e7fc6 feat(cli): improve bundle identifier validation, closes #4589 (#4596) on 2022-07-05

tauri-bundler

[1.0.3]

  • Build AppImages inside the src-tauri/target folder rather than ~/.cache/tauri. Making it easier to clean and rebuild from scratch.
    • 8dd03e69 fix(bundler): Build AppImages inside the target folder (#4521) on 2022-07-03
  • Ensure the notarization RequestUUID and Status parser works on macOS 10.13.6+.
    • 23d3d847 fix(bundler): ensure RequestUUID and Status parser adds a \n, closes #4549 (#4559) on 2022-07-03
    • f7c59ecf fix(bundler): support macOS 10.13.6+ on notarization, closes #4549 (#4593) on 2022-07-05

tauri-runtime

[0.10.2]

  • Added option to disable tray menu on left click on macOS.
    • f8a3becb feat(core): add option to disable tray menu on left click, closes #4584 (#4587) on 2022-07-05

tauri-runtime-wry

[0.10.2]

  • Disable drag-n-drop of tao based on fileDropEnabled value.
    • a1d569bb fix(core): disable tao's drag-n-drop based on fileDropEnabled, closes #4580 (#4592) on 2022-07-05
  • Added option to disable tray menu on left click on macOS.
    • f8a3becb feat(core): add option to disable tray menu on left click, closes #4584 (#4587) on 2022-07-05

tauri-codegen

[1.0.3]

  • The TAURI_CONFIG environment variable now represents the configuration to be merged instead of the entire JSON.
    • fa028ebf refactor: do not pass entire config from CLI to core, send patch instead (#4598) on 2022-07-06

tauri-macros

[1.0.3]

  • Add #[doc(hidden)] attribute to the #[command] generated macro.

tauri-build

[1.0.3]

  • Improve configuration deserialization error messages.
    • 9170c920 feat(core): improve config deserialization error messages (#4607) on 2022-07-06
  • The TAURI_CONFIG environment variable now represents the configuration to be merged instead of the entire JSON.
    • fa028ebf refactor: do not pass entire config from CLI to core, send patch instead (#4598) on 2022-07-06

tauri

[1.0.3]

  • tauri::Builder will now include a default menu for macOS without explicitly using Menu::os_default, you can still override it through tauri::Builder::menu or remove it using tauri::Builder::enable_macos_default_menu(false).
    • 91055883 feat: add implicit default menu for macOS only, closes #4551 (#4570) on 2022-07-04
  • Use toString() on message/confirm/ask dialogs title and message values.
    • b8cd2a79 feat(api): call toString() on dialog title and message, closes #4583 (#4588) on 2022-07-04
  • Fix stack overflow on Windows on commands by changing the implementation of the async_runtime::spawn method.
    • 7e3ac847 fix(core): command stack overflow on Windows, closes #4548 (#4562) on 2022-07-03
  • Emits RunEvent::Exit prior to killing child processes managed by Tauri, allowing graceful shutdown of sidecar binaries.
    • 34879f73 fix: allow graceful shutdown of sidecar commands on exit (#4561) on 2022-07-03
  • Added option to disable tray menu on left click on macOS.
    • f8a3becb feat(core): add option to disable tray menu on left click, closes #4584 (#4587) on 2022-07-05
  • Only run the updater default dialog mode in supported platforms or development mode.
    • e29fff25 fix(updater): do not run in dialog mode on .deb, closes #4573 (#4577) on 2022-07-05
  • Configure the updater to relaunch after installing the update on Windows.

cli.js

[1.0.3]

  • Changed the app template to not set the default app menu as it is now set automatically on macOS which is the platform that needs a menu to function properly.
    • 91055883 feat: add implicit default menu for macOS only, closes #4551 (#4570) on 2022-07-04
  • Improved bundle identifier validation showing the exact source of the configuration value.
    • 8e3e7fc6 feat(cli): improve bundle identifier validation, closes #4589 (#4596) on 2022-07-05
  • Improve configuration deserialization error messages.
    • 9170c920 feat(core): improve config deserialization error messages (#4607) on 2022-07-06
  • Revert the run command to run in a separate thread.
    • f65eb4f8 fix(cli.js): revert run command to be nonblocking on 2022-07-04
  • Skip the static link of the vcruntime140.dll if the STATIC_VCRUNTIME environment variable is set to false.
  • The TAURI_CONFIG environment variable now represents the configuration to be merged instead of the entire JSON.
    • fa028ebf refactor: do not pass entire config from CLI to core, send patch instead (#4598) on 2022-07-06
  • Watch for Cargo workspace members in the dev file watcher.
    • dbb8c87b feat(cli): watch Cargo workspaces in the dev command, closes #4222 (#4572) on 2022-07-03

cli.rs

[1.0.3]

  • Changed the app template to not set the default app menu as it is now set automatically on macOS which is the platform that needs a menu to function properly.
    • 91055883 feat: add implicit default menu for macOS only, closes #4551 (#4570) on 2022-07-04
  • Improved bundle identifier validation showing the exact source of the configuration value.
    • 8e3e7fc6 feat(cli): improve bundle identifier validation, closes #4589 (#4596) on 2022-07-05
  • Improve configuration deserialization error messages.
    • 9170c920 feat(core): improve config deserialization error messages (#4607) on 2022-07-06
  • Skip the static link of the vcruntime140.dll if the STATIC_VCRUNTIME environment variable is set to false.
  • The TAURI_CONFIG environment variable now represents the configuration to be merged instead of the entire JSON.
    • fa028ebf refactor: do not pass entire config from CLI to core, send patch instead (#4598) on 2022-07-06
  • Watch for Cargo workspace members in the dev file watcher.
    • dbb8c87b feat(cli): watch Cargo workspaces in the dev command, closes #4222 (#4572) on 2022-07-03

@github-actions github-actions bot requested a review from a team as a code owner July 1, 2022 21:49
@lucasfernog lucasfernog merged commit 7bbf167 into dev Jul 6, 2022
@lucasfernog lucasfernog deleted the release/version-updates branch July 6, 2022 17:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant