Ver código fonte

Apply Version Updates From Current Changes (#4117)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 3 anos atrás
pai
commit
393c774dfd

+ 14 - 0
.changes/pre.json

@@ -2,6 +2,7 @@
   "tag": "rc",
   "changes": [
     ".changes/about-metadata-into-string.md",
+    ".changes/add-app-get-matches-helper.md",
     ".changes/allow-conf-gitignore.md",
     ".changes/allowlist-clipboard.md",
     ".changes/allowlist-dialog.md",
@@ -57,6 +58,7 @@
     ".changes/bundler-msi-init-installdir.md",
     ".changes/bundler-print-cfg.md",
     ".changes/bundler-remove-verbose-option.md",
+    ".changes/bundler-tsp-bool.md",
     ".changes/callback-validation.md",
     ".changes/clap-3.0.md",
     ".changes/clap-beta.4-core.md",
@@ -135,6 +137,7 @@
     ".changes/extract-files-breaking-change.md",
     ".changes/extract-performance.md",
     ".changes/file-drop-percent-decode.md",
+    ".changes/find-icon.md",
     ".changes/fix-api-timeout-type.md",
     ".changes/fix-asset-protocol-panicking.md",
     ".changes/fix-asset-protocol-validation.md",
@@ -164,6 +167,7 @@
     ".changes/fix-focus-blur-events-wry.md",
     ".changes/fix-focus-blur-events.md",
     ".changes/fix-form-serialization.md",
+    ".changes/fix-glob-resource-wix.md",
     ".changes/fix-inner-size.md",
     ".changes/fix-linux-resource-path.md",
     ".changes/fix-mac-notification-appid.md",
@@ -179,6 +183,7 @@
     ".changes/fix-path-scope-validation.md",
     ".changes/fix-ready-check.md",
     ".changes/fix-resize-with-devtools.md",
+    ".changes/fix-resource-windows.md",
     ".changes/fix-runtime-traits-requirements.md",
     ".changes/fix-safe-block-on.md",
     ".changes/fix-set-size-freeze.md",
@@ -191,12 +196,18 @@
     ".changes/fix-window-builder-export.md",
     ".changes/fix-window-created-listen.md",
     ".changes/fix-window-creation-deadlock.md",
+    ".changes/fix-window-creation-from-ipc-deadlock.md",
+    ".changes/fix-window-file-drop-enabled.md",
     ".changes/fix-window-label-api.md",
+    ".changes/fix-window-remote-url.md",
     ".changes/fix-window-specific-event-system.md",
     ".changes/fix-windows-downgrades.md",
     ".changes/fix-windows-exe-version.md",
     ".changes/fix-windows-resources.md",
     ".changes/fix-windows-sidecar.md",
+    ".changes/fix-windows-sign-product-name.md",
+    ".changes/fix-windows-upgrade.md",
+    ".changes/fix-wix-reinstallmode.md",
     ".changes/fix-wry-window-destroyed-event.md",
     ".changes/fix-yarn-pnp.md",
     ".changes/fixed-webview2-runtime.md",
@@ -237,6 +248,7 @@
     ".changes/menuitem-about-refactor.md",
     ".changes/minimum-mac-version.md",
     ".changes/misign-update.md",
+    ".changes/mjs-mime-type.md",
     ".changes/mock-functions.md",
     ".changes/msi-run-from-install-path.md",
     ".changes/mutable-callbacks.md",
@@ -278,6 +290,7 @@
     ".changes/remove-run-event-exit-requested-window-label.md",
     ".changes/remove-tauricon.md",
     ".changes/remove-window-default.md",
+    ".changes/resolve-resource.md",
     ".changes/rpc-mod-refactor.md",
     ".changes/run-on-main-thread.md",
     ".changes/runtime-any-thread.md",
@@ -300,6 +313,7 @@
     ".changes/sidecar-allowlist.md",
     ".changes/sidecar-runtime-rename.md",
     ".changes/sidecar-scope-improvement.md",
+    ".changes/silent-windows-update.md",
     ".changes/simplify-setup-requirement-error.md",
     ".changes/simplify-window-creation.md",
     ".changes/simplify-window-label-types.md",

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.9]
+
+- Search `tauri.conf.json > tauri > bundle > icons` for a `.ico` file for the window icon instead of simple default `icons/icon.ico` when `WindowsAttributes::window_icon_path` is not set.
+  - [bad85a1f](https://www.github.com/tauri-apps/tauri/commit/bad85a1f11da03421401080531275ba201480cd1) feat(build): find .ico in config instead of default `icons/icon.ico` ([#4115](https://www.github.com/tauri-apps/tauri/pull/4115)) on 2022-05-13
+
 ## \[1.0.0-rc.8]
 
 - Properly set file version information for the Windows executable.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "1.0.0-rc.8"
+version = "1.0.0-rc.9"
 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.0.0-rc.6", path = "../tauri-codegen", optional = true }
-tauri-utils = { version = "1.0.0-rc.6", path = "../tauri-utils", features = [ "build", "resources" ] }
+tauri-codegen = { version = "1.0.0-rc.7", path = "../tauri-codegen", optional = true }
+tauri-utils = { version = "1.0.0-rc.7", path = "../tauri-utils", features = [ "build", "resources" ] }
 cargo_toml = "0.11"
 serde_json = "1"
 

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.7]
+
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - Bumped due to a bump in tauri-utils.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.6]
 
 - The `dangerous_allow_asset_csp_modification` configuration value has been changed to allow a list of CSP directives to disable.

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

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

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.7]
+
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - Bumped due to a bump in tauri-utils.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.6]
 
 - Added `$schema` support to `tauri.conf.json`.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macros"
-version = "1.0.0-rc.6"
+version = "1.0.0-rc.7"
 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.0.0-rc.6", default-features = false, path = "../tauri-codegen" }
-tauri-utils = { version = "1.0.0-rc.6", path = "../tauri-utils" }
+tauri-codegen = { version = "1.0.0-rc.7", default-features = false, path = "../tauri-codegen" }
+tauri-utils = { version = "1.0.0-rc.7", path = "../tauri-utils" }
 
 [features]
 custom-protocol = [ ]

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[0.5.2]
+
+- Use the event loop proxy to create a window so it doesn't deadlock on Windows.
+  - [61e37652](https://www.github.com/tauri-apps/tauri/commit/61e37652b931520424d6a93a134e67893703d992) fix(core): deadlock when creating window from IPC handler, closes [#4121](https://www.github.com/tauri-apps/tauri/pull/4121) ([#4123](https://www.github.com/tauri-apps/tauri/pull/4123)) on 2022-05-13
+
 ## \[0.5.1]
 
 - Added the `plugin` method to the `Wry` runtime, allowing extensions to the event loop.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "0.5.1"
+version = "0.5.2"
 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.16.2", default-features = false, features = [ "file-drop", "protocol" ] }
-tauri-runtime = { version = "0.5.0", path = "../tauri-runtime" }
-tauri-utils = { version = "1.0.0-rc.6", path = "../tauri-utils" }
+tauri-runtime = { version = "0.5.1", path = "../tauri-runtime" }
+tauri-utils = { version = "1.0.0-rc.7", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 rand = "0.8"
 

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[0.5.1]
+
+- Fix `.mjs` not being recognised as a file extension for JavaScript files (`text/javascript`).
+  - [45c45253](https://www.github.com/tauri-apps/tauri/commit/45c45253866ce0de317a6a547af3ea0434d4bcac) fix: add mjs mime type (fix: [#4098](https://www.github.com/tauri-apps/tauri/pull/4098)) ([#4108](https://www.github.com/tauri-apps/tauri/pull/4108)) on 2022-05-13
+
 ## \[0.5.0]
 
 - Expose methods to access the underlying native handles of the webview.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime"
-version = "0.5.0"
+version = "0.5.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.0.0-rc.6", path = "../tauri-utils" }
+tauri-utils = { version = "1.0.0-rc.7", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 http = "0.2.4"
 http-range = "0.1.4"

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.7]
+
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.6]
 
 - Added `$schema` support to `tauri.conf.json`.

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

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

+ 15 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,20 @@
 # Changelog
 
+## \[1.0.0-rc.11]
+
+- Added the `App::get_cli_matches` helper function.
+  - [617f1144](https://www.github.com/tauri-apps/tauri/commit/617f1144f3f5c4a88e229ff410a511aa72795eef) feat(core): add `App::get_cli_matches` helper ref [#4145](https://www.github.com/tauri-apps/tauri/pull/4145) on 2022-05-17
+- Fixes `fileDropEnabled` option not working.
+  - [706fcbd3](https://www.github.com/tauri-apps/tauri/commit/706fcbd39c9c08f58da12f874199bd0c06016fb2) fix(core): fileDropEnabled option is not working when creating a new WebviewWindow ([#4146](https://www.github.com/tauri-apps/tauri/pull/4146)) on 2022-05-18
+- Prepare window icon and menu even when loading remote URLs. Previously it was behind a `is local URL?` condition.
+  - [25aa4347](https://www.github.com/tauri-apps/tauri/commit/25aa4347b3a85c66d445e09f864b7fe6c140a0f9) fix(core): prepare window icon and menu on remote URLs, closes [#4131](https://www.github.com/tauri-apps/tauri/pull/4131) ([#4140](https://www.github.com/tauri-apps/tauri/pull/4140)) on 2022-05-16
+- Fix `.mjs` not being recognised as a file extension for JavaScript files (`text/javascript`).
+  - [45c45253](https://www.github.com/tauri-apps/tauri/commit/45c45253866ce0de317a6a547af3ea0434d4bcac) fix: add mjs mime type (fix: [#4098](https://www.github.com/tauri-apps/tauri/pull/4098)) ([#4108](https://www.github.com/tauri-apps/tauri/pull/4108)) on 2022-05-13
+- Added `PathResolver::resolve_resource` API.
+  - [e35aaebc](https://www.github.com/tauri-apps/tauri/commit/e35aaebc309f5796cf6f380d1ac7d5a8094b9033) feat(core): add `PathResolver::resolve_resource` API ([#4116](https://www.github.com/tauri-apps/tauri/pull/4116)) on 2022-05-13
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.10]
 
 - Update wry to 0.16.2 and webkit2gtk to 0.18.0.

+ 5 - 5
core/tauri/Cargo.toml

@@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
 name = "tauri"
 readme = "README.md"
 repository = "https://github.com/tauri-apps/tauri"
-version = "1.0.0-rc.10"
+version = "1.0.0-rc.11"
 
 [package.metadata.docs.rs]
 no-default-features = true
@@ -55,10 +55,10 @@ url = { version = "2.2" }
 anyhow = "1.0"
 thiserror = "1.0"
 once_cell = "1.10"
-tauri-runtime = { version = "0.5.0", path = "../tauri-runtime" }
-tauri-macros = { version = "1.0.0-rc.6", path = "../tauri-macros" }
-tauri-utils = { version = "1.0.0-rc.6", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "0.5.1", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime = { version = "0.5.1", path = "../tauri-runtime" }
+tauri-macros = { version = "1.0.0-rc.7", path = "../tauri-macros" }
+tauri-utils = { version = "1.0.0-rc.7", features = [ "resources" ], path = "../tauri-utils" }
+tauri-runtime-wry = { version = "0.5.2", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 semver = "1.0"
 serde_repr = "0.1"

+ 17 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,22 @@
 # Changelog
 
+## \[1.0.0-rc.7]
+
+- Change `tsp` value from `Option<bool>` to `bool`.
+  - [29d8e768](https://www.github.com/tauri-apps/tauri/commit/29d8e768aa0b52e1997c0f5c9e447b80eff47b93) feat(config): adjust schema for documentation website, closes [#4139](https://www.github.com/tauri-apps/tauri/pull/4139) ([#4142](https://www.github.com/tauri-apps/tauri/pull/4142)) on 2022-05-17
+- Fixes processing of resources with glob patterns when there are nested directories on Windows.
+  - [3e702cf8](https://www.github.com/tauri-apps/tauri/commit/3e702cf8b15762cdca43c8d7ff6f6e8ee9670244) fix(bundler): ignore duplicated files in resource iter, closes [#4126](https://www.github.com/tauri-apps/tauri/pull/4126) ([#4129](https://www.github.com/tauri-apps/tauri/pull/4129)) on 2022-05-15
+- Fixes resource bundling on Windows when the resource path includes root or parent directory components.
+  - [787ea09a](https://www.github.com/tauri-apps/tauri/commit/787ea09adc40644b89926e2b629261065141d16c) fix: generate windows resource directories using resource_relpath, closes [#4087](https://www.github.com/tauri-apps/tauri/pull/4087). ([#4111](https://www.github.com/tauri-apps/tauri/pull/4111)) on 2022-05-13
+- Set the application name when signing the Windows MSI.
+  - [8e1daad1](https://www.github.com/tauri-apps/tauri/commit/8e1daad1537e93c6a969c03328b8502b92bf5b89) fix(bundler): set app name when signing MSI, closes [#3945](https://www.github.com/tauri-apps/tauri/pull/3945) ([#3950](https://www.github.com/tauri-apps/tauri/pull/3950)) on 2022-05-17
+- Change WiX MajorUpgrade element's `Schedule` to `afterInstallExecute` to prevent removal of existing configuration such as the executable's pin to taskbar.
+  - [d965b921](https://www.github.com/tauri-apps/tauri/commit/d965b92174a1e6a01fc1a080254402d52145af1e) fix(bundler): prevent removal of `pin to taskbar` on Windows ([#4144](https://www.github.com/tauri-apps/tauri/pull/4144)) on 2022-05-17
+- Change the MSI reinstall mode so it only reinstall missing or different version files.
+  - [1948ae53](https://www.github.com/tauri-apps/tauri/commit/1948ae53fdcd0ef99ef302066792d779a62c5065) fix(bundler): only reinstall missing or != version files, closes [#4122](https://www.github.com/tauri-apps/tauri/pull/4122) ([#4125](https://www.github.com/tauri-apps/tauri/pull/4125)) on 2022-05-15
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.6]
 
 - Remove `Settings::verbose` option. You may now bring your own `log` frontend to receive logging output from the bundler while remaining in control of verbosity and formatting.

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "1.0.0-rc.6"
+version = "1.0.0-rc.7"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy"
@@ -22,7 +22,7 @@ exclude = [
 ]
 
 [dependencies]
-tauri-utils = { version = "1.0.0-rc.6", path = "../../core/tauri-utils", features = [ "resources" ] }
+tauri-utils = { version = "1.0.0-rc.7", path = "../../core/tauri-utils", features = [ "resources" ] }
 icns = "0.3"
 image = "0.24.2"
 libflate = "1.2"

+ 5 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.11]
+
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.10]
 
 - Resolve binary file extension from target triple instead of compile-time checks to allow cross compilation.

+ 3 - 3
tooling/cli/Cargo.lock

@@ -2700,7 +2700,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "1.0.0-rc.6"
+version = "1.0.0-rc.7"
 dependencies = [
  "anyhow",
  "ar",
@@ -2735,7 +2735,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.0.0-rc.10"
+version = "1.0.0-rc.11"
 dependencies = [
  "anyhow",
  "base64",
@@ -2792,7 +2792,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "1.0.0-rc.6"
+version = "1.0.0-rc.7"
 dependencies = [
  "aes-gcm",
  "ctor",

+ 3 - 3
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "1.0.0-rc.10"
+version = "1.0.0-rc.11"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.57"
@@ -30,7 +30,7 @@ path = "src/main.rs"
 [dependencies]
 clap = { version = "3.1", features = [ "derive" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "1.0.0-rc.6", path = "../bundler" }
+tauri-bundler = { version = "1.0.0-rc.7", path = "../bundler" }
 colored = "2.0"
 once_cell = "1.10"
 serde = { version = "1.0", features = [ "derive" ] }
@@ -40,7 +40,7 @@ notify = "4.0"
 shared_child = "1.0"
 toml_edit = "0.14"
 json-patch = "0.2"
-tauri-utils = { version = "1.0.0-rc.6", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
+tauri-utils = { version = "1.0.0-rc.7", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
 toml = "0.5"
 valico = "3.6"
 handlebars = "4.3"

+ 3 - 3
tooling/cli/metadata.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "1.0.0-rc.10",
+    "version": "1.0.0-rc.11",
     "node": ">= 10.0.0"
   },
-  "tauri": "1.0.0-rc.10",
-  "tauri-build": "1.0.0-rc.8"
+  "tauri": "1.0.0-rc.11",
+  "tauri-build": "1.0.0-rc.9"
 }

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.11]
+
+- Allow configuring the display options for the MSI execution allowing quieter updates.
+  - [9f2c3413](https://www.github.com/tauri-apps/tauri/commit/9f2c34131952ea83c3f8e383bc3cec7e1450429f) feat(core): configure msiexec display options, closes [#3951](https://www.github.com/tauri-apps/tauri/pull/3951) ([#4061](https://www.github.com/tauri-apps/tauri/pull/4061)) on 2022-05-15
+
 ## \[1.0.0-rc.10]
 
 - Resolve binary file extension from target triple instead of compile-time checks to allow cross compilation.

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

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "1.0.0-rc.10",
+  "version": "1.0.0-rc.11",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",