Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#7823)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog authored Oct 8, 2023
1 parent b2f1772 commit 713f84d
Show file tree
Hide file tree
Showing 23 changed files with 167 additions and 34 deletions.
14 changes: 14 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
".changes/cli-android-split-per-abit-target.md",
".changes/cli-apple-dev-team.md",
".changes/cli-built-in-dev-server-mobile.md",
".changes/cli-config-target-mobile.md",
".changes/cli-expose-plugin-config.md",
".changes/cli-ios-build.md",
".changes/cli-ios-metadata-env-var.md",
Expand All @@ -41,6 +42,7 @@
".changes/cli-skip-targets-install.md",
".changes/cli-wry-0-28.md",
".changes/codegen-mobile-devurl.md",
".changes/codegen-target-from-utils.md",
".changes/config-incognito.md",
".changes/config-tray-icon-tooltip.md",
".changes/config-tray-icon.md",
Expand All @@ -58,6 +60,7 @@
".changes/default-window-icon.md",
".changes/dev-proxy-response-cache.md",
".changes/dev-proxy.md",
".changes/devicectl.md",
".changes/dnd-position.md",
".changes/downgrade-min-sdk-version.md",
".changes/dynamic-wry-plugin.md",
Expand All @@ -72,6 +75,7 @@
".changes/fix-channel-data-request.md",
".changes/fix-dev-server-proxy-path.md",
".changes/fix-empty-identifier.md",
".changes/fix-icons-android.md",
".changes/fix-ios-cli-panic.md",
".changes/fix-ios-logs.md",
".changes/fix-ios-plugin-throws-command.md",
Expand Down Expand Up @@ -127,6 +131,7 @@
".changes/migrate-csp.md",
".changes/migrate-plugins.md",
".changes/min-sdk-version.md",
".changes/mobile-config-naming-conventions.md",
".changes/mobile-config.md",
".changes/mobile-dev-watcher-ignore-gen.md",
".changes/mobile-entry-point-macro.md",
Expand Down Expand Up @@ -204,6 +209,7 @@
".changes/runtime-new-args.md",
".changes/runtime-opened-event.md",
".changes/safepathbuf-refactor.md",
".changes/set_native_icon_signature.md",
".changes/shadow-api.md",
".changes/shadow-config.md",
".changes/shadow.md",
Expand All @@ -214,24 +220,32 @@
".changes/submenu-and-menu-builders-item-and-id.md",
".changes/system-tray-feat.md",
".changes/target-dir-detection.md",
".changes/tauri-api-removal.md",
".changes/tauri-app-handle-ref.md",
".changes/tauri-asset-protocol.md",
".changes/tauri-build-mobile.md",
".changes/tauri-cleanup-before-exit.md",
".changes/tauri-defaultvbox.md",
".changes/tauri-env-args.md",
".changes/tauri-libxdo-feat.md",
".changes/tauri-menu-tray-refactor.md",
".changes/tauri-mobile-entry-point.md",
".changes/tauri-nsview.md",
".changes/tauri-run_on_main_thread.md",
".changes/tauri-runtime-wry-wry-0-28.md",
".changes/tauri-scopes.md",
".changes/tauri-tray-icon-feat-flag.md",
".changes/tauri-tray-icon-id.md",
".changes/tauri-tray-on-tray-event.md",
".changes/tauri-utils-tray-icon-id copy.md",
".changes/tempdir-api.md",
".changes/tempdir-core.md",
".changes/tls-features-automatically-enabled.md",
".changes/tls-features-refactor.md",
".changes/ubuntu-20.04-cli.js.md",
".changes/ubuntu-20.04-cli.rs.md",
".changes/update-entitlements-api.md",
".changes/validate-appimage.md",
".changes/window-effects-api.md",
".changes/window-effects-config.md",
".changes/window-effects.md",
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-alpha.9]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-alpha.8]

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-alpha.8"
version = "2.0.0-alpha.9"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-alpha.7", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-alpha.8", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.15"
serde = "1"
serde_json = "1"
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-alpha.8]

### Enhancements

- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Use `Target` enum from `tauri_utils::platform`.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-alpha.7]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-alpha.7"
version = "2.0.0-alpha.8"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
11 changes: 11 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-alpha.8]

### Enhancements

- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Use `Target` enum from `tauri_utils::platform`.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-alpha.7]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-alpha.7"
version = "2.0.0-alpha.8"
description = "Macros for the tauri crate."
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "2.0.0-alpha.7", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-alpha.8", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }

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

## \[1.0.0-alpha.3]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.0.0-alpha.2]

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.2"
version = "1.0.0-alpha.3"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -17,8 +17,8 @@ features = [ "dox" ]

[dependencies]
wry = { version = "0.33", default-features = false, features = [ "tao", "file-drop", "protocol" ] }
tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
tauri-runtime = { version = "1.0.0-alpha.2", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.0-alpha.2]

### Dependencies

- Upgraded to `[email protected]`

## \[1.0.0-alpha.1]

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
raw-window-handle = "0.5"
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-alpha.8]

### Enhancements

- Add an option to specify `id` for the tray icon in the tauri configuration file.

### Breaking Changes

- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Follow file name conventions set by desktop for mobile Tauri configuration files. Added `target` argument on most `config::parse` methods.

## \[2.0.0-alpha.7]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "2.0.0-alpha.7"
version = "2.0.0-alpha.8"
description = "Utilities for Tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down
31 changes: 31 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## \[2.0.0-alpha.15]

### Enhancements

- [`b597aa5f`](https://www.github.com/tauri-apps/tauri/commit/b597aa5f3974f5ca5ca5159d441abc9ed3e80721)([#7871](https://www.github.com/tauri-apps/tauri/pull/7871)) Set `main` as the default `id` for the tray icon registered from the configuration file, so if the `id` is not specified, it can be retrieved using `app.tray_by_id("main")`.

### Bug Fixes

- [`a2021c30`](https://www.github.com/tauri-apps/tauri/commit/a2021c30ba1139fcfe4db2522b96125f3fa4d9d6)([#7866](https://www.github.com/tauri-apps/tauri/pull/7866)) Changed `IconMenuItem::set_native_icon` signature to take `&self` instead of `&mut self` to fix compilation error on macos.
- [`a68ccaf5`](https://www.github.com/tauri-apps/tauri/commit/a68ccaf59a6731dc030bdb4642a35e3bc64d5769)([#7822](https://www.github.com/tauri-apps/tauri/pull/7822)) Fix `asset` protocol failing to fetch files.
- [`6fbd6dba`](https://www.github.com/tauri-apps/tauri/commit/6fbd6dba5290dc017ab0ba5a44cf4358b022836f)([#17](https://www.github.com/tauri-apps/tauri/pull/17)) Fix the validation of `std::env::current_exe` warn the user if AppImage is not mounted instead of panicking

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

### Breaking Changes

- [`092a561c`](https://www.github.com/tauri-apps/tauri/commit/092a561ca69a631d2a03777e29debeba37b197a7)([#7874](https://www.github.com/tauri-apps/tauri/pull/7874)) Removed `tauri::api` module as most apis have been moved to either a plugin or we recommend using other crates.
- [`deea9436`](https://www.github.com/tauri-apps/tauri/commit/deea9436261f651188e0bc86104779bf30029c32)([#7876](https://www.github.com/tauri-apps/tauri/pull/7876)) Changed `Env.args` to `Env.args_os` and now uses `OsString` instead of `String`
- [`b7fd88e1`](https://www.github.com/tauri-apps/tauri/commit/b7fd88e18d24e4450129a5a5007f2e740c69afe5)([#7944](https://www.github.com/tauri-apps/tauri/pull/7944)) `tauri::scope` module is recieving a couple of consistency changes:

- Added `tauri::scope::fs` module.
- Removed `scope::IpcScope` re-export, use `scope::ipc::Scope`.
- Removed `FsScope`, `GlobPattern` and `FsScopeEvent`, use `scope::fs::Scope`, `scope::fs::Pattern` and `scope::fs::Event` respectively.
- [`c0d03af4`](https://www.github.com/tauri-apps/tauri/commit/c0d03af4704c828698e06e9662dab1087c99c42e)([#7943](https://www.github.com/tauri-apps/tauri/pull/7943)) Changed `TrayIconBuilder/TrayIcon::on_tray_event` to `TrayIconBuilder/TrayIcon::on_tray_icon_event` for consistency of naming.

## \[2.0.0-alpha.14]

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-alpha.14"
version = "2.0.0-alpha.15"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -48,10 +48,10 @@ url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.7", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.7", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "1.0.0-alpha.2", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.8", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.8", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.3", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
serde_repr = "0.1"
state = "0.6"
Expand Down Expand Up @@ -107,7 +107,7 @@ swift-rs = "1.0.5"
[build-dependencies]
heck = "0.4"
once_cell = "1"
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.8" }
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.9" }

[dev-dependencies]
proptest = "1.2.0"
Expand Down
6 changes: 6 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-alpha.9]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-alpha.8]

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions tooling/bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "2.0.0-alpha.8"
version = "2.0.0-alpha.9"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]

[dependencies]
tauri-utils = { version = "2.0.0-alpha.7", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "2.0.0-alpha.8", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.7"
libflate = "2.0"
anyhow = "1.0"
Expand Down
16 changes: 16 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## \[2.0.0-alpha.15]

### New Features

- [`b2f17723`](https://www.github.com/tauri-apps/tauri/commit/b2f17723a415f04c2620132a6305eb138d7cb47f)([#7971](https://www.github.com/tauri-apps/tauri/pull/7971)) Use `devicectl` to connect to iOS 17+ devices on macOS 14+.

### Bug Fixes

- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Properly read platform-specific configuration files for mobile targets.
- [`228e5a4c`](https://www.github.com/tauri-apps/tauri/commit/228e5a4c76ad5f97409c912d07699b49ba4bb162)([#7902](https://www.github.com/tauri-apps/tauri/pull/7902)) Fixes `icon` command not writing files to the correct Android project folders.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-alpha.14]

### Breaking Changes
Expand Down
Loading

0 comments on commit 713f84d

Please sign in to comment.