chore(utils): add change file for #7964

This commit is contained in:
Lucas Nogueira 2023-12-19 12:48:05 -03:00
parent 30c5d86f88
commit 6cd6d3fb32
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1
24 changed files with 108 additions and 34 deletions

5
.changes/dmg-settings.md Normal file
View File

@ -0,0 +1,5 @@
---
"tauri-utils": patch:feat
---
Add bundle DMG configuration options.

View File

@ -85,6 +85,7 @@
".changes/dev-proxy-response-cache.md",
".changes/dev-proxy.md",
".changes/devicectl.md",
".changes/dmg-settings.md",
".changes/dnd-position.md",
".changes/downgrade-min-sdk-version.md",
".changes/dynamic-wry-plugin.md",

View File

@ -1,5 +1,12 @@
# Changelog
## \[2.0.0-alpha.13]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
- Upgraded to `tauri-codegen@2.0.0-alpha.12`
## \[2.0.0-alpha.12]
### Bug Fixes

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-alpha.12"
version = "2.0.0-alpha.13"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-alpha.11", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-alpha.12", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-alpha.12", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.17"
serde = "1"
serde_json = "1"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.12]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
## \[2.0.0-alpha.11]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-alpha.11"
version = "2.0.0-alpha.12"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-alpha.12", 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
## \[2.0.0-alpha.12]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
- Upgraded to `tauri-codegen@2.0.0-alpha.12`
## \[2.0.0-alpha.11]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-alpha.11"
version = "2.0.0-alpha.12"
description = "Macros for the tauri crate."
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "2.0.0-alpha.11", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-alpha.12", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-alpha.12", path = "../tauri-utils" }
[features]
custom-protocol = [ ]

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.0-alpha.8]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
- Upgraded to `tauri-runtime@1.0.0-alpha.7`
## \[1.0.0-alpha.7]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.7"
version = "1.0.0-alpha.8"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -15,8 +15,8 @@ rust-version = { workspace = true }
[dependencies]
wry = { version = "0.35", default-features = false, features = [ "file-drop", "protocol", "os-webview" ] }
tao = { version = "0.24", default-features = false, features = [ "rwh_05" ] }
tauri-runtime = { version = "1.0.0-alpha.6", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils" }
tauri-runtime = { version = "1.0.0-alpha.7", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.12", path = "../tauri-utils" }
raw-window-handle = "0.5"
http = "0.2"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.0.0-alpha.7]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
## \[1.0.0-alpha.6]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "1.0.0-alpha.6"
version = "1.0.0-alpha.7"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -29,7 +29,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-alpha.12", path = "../tauri-utils" }
http = "0.2.4"
raw-window-handle = "0.5"
url = { version = "2" }

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.12]
### New Features
- [\`\`](https://www.github.com/tauri-apps/tauri/commit/undefined) Add bundle DMG configuration options.
## \[2.0.0-alpha.11]
### Breaking Changes

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "2.0.0-alpha.11"
version = "2.0.0-alpha.12"
description = "Utilities for Tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-alpha.20]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
- Upgraded to `tauri-runtime@1.0.0-alpha.7`
- Upgraded to `tauri-runtime-wry@1.0.0-alpha.8`
- Upgraded to `tauri-macros@2.0.0-alpha.12`
- Upgraded to `tauri-build@2.0.0-alpha.13`
## \[2.0.0-alpha.19]
### New Features

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-alpha.19"
version = "2.0.0-alpha.20"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -49,10 +49,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "1.0.0-alpha.6", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.11", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.11", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.7", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "1.0.0-alpha.7", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.12", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.12", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.8", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
@ -108,7 +108,7 @@ swift-rs = "1.0.6"
[build-dependencies]
heck = "0.4"
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.12" }
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.13" }
[dev-dependencies]
proptest = "1.4.0"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.13]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
## \[2.0.0-alpha.12]
### Bug Fixes

View File

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

View File

@ -1,5 +1,12 @@
# Changelog
## \[2.0.0-alpha.20]
### Dependencies
- Upgraded to `tauri-utils@2.0.0-alpha.12`
- Upgraded to `tauri-bundler@2.0.0-alpha.13`
## \[2.0.0-alpha.19]
### Enhancements

10
tooling/cli/Cargo.lock generated
View File

@ -4015,7 +4015,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "2.0.0-alpha.12"
version = "2.0.0-alpha.13"
dependencies = [
"anyhow",
"ar",
@ -4042,7 +4042,7 @@ dependencies = [
"strsim",
"tar",
"tauri-icns",
"tauri-utils 2.0.0-alpha.11",
"tauri-utils 2.0.0-alpha.12",
"tempfile",
"thiserror",
"time",
@ -4056,7 +4056,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "2.0.0-alpha.19"
version = "2.0.0-alpha.20"
dependencies = [
"anyhow",
"axum",
@ -4106,7 +4106,7 @@ dependencies = [
"tauri-bundler",
"tauri-icns",
"tauri-utils 1.5.0",
"tauri-utils 2.0.0-alpha.11",
"tauri-utils 2.0.0-alpha.12",
"thiserror",
"tokio",
"toml 0.8.8",
@ -4172,7 +4172,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "2.0.0-alpha.11"
version = "2.0.0-alpha.12"
dependencies = [
"aes-gcm",
"ctor 0.2.5",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "2.0.0-alpha.19"
version = "2.0.0-alpha.20"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.70"
@ -49,7 +49,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.4", features = [ "derive", "env" ] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.0-alpha.12", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.0-alpha.13", default-features = false, path = "../bundler" }
colored = "2.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
@ -59,7 +59,7 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = "0.20"
json-patch = "1.2"
tauri-utils = { version = "2.0.0-alpha.11", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "2.0.0-alpha.12", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.8"
jsonschema = "0.17"

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "2.0.0-alpha.19",
"version": "2.0.0-alpha.20",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-alpha.19",
"tauri-build": "2.0.0-alpha.12"
"tauri": "2.0.0-alpha.20",
"tauri-build": "2.0.0-alpha.13"
}

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.20]
### Dependencies
- Upgraded to `tauri-cli@2.0.0-alpha.20`
## \[2.0.0-alpha.19]
### Dependencies

View File

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