tauri icon indicating copy to clipboard operation
tauri copied to clipboard

Apply Version Updates From Current Changes

Open github-actions[bot] opened this issue 3 years ago • 0 comments

Version Updates

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

api

[1.1.0]

  • Improve shell's Command, Command.stdout and Command.stderr events with new once, off, listenerCount, prependListener, prependOnceListener and removeAllListeners functions.
    • aa9f1243 Improved EventEmitter for tauri api shell (#4697) on 2022-07-26
  • Fix error when invoke() arguments contained a cmd field.
    • 5109c275 fix(core): avoid conflict with user-defined cmd arg in invoke, closes #4875 (#4892) on 2022-08-08
  • Added the encoding option to the Command options.
    • d8cf9f9f Command support for specified character encoding, closes #4644 (#4772) on 2022-07-28

tauri-utils

[1.1.0]

  • Allow adding build > beforeBundleCommand in tauri.conf.json to run a shell command before the bundling phase.
  • Change before_dev_command and before_build_command config value to allow configuring the current working directory.
  • Allow configuring the before_dev_command to force the CLI to wait for the command to finish before proceeding.
  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Refactored the config::parse module.
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02

tauri-bundler

[1.0.6]

  • Avoid re-downloading AppImage build tools on every build.
    • 02462052 fix(bundler): cache appimage bundle tools (#4790) on 2022-07-30
  • Add fips_compliant configuration option for WiX.
    • d88b9de7 feat(core): add fips_compliant wix config option, closes #4541 (#4843) on 2022-08-04

tauri-runtime

[0.11.0]

  • Added APIs to create a system tray at runtime.

tauri-runtime-wry

[0.11.0]

  • Implement theme APIs for Linux.
    • f21cbecd feat(core): implement theme APIs for Linux (#4808) on 2022-08-02
  • Changed windows map to be stored in a RefCell instead of a Mutex.
    • 64546cb9 refactor: use RefCell instead of Mutex for windows map, closes #4870 (#4909) on 2022-08-10
  • Added APIs to create a system tray at runtime.

tauri-codegen

[1.1.0]

  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Improve tray icon read error message.
    • 52f0c8bb feat(core): improve tray icon read error messages (#4850) on 2022-08-03
  • Fix relative paths in version field of tauri.config.json not being correctly parsed by generate_context!().
    • accbc5e8 fix(codegen): fix relative paths in version field of tauri.config.json, closes #4723 (#4725) on 2022-07-24
  • Only rewrite temporary icon files when the content change, avoid needless rebuilds.
    • f957cbb5 fix(codegen): write output file when contents change (#4889) on 2022-08-09

tauri-macros

[1.1.0]

  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02

tauri-build

[1.1.0]

  • Create the desktop and mobile cfg aliases.
    • c04d0340 feat(core): prepare build for mobile targets (#4830) on 2022-08-02
  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Enhance the dialog style on Windows via the manifest dependency Microsoft.Windows.Common-Controls v6.0.0.0.
    • 5c5c42ed feat(build): use modern dialog styles on Windows, closes #4709 (#4840) on 2022-08-02
  • Fix root of codegen output when using the CodegenContext API.
    • ed581950 fix(tauri-build): use ::tauri as root for the CodegenContext (#4894) on 2022-08-08
  • Return an error if a sidecar is configured with the same file name as the application.
  • Only rewrite temporary icon files when the content change, avoid needless rebuilds.
    • f957cbb5 fix(codegen): write output file when contents change (#4889) on 2022-08-09

tauri

[1.1.0]

  • Implement api::http::ClientBuilder::max_redirections for the default attohttpc client.
    • ba5560b2 feat(core): implement max_redirections for attohttpc, ref #4795 (#4811) on 2022-07-31
  • Implement From<api::process::Command> for std::process::Command.
    • 9f1d34c2 feat: implement From<Command> for std::process::Command, closes #4673 (#4836) on 2022-08-02
  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Enhance SystemTray::with_icon to accept tauri::Icon.
    • 964926ff feat(core): enhance SystemTray::with_icon (#4849) on 2022-08-03
  • Fixes CLI parser ignoring inner subcommands.
  • Fix typo in invalid state access panic message.
  • Fixes updater breaking the app icon in Finder.
    • 58fc1f21 fix(updater): blank icon after update on macOS, closes #4613 (#4861) on 2022-08-04
  • Fix error when invoke() arguments contained a cmd field.
    • 5109c275 fix(core): avoid conflict with user-defined cmd arg in invoke, closes #4875 (#4892) on 2022-08-08
  • Implement theme APIs for Linux.
    • f21cbecd feat(core): implement theme APIs for Linux (#4808) on 2022-08-02
  • Implement raw_window_handle::HasRawDisplayHandle for App and AppHandle
    • 0ad9531d chore(deps): update tao to 0.13, wry to 0.20, rfd to 0.10, raw-window-handle to 0.5 (#4804) on 2022-07-31
  • Retain command line arguments in api::process::restart.
    • 6218c31e fix(core): retain command line arguments on restart, closes #4760 (#4763) on 2022-07-25
  • Added APIs to create a system tray at runtime.
  • Add api::Command::encoding method to set the stdout/stderr encoding.
    • d8cf9f9f Command support for specified character encoding, closes #4644 (#4772) on 2022-07-28
  • Do not follow redirects when api::http::ClientBuilder::max_redirections is 0.
    • d576e8ae feat(core): do not follow redirects if max_redirects is 0 closes #4795 (#4812) on 2022-07-31
  • Added the SystemTrayHandle::destroy method.
  • Added native-tls-vendored and reqwest-native-tls-vendored Cargo features to compile and statically link to a vendored copy of OpenSSL on Linux.
    • 331f3460 feat(core): add option to use vendored openssl, closes #4470 (#4809) on 2022-08-02

cli.js

[1.1.0]

  • Allow adding build > beforeBundleCommand in tauri.conf.json to run a shell command before the bundling phase.
  • Change before_dev_command and before_build_command config value to allow configuring the current working directory.
  • Allow configuring the before_dev_command to force the CLI to wait for the command to finish before proceeding.
  • Prompt for beforeDevCommand and beforeBuildCommand in tauri init.
  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Automatically use any .taurignore file as ignore rules for dev watcher and app path finder.
  • Enable WiX FIPS compliance when the TAURI_FIPS_COMPLIANT environment variable is set to true.
    • d88b9de7 feat(core): add fips_compliant wix config option, closes #4541 (#4843) on 2022-08-04
  • Fixes dev watcher incorrectly exiting the CLI when sequential file updates are detected.
    • 47fab680 fix(cli): dev watcher incorrectly killing process on multiple file write (#4684) on 2022-07-25
  • Add libc field to Node packages.
    • f7d2dfc7 chore: add libc field to node packages (#4856) on 2022-08-04
  • Set the MACOSX_DEPLOYMENT_TARGET environment variable with the configuration minimum_system_version value.
    • fa23310f fix(cli): set MACOSX_DEPLOYMENT_TARGET env var, closes #4704 (#4842) on 2022-08-02
  • Added --no-watch argument to the dev command to disable the file watcher.
    • 0983d7ce feat(cli): add --no-watch argument to the dev command, closes #4617 (#4793) on 2022-07-29
  • Validate updater signature matches configured public key.
    • b2a8930b feat(cli): validate updater private key when signing (#4754) on 2022-07-25

cli.rs

[1.1.0]

  • Allow adding build > beforeBundleCommand in tauri.conf.json to run a shell command before the bundling phase.
  • Change before_dev_command and before_build_command config value to allow configuring the current working directory.
  • Allow configuring the before_dev_command to force the CLI to wait for the command to finish before proceeding.
  • Add support to cargo-binstall.
    • 90d5929f feat(cli.rs): add support to cargo-binstall, closes #4651 (#4817) on 2022-08-02
  • Prompt for beforeDevCommand and beforeBuildCommand in tauri init.
  • Added support to configuration files in TOML format (Tauri.toml file).
    • ae83d008 feat: add support to TOML config file Tauri.toml, closes #4806 (#4813) on 2022-08-02
  • Automatically use any .taurignore file as ignore rules for dev watcher and app path finder.
  • Enable WiX FIPS compliance when the TAURI_FIPS_COMPLIANT environment variable is set to true.
    • d88b9de7 feat(core): add fips_compliant wix config option, closes #4541 (#4843) on 2022-08-04
  • Fixes dev watcher incorrectly exiting the CLI when sequential file updates are detected.
    • 47fab680 fix(cli): dev watcher incorrectly killing process on multiple file write (#4684) on 2022-07-25
  • Set the MACOSX_DEPLOYMENT_TARGET environment variable with the configuration minimum_system_version value.
    • fa23310f fix(cli): set MACOSX_DEPLOYMENT_TARGET env var, closes #4704 (#4842) on 2022-08-02
  • Added --no-watch argument to the dev command to disable the file watcher.
    • 0983d7ce feat(cli): add --no-watch argument to the dev command, closes #4617 (#4793) on 2022-07-29
  • Validate updater signature matches configured public key.
    • b2a8930b feat(cli): validate updater private key when signing (#4754) on 2022-07-25

github-actions[bot] avatar Jul 24 '22 13:07 github-actions[bot]