瀏覽代碼

chore(utils): add change file for #7964

Lucas Nogueira 1 年之前
父節點
當前提交
6cd6d3fb32

+ 5 - 0
.changes/dmg-settings.md

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

+ 1 - 0
.changes/pre.json

@@ -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",

+ 7 - 0
core/tauri-build/CHANGELOG.md

@@ -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

+ 3 - 3
core/tauri-build/Cargo.toml

@@ -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"

+ 6 - 0
core/tauri-codegen/CHANGELOG.md

@@ -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

+ 2 - 2
core/tauri-codegen/Cargo.toml

@@ -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" ] }

+ 7 - 0
core/tauri-macros/CHANGELOG.md

@@ -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

+ 3 - 3
core/tauri-macros/Cargo.toml

@@ -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 = [ ]

+ 7 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -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

+ 3 - 3
core/tauri-runtime-wry/Cargo.toml

@@ -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"
 

+ 6 - 0
core/tauri-runtime/CHANGELOG.md

@@ -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

+ 2 - 2
core/tauri-runtime/Cargo.toml

@@ -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" }

+ 6 - 0
core/tauri-utils/CHANGELOG.md

@@ -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

+ 1 - 1
core/tauri-utils/Cargo.toml

@@ -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"

+ 10 - 0
core/tauri/CHANGELOG.md

@@ -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

+ 6 - 6
core/tauri/Cargo.toml

@@ -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"

+ 6 - 0
tooling/bundler/CHANGELOG.md

@@ -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

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -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"

+ 7 - 0
tooling/cli/CHANGELOG.md

@@ -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

+ 5 - 5
tooling/cli/Cargo.lock

@@ -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",

+ 3 - 3
tooling/cli/Cargo.toml

@@ -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"

+ 3 - 3
tooling/cli/metadata-v2.json

@@ -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"
 }

+ 6 - 0
tooling/cli/node/CHANGELOG.md

@@ -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

+ 1 - 1
tooling/cli/node/package.json

@@ -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",