Apply Version Updates From Current Changes (v1) (#8396)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-12-20 13:50:17 -03:00 committed by GitHub
parent b44e9c0fcb
commit 5966812735
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
33 changed files with 131 additions and 78 deletions

View File

@ -1,5 +0,0 @@
---
"@tauri-apps/api": "patch:bug"
---
Fix a regression where typescript could not find types when using `"moduleResolution": "node"`

View File

@ -1,5 +0,0 @@
---
"tauri-runtime-wry": patch:bug
---
Use `arboard` instead of `tao` clipboard implementation to prevent a crash.

View File

@ -1,5 +0,0 @@
---
'tauri-bundler': 'patch:enhance'
---
Check if required files/tools for bundling are outdated or mis-hashed and redownload them.

View File

@ -1,5 +0,0 @@
---
'tauri-utils': 'patch:bug'
---
Fix compile error when parsing config that includes float values.

View File

@ -1,6 +0,0 @@
---
'tauri-cli': 'patch:bug'
'@tauri-apps/cli': 'patch:bug'
---
Expand glob patterns in workspace member paths so the CLI would watch all matching pathhs.

View File

@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
On Windows, fix `open` dialog `defaultPath`, when invoked from JS, not working if the path uses forward slash (`/`)

View File

@ -1,5 +0,0 @@
---
"tauri": patch:enhance
---
Added `test::get_ipc_response`.

View File

@ -1,5 +0,0 @@
---
'tauri': 'patch:bug'
---
Fix NSIS updater failing to launch when using `basicUi` mode.

View File

@ -1,5 +0,0 @@
---
"tauri-runtime-wry": patch:bug
---
Use `Arc` instead of `Rc` to prevent crashes on macOS.

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.5.1]
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
- Upgraded to `tauri-codegen@1.4.2`
## \[1.5.0]
### What's Changed

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.5.0"
version = "1.5.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.4.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.5.0", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.4.2", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.5.2", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.15"
serde = "1"
serde_json = "1"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.4.2]
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
## \[1.4.1]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.4.1"
version = "1.4.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.5.0", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.5.2", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.4.3]
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
- Upgraded to `tauri-codegen@1.4.2`
## \[1.4.2]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.4.2"
version = "1.4.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.4.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.5.0", path = "../tauri-utils" }
tauri-codegen = { version = "1.4.2", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
[features]
custom-protocol = [ ]

View File

@ -1,5 +1,17 @@
# Changelog
## \[0.14.3]
### Bug Fixes
- [`0d0501cb`](https://www.github.com/tauri-apps/tauri/commit/0d0501cb7b5e767c51a3697a148acfe84211a7ad)([#8394](https://www.github.com/tauri-apps/tauri/pull/8394)) Use `arboard` instead of `tao` clipboard implementation to prevent a crash.
- [`b2f83f03`](https://www.github.com/tauri-apps/tauri/commit/b2f83f03a872baa91e2b6bbb22a3e7a5cd975dc0)([#8402](https://www.github.com/tauri-apps/tauri/pull/8402)) Use `Arc` instead of `Rc` to prevent crashes on macOS.
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
- Upgraded to `tauri-runtime@0.14.2`
## \[0.14.2]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.14.2"
version = "0.14.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -14,8 +14,8 @@ readme = "README.md"
[dependencies]
wry = { version = "0.24.6", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.14.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.5.0", path = "../tauri-utils" }
tauri-runtime = { version = "0.14.2", path = "../tauri-runtime" }
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"

View File

@ -1,5 +1,11 @@
# Changelog
## \[0.14.2]
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
## \[0.14.1]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.14.1"
version = "0.14.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.5.0", path = "../tauri-utils" }
tauri-utils = { version = "1.5.2", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.5.2]
### Bug Fixes
- [`9b230de7`](https://www.github.com/tauri-apps/tauri/commit/9b230de7bc6690c2733f5324d50b999af1f7a6ef)([#8407](https://www.github.com/tauri-apps/tauri/pull/8407)) Fix compile error when parsing config that includes float values.
## \[1.5.3]
### New Features

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.5.1"
version = "1.5.2"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"

View File

@ -1,5 +1,23 @@
# Changelog
## \[1.5.4]
### Enhancements
- [`3c371aa8`](https://www.github.com/tauri-apps/tauri/commit/3c371aa8ee4032998f859b570702e81e26e77c6c)([#8228](https://www.github.com/tauri-apps/tauri/pull/8228)) Added `test::get_ipc_response`.
### Bug Fixes
- [`50a3d170`](https://www.github.com/tauri-apps/tauri/commit/50a3d170f242178d41fe7e8a3adf964541f6fe9c)([#8408](https://www.github.com/tauri-apps/tauri/pull/8408)) On Windows, fix `open` dialog `defaultPath`, when invoked from JS, not working if the path uses forward slash (`/`)
- [`645e1dcc`](https://www.github.com/tauri-apps/tauri/commit/645e1dcc6e113564e2ddaacf9cb8338aed1a0bd0)([#8404](https://www.github.com/tauri-apps/tauri/pull/8404)) Fix NSIS updater failing to launch when using `basicUi` mode.
### Dependencies
- Upgraded to `tauri-runtime-wry@0.14.3`
- Upgraded to `tauri-utils@1.5.2`
- Upgraded to `tauri-runtime@0.14.2`
- Upgraded to `tauri-macros@1.4.3`
## \[1.5.3]
### Enhancements

View File

@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.5.3"
version = "1.5.4"
[package.metadata.docs.rs]
no-default-features = true
@ -58,10 +58,10 @@ url = { version = "2.3" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "0.14.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.4.2", path = "../tauri-macros" }
tauri-utils = { version = "1.5.0", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.14.2", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.14.2", path = "../tauri-runtime" }
tauri-macros = { version = "1.4.3", path = "../tauri-macros" }
tauri-utils = { version = "1.5.2", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.14.3", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.5.3]
### Bug Fixes
- [`1c582a94`](https://www.github.com/tauri-apps/tauri/commit/1c582a942e345a066b65620e4db9f688ec142bb9)([#8392](https://www.github.com/tauri-apps/tauri/pull/8392)) Fix a regression where typescript could not find types when using `"moduleResolution": "node"`
## \[1.5.2]
### Bug Fixes

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "1.5.2",
"version": "1.5.3",
"description": "Tauri API definitions",
"funding": {
"type": "opencollective",

View File

@ -1,5 +1,15 @@
# Changelog
## \[1.4.8]
### Enhancements
- [`b44e9c0f`](https://www.github.com/tauri-apps/tauri/commit/b44e9c0fcbb3f6994e38b8ef1ae18515db18ba7d)([#8431](https://www.github.com/tauri-apps/tauri/pull/8431)) Check if required files/tools for bundling are outdated or mis-hashed and redownload them.
### Dependencies
- Upgraded to `tauri-utils@1.5.2`
## \[1.4.7]
### Bug Fixes

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "1.4.7"
version = "1.4.8"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
@ -17,7 +17,7 @@ rust-version = "1.60"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
[dependencies]
tauri-utils = { version = "1.5.0", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "1.5.2", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.7"
libflate = "2.0"
anyhow = "1.0"

View File

@ -1,5 +1,16 @@
# Changelog
## \[1.5.9]
### Bug Fixes
- [`0a2175ea`](https://www.github.com/tauri-apps/tauri/commit/0a2175eabb736b2a4cd01ab682e08be0b5ebb2b9)([#8439](https://www.github.com/tauri-apps/tauri/pull/8439)) Expand glob patterns in workspace member paths so the CLI would watch all matching pathhs.
### Dependencies
- Upgraded to `tauri-bundler@1.4.8`
- Upgraded to `tauri-utils@1.5.2`
## \[1.5.8]
### Dependencies

View File

@ -3395,7 +3395,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "1.4.7"
version = "1.4.8"
dependencies = [
"anyhow",
"ar",
@ -3435,7 +3435,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.5.8"
version = "1.5.9"
dependencies = [
"anyhow",
"axum",
@ -3509,7 +3509,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "1.5.1"
version = "1.5.2"
dependencies = [
"aes-gcm",
"ctor",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.5.8"
version = "1.5.9"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.60"
@ -42,7 +42,7 @@ path = "src/main.rs"
clap_complete = "4"
clap = { version = "4.4", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.4.7", path = "../bundler", default-features = false }
tauri-bundler = { version = "1.4.8", path = "../bundler", default-features = false }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }
@ -52,7 +52,7 @@ notify-debouncer-mini = "0.4"
shared_child = "1.0"
toml_edit = "0.21"
json-patch = "1.2"
tauri-utils = { version = "1.5.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "1.5.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.8"
jsonschema = "0.17"
handlebars = "4.4"

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.5.8",
"version": "1.5.9",
"node": ">= 10.0.0"
},
"tauri": "1.5.3",
"tauri-build": "1.5.0"
"tauri": "1.5.4",
"tauri-build": "1.5.1"
}

View File

@ -1,5 +1,15 @@
# Changelog
## \[1.5.9]
### Bug Fixes
- [`0a2175ea`](https://www.github.com/tauri-apps/tauri/commit/0a2175eabb736b2a4cd01ab682e08be0b5ebb2b9)([#8439](https://www.github.com/tauri-apps/tauri/pull/8439)) Expand glob patterns in workspace member paths so the CLI would watch all matching pathhs.
### Dependencies
- Upgraded to `tauri-cli@1.5.9`
## \[1.5.8]
### Dependencies

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.5.8",
"version": "1.5.9",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",