apply version updates (#10281)

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-07-29 07:27:56 -03:00 committed by GitHub
parent efdce038bb
commit 2a402b4845
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
18 changed files with 104 additions and 18 deletions

View File

@ -13,6 +13,7 @@
".changes/api-isTauri.md",
".changes/api-position-size-args.md",
".changes/api-readd-window-created-event.md",
".changes/api-reparent-focus.md",
".changes/api-simplify-unc-paths.md",
".changes/api-tauri-event-file-drop-rename.md",
".changes/api-tray-by-id.md",
@ -170,6 +171,7 @@
".changes/fix-tauri-build-license-field.md",
".changes/fix-tauri-build-unix.md",
".changes/fix-temp-permission-file-name.md",
".changes/fix-updater-warning.md",
".changes/fix-visibility-change.md",
".changes/fix-webview-close.md",
".changes/fix-window-center-monitor-scale.md",
@ -221,6 +223,7 @@
".changes/nsis-ifmacrodef.md",
".changes/nsis-migrate-shortcut.md",
".changes/nsis-no-compression.md",
".changes/nsis-pre-hooks-timing.md",
".changes/nsis-run-as-user.md",
".changes/nsis-run-progrma-space.md",
".changes/nsis-shortcuts-regression.md",
@ -259,6 +262,7 @@
".changes/runtime-capability-dynamic.md",
".changes/runtime-dpi-mod-moved.md",
".changes/runtime-icon-lifetime.md",
".changes/runtime-macos-default-visible-titlebat.md",
".changes/runtime-window-builder-get-theme.md",
".changes/rustc-check-cfg.md",
".changes/rwh-06.md",
@ -268,6 +272,11 @@
".changes/set-auto-resize.md",
".changes/set-zoom.md",
".changes/skip-webview-install-mod.md",
".changes/specta-derive-feature.md",
".changes/split-min-max-constraints-apis-runtime-js.md",
".changes/split-min-max-constraints-apis-runtime.md",
".changes/split-min-max-constraints-apis.md",
".changes/split-min-max-constraints.md",
".changes/strict-csp-isolation-frame.md",
".changes/tauri-build-codegen-capabilities.md",
".changes/tauri-build-dev-changes.md",

6
Cargo.lock generated
View File

@ -3660,7 +3660,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
[[package]]
name = "tauri"
version = "2.0.0-beta.24"
version = "2.0.0-beta.25"
dependencies = [
"anyhow",
"bytes",
@ -3815,7 +3815,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "2.0.0-beta.20"
version = "2.0.0-beta.21"
dependencies = [
"dpi",
"gtk",
@ -3832,7 +3832,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "2.0.0-beta.20"
version = "2.0.0-beta.21"
dependencies = [
"cocoa",
"gtk",

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-beta.21]
### What's Changed
- [`9546548ec`](https://www.github.com/tauri-apps/tauri/commit/9546548ec0c83ba620b1bc9d1d424a7009d0b423) ([#10297](https://www.github.com/tauri-apps/tauri/pull/10297) by [@pewsheen](https://www.github.com/tauri-apps/tauri/../../pewsheen)) On macOS, set default titlebar style to `Visible` to prevent webview move out of the view.
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `inner_size_constraints` method on `WindowBuilder` trait and `set_size_constraints` method on `WindowDispatch` trait.
### Dependencies
- Upgraded to `tauri-runtime@2.0.0-beta.21`
## \[2.0.0-beta.20]
### Bug Fixes

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.0.0-beta.20"
version = "2.0.0-beta.21"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -15,7 +15,7 @@ rust-version = { workspace = true }
[dependencies]
wry = { version = "0.41", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] }
tao = { version = "0.28.1", default-features = false, features = [ "rwh_06" ] }
tauri-runtime = { version = "2.0.0-beta.20", path = "../tauri-runtime" }
tauri-runtime = { version = "2.0.0-beta.21", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.19", path = "../tauri-utils" }
raw-window-handle = "0.6"
http = "1.1"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.21]
### What's Changed
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `inner_size_constraints` method on `WindowBuilder` trait and `set_size_constraints` method on `WindowDispatch` trait.
## \[2.0.0-beta.20]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "2.0.0-beta.20"
version = "2.0.0-beta.21"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -1,5 +1,29 @@
# Changelog
## \[2.0.0-beta.25]
### New Features
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add APIs to enable setting window size constraints separately:
- Added `WindowBuilder::inner_size_constraints` and `WebviewWindowBuilder::inner_size_constraints` which can be used for setting granular constraints.
- Added `WindowSizeConstraints` struct
- Added `Window::set_size_constraints` and `WebviewWindow::set_size_constraints`
### Bug Fixes
- [`e1776946a`](https://www.github.com/tauri-apps/tauri/commit/e1776946ad034d7a6e005834a754773671d9f7ef) ([#10362](https://www.github.com/tauri-apps/tauri/pull/10362) by [@Brendonovich](https://www.github.com/tauri-apps/tauri/../../Brendonovich)) Use ` specta rc.15's `derive\` feature which fixes build issues in docs.rs.
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Apply `minWidth`, `minHieght`, `maxWidth` and `maxHeight` constraints separately, which fixes a long standing bug where these constraints were never applied unless width and height were constrained together.
### What's Changed
- [`9546548ec`](https://www.github.com/tauri-apps/tauri/commit/9546548ec0c83ba620b1bc9d1d424a7009d0b423) ([#10297](https://www.github.com/tauri-apps/tauri/pull/10297) by [@pewsheen](https://www.github.com/tauri-apps/tauri/../../pewsheen)) On macOS, set default titlebar style to `Visible` to prevent webview move out of the view.
### Dependencies
- Upgraded to `tauri-runtime-wry@2.0.0-beta.21`
- Upgraded to `tauri-runtime@2.0.0-beta.21`
## \[2.0.0-beta.24]
### New Features

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.24"
version = "2.0.0-beta.25"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -51,10 +51,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
url = "2"
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "2.0.0-beta.20", path = "../tauri-runtime" }
tauri-runtime = { version = "2.0.0-beta.21", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.19", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.19", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.20", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "2.0.0-beta.21", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"

View File

@ -1,5 +1,19 @@
# Changelog
## \[2.0.0-beta.16]
### New Features
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add APIs to enable setting window size constraints separately:
- Added `WindowSizeConstraints` interface in `window` and `webviewWindow` modules.
- Added `Window.setSizeConstraints` and `WebviewWindow.setSizeConstraints`
### Bug Fixes
- [`3c17fb64f`](https://www.github.com/tauri-apps/tauri/commit/3c17fb64fd822597d5cc16ee7e7b3f9e1023637b) ([#10277](https://www.github.com/tauri-apps/tauri/pull/10277) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `Webview.reparent` pointing to `set_webview_focus` instead of `reparent` Rust API
- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Apply `minWidth`, `minHieght`, `maxWidth` and `maxHeight` constraints separately, which fixes a long standing bug where these constraints were never applied unless width and height were constrained together.
## \[2.0.0-beta.15]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"description": "Tauri API definitions",
"funding": {
"type": "opencollective",

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.1-beta.19]
### Bug Fixes
- [`d1df6be70`](https://www.github.com/tauri-apps/tauri/commit/d1df6be701fc1cd64fd227d68041a1096386d3b5) ([#10270](https://www.github.com/tauri-apps/tauri/pull/10270) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix bundler warns about no updater-enabled targets were built for self contained updaters like app image, nsis, msi
### What's Changed
- [`9f0a5fcea`](https://www.github.com/tauri-apps/tauri/commit/9f0a5fceaced7862c8a57beba6616c21ff3b17f8) ([#10271](https://www.github.com/tauri-apps/tauri/pull/10271) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Make `NSIS_HOOK_PREINSTALL` and `NSIS_HOOK_PREUNINSTALL` run before `CheckIfAppIsRunning` (which checks if the app is running and asks the user if they want to kill the app)
## \[2.0.1-beta.18]
### New Features

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "2.0.1-beta.18"
version = "2.0.1-beta.19"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.23]
### Dependencies
- Upgraded to `tauri-bundler@2.0.1-beta.19`
## \[2.0.0-beta.22]
### New Features

View File

@ -5074,7 +5074,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.1-beta.18"
version = "2.0.1-beta.19"
dependencies = [
"anyhow",
"ar",
@ -5117,7 +5117,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-beta.22"
version = "2.0.0-beta.23"
dependencies = [
"anyhow",
"axum",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "2.0.0-beta.22"
version = "2.0.0-beta.23"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.70"
@ -48,7 +48,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.5", features = [ "derive", "env" ] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-beta.18", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.19", default-features = false, path = "../bundler" }
colored = "2.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "preserve_order" ] }

View File

@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.0.0-beta.22",
"version": "2.0.0-beta.23",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.24",
"tauri": "2.0.0-beta.25",
"tauri-build": "2.0.0-beta.19",
"tauri-plugin": "2.0.0-beta.19"
}

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.23]
### Dependencies
- Upgraded to `tauri-cli@2.0.0-beta.23`
## \[2.0.0-beta.22]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "2.0.0-beta.22",
"version": "2.0.0-beta.23",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",