Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#4560)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and lucasfernog committed Jul 6, 2022
1 parent a30f95f commit 7bbf167
Show file tree
Hide file tree
Showing 47 changed files with 136 additions and 159 deletions.
5 changes: 0 additions & 5 deletions .changes/api-event-listeners.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/api-support-array-buffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/appimage-bundle-in-target.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/builder-default-menu-macos.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/cli-remove-menu-from-template.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/dialog-to-string.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/disable-tao-drag-n-drop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/doc-hide-command-macro.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-async-runtime-stack-overflow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-notarization-stdout-parse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-sidecar-shutdown.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/improve-bundle-identifier-validation.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/improve-config-error-message.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/menu-on-left-click-config.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/menu-on-left-click.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/remove-type-fest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/revert-cli-async.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/static-vcruntime-envvar.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/tauri-config-refactor.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/updater-dialog-unsupported-platform.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/utils-read-platform-config.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/watch-cargo-workspace.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/windows-updater-relaunch.md

This file was deleted.

7 changes: 7 additions & 0 deletions core/tauri-build/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[1.0.3]

- Improve configuration deserialization error messages.
- [9170c920](https://www.github.com/tauri-apps/tauri/commit/9170c9207044fa561535f624916dfdbaa41ff79d) feat(core): improve config deserialization error messages ([#4607](https://www.github.com/tauri-apps/tauri/pull/4607)) on 2022-07-06
- The `TAURI_CONFIG` environment variable now represents the configuration to be merged instead of the entire JSON.
- [fa028ebf](https://www.github.com/tauri-apps/tauri/commit/fa028ebf3c8ca7b43a70d283a01dbea86217594f) refactor: do not pass entire config from CLI to core, send patch instead ([#4598](https://www.github.com/tauri-apps/tauri/pull/4598)) on 2022-07-06

## \[1.0.2]

- Expose `platform::windows_version` function.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.0.2"
version = "1.0.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.0.2", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.2", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.0.3", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.3", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.11"
serde_json = "1"
heck = "0.4"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.3]

- The `TAURI_CONFIG` environment variable now represents the configuration to be merged instead of the entire JSON.
- [fa028ebf](https://www.github.com/tauri-apps/tauri/commit/fa028ebf3c8ca7b43a70d283a01dbea86217594f) refactor: do not pass entire config from CLI to core, send patch instead ([#4598](https://www.github.com/tauri-apps/tauri/pull/4598)) on 2022-07-06

## \[1.0.2]

- Expose `platform::windows_version` function.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.0.2"
version = "1.0.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.0.2", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.0.3", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-macros/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.3]

- Add `#[doc(hidden)]` attribute to the `#[command]` generated macro.
- [d4cdf807](https://www.github.com/tauri-apps/tauri/commit/d4cdf80781a7955ac620fe6d394e82d067178c4d) feat(macros): hide command macro from docs, closes [#4550](https://www.github.com/tauri-apps/tauri/pull/4550) ([#4556](https://www.github.com/tauri-apps/tauri/pull/4556)) on 2022-07-01

## \[1.0.2]

- Expose `platform::windows_version` function.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.0.2"
version = "1.0.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.0.2", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.2", path = "../tauri-utils" }
tauri-codegen = { version = "1.0.3", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[0.10.2]

- Disable drag-n-drop of tao based on `fileDropEnabled` value.
- [a1d569bb](https://www.github.com/tauri-apps/tauri/commit/a1d569bbc9cfdd58258916df594911e1c512a75e) fix(core): disable tao's drag-n-drop based on `fileDropEnabled`, closes [#4580](https://www.github.com/tauri-apps/tauri/pull/4580) ([#4592](https://www.github.com/tauri-apps/tauri/pull/4592)) on 2022-07-05
- Added option to disable tray menu on left click on macOS.
- [f8a3becb](https://www.github.com/tauri-apps/tauri/commit/f8a3becb287942db7f7b551b5db6aeb5a2e939ee) feat(core): add option to disable tray menu on left click, closes [#4584](https://www.github.com/tauri-apps/tauri/pull/4584) ([#4587](https://www.github.com/tauri-apps/tauri/pull/4587)) on 2022-07-05

## \[0.10.1]

- Fixes a deadlock on the file drop handler.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.10.1"
version = "0.10.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"

[dependencies]
wry = { version = "0.19", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.10.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.2", path = "../tauri-utils" }
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.4.3"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[0.10.2]

- Added option to disable tray menu on left click on macOS.
- [f8a3becb](https://www.github.com/tauri-apps/tauri/commit/f8a3becb287942db7f7b551b5db6aeb5a2e939ee) feat(core): add option to disable tray menu on left click, closes [#4584](https://www.github.com/tauri-apps/tauri/pull/4584) ([#4587](https://www.github.com/tauri-apps/tauri/pull/4587)) on 2022-07-05

## \[0.10.1]

- Expose `platform::windows_version` function.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.10.1"
version = "0.10.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.0.2", path = "../tauri-utils" }
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-utils/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[1.0.3]

- Added `menu_on_left_click: bool` to the `SystemTrayConfig`.
- [f8a3becb](https://www.github.com/tauri-apps/tauri/commit/f8a3becb287942db7f7b551b5db6aeb5a2e939ee) feat(core): add option to disable tray menu on left click, closes [#4584](https://www.github.com/tauri-apps/tauri/pull/4584) ([#4587](https://www.github.com/tauri-apps/tauri/pull/4587)) on 2022-07-05
- Added `config::parse::read_platform` and `config::parse::get_platform_config_filename`.
- [8e3e7fc6](https://www.github.com/tauri-apps/tauri/commit/8e3e7fc64641afc7a6833bc93205e6f525562545) feat(cli): improve bundle identifier validation, closes [#4589](https://www.github.com/tauri-apps/tauri/pull/4589) ([#4596](https://www.github.com/tauri-apps/tauri/pull/4596)) on 2022-07-05

## \[1.0.2]

- Expose `platform::windows_version` function.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.0.2"
version = "1.0.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
Expand Down
17 changes: 17 additions & 0 deletions core/tauri/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog

## \[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](https://www.github.com/tauri-apps/tauri/commit/9105588373cc8401bd9ad79bdef26f509b2d76b7) feat: add implicit default menu for macOS only, closes [#4551](https://www.github.com/tauri-apps/tauri/pull/4551) ([#4570](https://www.github.com/tauri-apps/tauri/pull/4570)) on 2022-07-04
- Use `toString()` on message/confirm/ask dialogs title and message values.
- [b8cd2a79](https://www.github.com/tauri-apps/tauri/commit/b8cd2a7993cd2aa5b71b30c545b3307245d254bf) feat(api): call `toString()` on dialog title and message, closes [#4583](https://www.github.com/tauri-apps/tauri/pull/4583) ([#4588](https://www.github.com/tauri-apps/tauri/pull/4588)) on 2022-07-04
- Fix stack overflow on Windows on commands by changing the implementation of the `async_runtime::spawn` method.
- [7e3ac847](https://www.github.com/tauri-apps/tauri/commit/7e3ac8475cfa146f80e13cd4e3cdf82502018d9a) fix(core): command stack overflow on Windows, closes [#4548](https://www.github.com/tauri-apps/tauri/pull/4548) ([#4562](https://www.github.com/tauri-apps/tauri/pull/4562)) on 2022-07-03
- Emits RunEvent::Exit prior to killing child processes managed by Tauri, allowing graceful shutdown of sidecar binaries.
- [34879f73](https://www.github.com/tauri-apps/tauri/commit/34879f73446e218fd08d0d079c086fa556a08b4e) fix: allow graceful shutdown of sidecar commands on exit ([#4561](https://www.github.com/tauri-apps/tauri/pull/4561)) on 2022-07-03
- Added option to disable tray menu on left click on macOS.
- [f8a3becb](https://www.github.com/tauri-apps/tauri/commit/f8a3becb287942db7f7b551b5db6aeb5a2e939ee) feat(core): add option to disable tray menu on left click, closes [#4584](https://www.github.com/tauri-apps/tauri/pull/4584) ([#4587](https://www.github.com/tauri-apps/tauri/pull/4587)) on 2022-07-05
- Only run the updater default dialog mode in supported platforms or development mode.
- [e29fff25](https://www.github.com/tauri-apps/tauri/commit/e29fff2566bf130e9f9cae432edba2f842607516) fix(updater): do not run in dialog mode on .deb, closes [#4573](https://www.github.com/tauri-apps/tauri/pull/4573) ([#4577](https://www.github.com/tauri-apps/tauri/pull/4577)) on 2022-07-05
- Configure the updater to relaunch after installing the update on Windows.
- [0fa74534](https://www.github.com/tauri-apps/tauri/commit/0fa745344e0667434ebf3011a8b9fd776dfc5f59) feat(updater): relaunch on Windows, closes [#4220](https://www.github.com/tauri-apps/tauri/pull/4220) ([#4568](https://www.github.com/tauri-apps/tauri/pull/4568)) on 2022-07-03

## \[1.0.2]

- Fixes check for local URL when an external URL is provided to the window and it is based on the configured devPath.
Expand Down
10 changes: 5 additions & 5 deletions core/tauri/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.0.2"
version = "1.0.3"

[package.metadata.docs.rs]
no-default-features = true
Expand Down Expand Up @@ -55,10 +55,10 @@ url = { version = "2.2" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.12"
tauri-runtime = { version = "0.10.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.2", path = "../tauri-macros" }
tauri-utils = { version = "1.0.2", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.10.1", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.3", path = "../tauri-macros" }
tauri-utils = { version = "1.0.3", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.10.2", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"
Expand Down
11 changes: 11 additions & 0 deletions tooling/api/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog

## \[1.0.2]

- Added helper functions to listen to updater and window events.
- [b02fc90f](https://www.github.com/tauri-apps/tauri/commit/b02fc90f450ff9e9d8a35ee55dc1beced4957869) feat(api): add abstractions to updater and window event listeners ([#4569](https://www.github.com/tauri-apps/tauri/pull/4569)) on 2022-07-05
- Add support to `ArrayBuffer` in `Body.bytes` and `writeBinaryFile`.
- [92aca55a](https://www.github.com/tauri-apps/tauri/commit/92aca55a6f1f899d5c0c3a6aae9ac9cb0a7e9a86) feat(api): add support to ArrayBuffer ([#4579](https://www.github.com/tauri-apps/tauri/pull/4579)) on 2022-07-05
- Use `toString()` on message/confirm/ask dialogs title and message values.
- [b8cd2a79](https://www.github.com/tauri-apps/tauri/commit/b8cd2a7993cd2aa5b71b30c545b3307245d254bf) feat(api): call `toString()` on dialog title and message, closes [#4583](https://www.github.com/tauri-apps/tauri/pull/4583) ([#4588](https://www.github.com/tauri-apps/tauri/pull/4588)) on 2022-07-04
- Remove the `type-fest` dependency, changing the OS types to the specific enum instead of allowing any string.
- [d5e910eb](https://www.github.com/tauri-apps/tauri/commit/d5e910ebcc6c8d7f055ab0691286722b140ffcd4) chore(api): remove `type-fest` ([#4605](https://www.github.com/tauri-apps/tauri/pull/4605)) on 2022-07-06

## \[1.0.1]

- Fixes the `writeBinaryFile` sending an empty file contents when only the first argument is passed.
Expand Down
2 changes: 1 addition & 1 deletion tooling/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "1.0.1",
"version": "1.0.2",
"description": "Tauri API definitions",
"type": "module",
"funding": {
Expand Down

0 comments on commit 7bbf167

Please sign in to comment.