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-response-cache.md",
".changes/dev-proxy.md", ".changes/dev-proxy.md",
".changes/devicectl.md", ".changes/devicectl.md",
".changes/dmg-settings.md",
".changes/dnd-position.md", ".changes/dnd-position.md",
".changes/downgrade-min-sdk-version.md", ".changes/downgrade-min-sdk-version.md",
".changes/dynamic-wry-plugin.md", ".changes/dynamic-wry-plugin.md",

View File

@ -1,5 +1,12 @@
# Changelog # 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] ## \[2.0.0-alpha.12]
### Bug Fixes ### Bug Fixes

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tauri-codegen" 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`" description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = [ "CHANGELOG.md", "/target" ] exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md" readme = "README.md"
@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1" quote = "1"
serde = { version = "1", features = [ "derive" ] } serde = { version = "1", features = [ "derive" ] }
serde_json = "1" 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" thiserror = "1"
walkdir = "2" walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] } brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

View File

@ -1,5 +1,12 @@
# Changelog # 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] ## \[2.0.0-alpha.11]
### Dependencies ### Dependencies

View File

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

View File

@ -1,5 +1,12 @@
# Changelog # 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] ## \[1.0.0-alpha.7]
### Dependencies ### Dependencies

View File

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

View File

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

View File

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

View File

@ -1,5 +1,11 @@
# Changelog # 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] ## \[2.0.0-alpha.11]
### Breaking Changes ### Breaking Changes

View File

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

View File

@ -1,5 +1,15 @@
# Changelog # 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] ## \[2.0.0-alpha.19]
### New Features ### New Features

View File

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

View File

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

View File

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

View File

@ -1,5 +1,12 @@
# Changelog # 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] ## \[2.0.0-alpha.19]
### Enhancements ### Enhancements

10
tooling/cli/Cargo.lock generated
View File

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

View File

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

View File

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

View File

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

View File

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