Apply Version Updates From Current Changes (#5644)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-11-24 12:52:54 -03:00 committed by GitHub
parent d710946064
commit 527bd9feea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 94 additions and 60 deletions

View File

@ -1,5 +0,0 @@
---
"tauri-utils": "patch"
---
Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.

View File

@ -1,6 +0,0 @@
---
"cli.rs": patch
"cli.js": patch
---
Fixes injection of Cargo features defined in the configuration file.

View File

@ -1,5 +0,0 @@
---
"tauri": patch
---
Fixes a double serialization on the IPC.

View File

@ -1,5 +0,0 @@
---
"tauri": patch
---
Moved the custom protocol headers support on Linux behind the `linux-protocol-headers` Cargo feature to enhance compatibility with older Linux distributions.

View File

@ -1,5 +0,0 @@
---
"tauri": patch
---
Fixes definition of `impl HasRawDisplayHandle` for `AppHandle` and `App`.

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.2.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[1.2.0]
- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.2.0"
version = "1.2.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.2.0", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.2.0", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.2.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.2.1", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.13"
serde_json = "1"
heck = "0.4"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.2.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[1.2.0]
- Properly serialize HTML template tags.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.2.0"
version = "1.2.1"
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.2.0", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.2.1", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.2.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[1.2.0]
- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.2.0"
version = "1.2.1"
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 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.2.0", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }
tauri-codegen = { version = "1.2.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.2.1", path = "../tauri-utils" }
[features]
custom-protocol = [ ]

View File

@ -1,5 +1,11 @@
# Changelog
## \[0.12.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[0.12.0]
- Add `accept_first_mouse` option for macOS windows.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.12.0"
version = "0.12.1"
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.22.4", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.12.0", path = "../tauri-runtime" }
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }
tauri-runtime = { version = "0.12.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.2.1", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"
@ -47,4 +47,4 @@ macos-private-api = [
objc-exception = [ "wry/objc-exception" ]
global-shortcut = [ "tauri-runtime/global-shortcut" ]
clipboard = [ "tauri-runtime/clipboard" ]
linux-headers = ["wry/linux-headers"]
linux-headers = [ "wry/linux-headers" ]

View File

@ -1,5 +1,11 @@
# Changelog
## \[0.12.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[0.12.0]
- Readd the option to create an unfocused window via the `focused` method. The `focus` function has been deprecated.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.12.0"
version = "0.12.1"
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.2.0", path = "../tauri-utils" }
tauri-utils = { version = "1.2.1", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.2.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[1.2.0]
- Validate `package > productName` in the tauri config and produce errors if it contains one of the following characters `/\:*?\"<>|`

View File

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

View File

@ -1,5 +1,14 @@
# Changelog
## \[1.2.1]
- Fixes a double serialization on the IPC.
- [677838cc](https://www.github.com/tauri-apps/tauri/commit/677838ccfadfdf37039be53bfad666bbe1dab8c3) fix double serialize on invoke ([#5639](https://www.github.com/tauri-apps/tauri/pull/5639)) on 2022-11-20
- Moved the custom protocol headers support on Linux behind the `linux-protocol-headers` Cargo feature to enhance compatibility with older Linux distributions.
- [d7109460](https://www.github.com/tauri-apps/tauri/commit/d710946064c47fa488eca01a62403e70b2b5ff87) refactor: move Linux custom protocol headers support behind feature flag ([#5683](https://www.github.com/tauri-apps/tauri/pull/5683)) on 2022-11-24
- Fixes definition of `impl HasRawDisplayHandle` for `AppHandle` and `App`.
- [ed43ff32](https://www.github.com/tauri-apps/tauri/commit/ed43ff324330d1bd9c042a53a6636dfc7d97b410) fix(tauri): add missing generics on AppHandle and App ([#5642](https://www.github.com/tauri-apps/tauri/pull/5642)) on 2022-11-17
## \[1.2.0]
- Add `accept_first_mouse` option for macOS windows.

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.2.0"
version = "1.2.1"
[package.metadata.docs.rs]
no-default-features = true
@ -49,10 +49,10 @@ url = { version = "2.3" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "0.12.0", path = "../tauri-runtime" }
tauri-macros = { version = "1.2.0", path = "../tauri-macros" }
tauri-utils = { version = "1.2.0", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.12.0", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.12.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.2.1", path = "../tauri-macros" }
tauri-utils = { version = "1.2.1", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.12.1", 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.1.1]
- Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
- Bumped due to a bump in tauri-utils.
- [bb251087](https://www.github.com/tauri-apps/tauri/commit/bb2510876d0bdff736d36bf3a465cdbe4ad2b90c) fix(core): extend allowlist with `app`'s allowlist, closes [#5650](https://www.github.com/tauri-apps/tauri/pull/5650) ([#5652](https://www.github.com/tauri-apps/tauri/pull/5652)) on 2022-11-18
## \[1.1.0]
- Use correct code `ja-JP` for japanese instead of `jp-JP`.

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "1.1.0"
version = "1.1.1"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
@ -17,7 +17,7 @@ rust-version = "1.59"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
[dependencies]
tauri-utils = { version = "1.2.0", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "1.2.1", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.4"
libflate = "1.2"
anyhow = "1.0"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.2.1]
- Fixes injection of Cargo features defined in the configuration file.
- [1ecaeb29](https://www.github.com/tauri-apps/tauri/commit/1ecaeb29aa798f591f6488dc6c3a7a8d22f6073e) fix(cli): inject config feature flags when features arg is not provided on 2022-11-18
## \[1.2.0]
- Keep `tauri dev` watcher alive when the configuration is invalid.

10
tooling/cli/Cargo.lock generated
View File

@ -104,9 +104,9 @@ dependencies = [
[[package]]
name = "attohttpc"
version = "0.23.1"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12489f6c5525b06c7e5d689f0efeeae5b9efc38824478e854da9f4f33f040cf5"
checksum = "b85f766c20e6ae766956f7a2fcc4e0931e79a7e1f48b29132b5d647021114914"
dependencies = [
"flate2",
"http",
@ -3084,7 +3084,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "1.1.0"
version = "1.1.1"
dependencies = [
"anyhow",
"ar",
@ -3121,7 +3121,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.2.0"
version = "1.2.1"
dependencies = [
"anyhow",
"axum",
@ -3190,7 +3190,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "1.2.0"
version = "1.2.1"
dependencies = [
"aes-gcm",
"ctor",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.2.0"
version = "1.2.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.59"
@ -41,7 +41,7 @@ path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.1.0", path = "../bundler" }
tauri-bundler = { version = "1.1.1", path = "../bundler" }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }
@ -51,7 +51,7 @@ notify-debouncer-mini = "0.2"
shared_child = "1.0"
toml_edit = "0.14"
json-patch = "0.2"
tauri-utils = { version = "1.2.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "1.2.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.5"
jsonschema = "0.16"
handlebars = "4.3"

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.2.0",
"version": "1.2.1",
"node": ">= 10.0.0"
},
"tauri": "1.2.0",
"tauri-build": "1.2.0"
"tauri": "1.2.1",
"tauri-build": "1.2.1"
}

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.2.1]
- Fixes injection of Cargo features defined in the configuration file.
- [1ecaeb29](https://www.github.com/tauri-apps/tauri/commit/1ecaeb29aa798f591f6488dc6c3a7a8d22f6073e) fix(cli): inject config feature flags when features arg is not provided on 2022-11-18
## \[1.2.0]
- Detect JSON5 and TOML configuration files in the dev watcher.

View File

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