Browse Source

Apply Version Updates From Current Changes (#3414)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 3 years ago
parent
commit
d24045e884

+ 3 - 0
.changes/pre.json

@@ -5,6 +5,7 @@
     ".changes/allowlist-dialog.md",
     ".changes/allowlist-process.md",
     ".changes/allowlist-window.md",
+    ".changes/always-rebuilding.md",
     ".changes/api-WebviewWindow-fileDropEnabled.md",
     ".changes/api-add-log-dir.md",
     ".changes/api-change-events.md",
@@ -63,6 +64,7 @@
     ".changes/csp-nonces.md",
     ".changes/cta-add-empty-description-for-rust-dominator.md",
     ".changes/cta-ci-compatible.md",
+    ".changes/cta-cli-install.md",
     ".changes/cta-crash.md",
     ".changes/cta-react-disable-open-browser.md",
     ".changes/cta-solid-recipe.md",
@@ -82,6 +84,7 @@
     ".changes/fix-close-requested-js-event.md",
     ".changes/fix-deadlock-create-window-from-menu.md",
     ".changes/fix-deadlock-path-iter.md",
+    ".changes/fix-default-freeze-prototype.md",
     ".changes/fix-dialog-default-path.md",
     ".changes/fix-focus-blur-events-wry.md",
     ".changes/fix-focus-blur-events.md",

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

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.1]
+
+- Remove `cargo:rerun-if-changed` check for non-existent file that caused projects to *always* rebuild.
+  - [65287cd6](https://www.github.com/tauri-apps/tauri/commit/65287cd6148feeba91df86217b261770fed34608) remove non-existent cargo rerun check ([#3412](https://www.github.com/tauri-apps/tauri/pull/3412)) on 2022-02-11
+
 ## \[1.0.0-rc.0]
 
 - Allow user to specify windows sdk path in build.rs.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.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.0.0-rc.0", path = "../tauri-codegen", optional = true }
-tauri-utils = { version = "1.0.0-rc.0", path = "../tauri-utils", features = [ "build", "resources" ] }
+tauri-codegen = { version = "1.0.0-rc.1", path = "../tauri-codegen", optional = true }
+tauri-utils = { version = "1.0.0-rc.1", 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.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.0]
 
 - Apply `nonce` to `script` and `style` tags and set them on the `CSP` (`script-src` and `style-src` fetch directives).

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-codegen"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -20,7 +20,7 @@ proc-macro2 = "1"
 quote = "1"
 serde = { version = "1", features = [ "derive" ] }
 serde_json = "1"
-tauri-utils = { version = "1.0.0-rc.0", path = "../tauri-utils", features = [ "build" ] }
+tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils", features = [ "build" ] }
 thiserror = "1"
 walkdir = "2"
 zstd = { version = "0.10", optional = true }

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.0]
 
 - Adds support for using JSON5 format for the `tauri.conf.json` file, along with also supporting the `.json5` extension.

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

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

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[0.3.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[0.3.0]
 
 - Fix `window.center` panic when window size is bigger than screen size.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "0.3.0"
+version = "0.3.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.13.1", default-features = false, features = [ "file-drop", "protocol" ] }
-tauri-runtime = { version = "0.3.0", path = "../tauri-runtime" }
-tauri-utils = { version = "1.0.0-rc.0", path = "../tauri-utils" }
+tauri-runtime = { version = "0.3.1", path = "../tauri-runtime" }
+tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
 uuid = { version = "0.8.2", features = [ "v4" ] }
 infer = "0.4"
 

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[0.3.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[0.3.0]
 
 - Replace `WindowBuilder`'s `has_menu` with `get_menu`.

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

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime"
-version = "0.3.0"
+version = "0.3.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.0", path = "../tauri-utils" }
+tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
 uuid = { version = "0.8.2", 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.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.0]
 
 - The `allowlist` configuration now includes a `clipboard` object, controlling the exposure of the `writeText` and `readText` APIs.

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

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

+ 5 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.0]
 
 - The dialog allowlist now includes flags for the `message`, `ask` and `confirm` APIs.

+ 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.0"
+version = "1.0.0-rc.1"
 
 [package.metadata.docs.rs]
 default-features = false
@@ -52,10 +52,10 @@ uuid = { version = "0.8", features = [ "v4" ] }
 url = { version = "2.2" }
 thiserror = "1.0"
 once_cell = "1.9"
-tauri-runtime = { version = "0.3.0", path = "../tauri-runtime" }
-tauri-macros = { version = "1.0.0-rc.0", path = "../tauri-macros" }
-tauri-utils = { version = "1.0.0-rc.0", path = "../tauri-utils" }
-tauri-runtime-wry = { version = "0.3.0", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime = { version = "0.3.1", path = "../tauri-runtime" }
+tauri-macros = { version = "1.0.0-rc.1", path = "../tauri-macros" }
+tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
+tauri-runtime-wry = { version = "0.3.1", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 semver = "1.0"
 serde_repr = "0.1"

+ 6 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.1]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.0]
 
 - Provide a provider short name for macOS app notarization if your Apple developer account is connected to more than one team.

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 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.0", path = "../../core/tauri-utils", features = [ "resources" ] }
+tauri-utils = { version = "1.0.0-rc.1", path = "../../core/tauri-utils", features = [ "resources" ] }
 ar = "0.9.0"
 icns = "0.3"
 image = "0.24.0"

+ 6 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.4]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in tauri-utils.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.3]
 
 - Fixes Tauri path resolution on projects without Git or a `.gitignore` file.

+ 3 - 3
tooling/cli/Cargo.lock

@@ -2691,7 +2691,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 dependencies = [
  "anyhow",
  "ar",
@@ -2727,7 +2727,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.0.0-rc.3"
+version = "1.0.0-rc.4"
 dependencies = [
  "anyhow",
  "base64",
@@ -2781,7 +2781,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 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.3"
+version = "1.0.0-rc.4"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.57"
@@ -29,7 +29,7 @@ path = "src/main.rs"
 [dependencies]
 clap = { version = "3", features = [ "derive" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "1.0.0-rc.0", path = "../bundler" }
+tauri-bundler = { version = "1.0.0-rc.1", path = "../bundler" }
 colored = "2.0"
 once_cell = "1.9"
 serde = { version = "1.0", features = [ "derive" ] }
@@ -39,7 +39,7 @@ notify = "4.0"
 shared_child = "1.0"
 toml_edit = "0.13"
 json-patch = "0.2"
-tauri-utils = { version = "1.0.0-rc.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
+tauri-utils = { version = "1.0.0-rc.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
 toml = "0.5"
 valico = "3.6"
 handlebars = "4.2"

+ 3 - 3
tooling/cli/metadata.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "1.0.0-rc.2",
+    "version": "1.0.0-rc.3",
     "node": ">= 12.13.0"
   },
-  "tauri": "1.0.0-rc.0",
-  "tauri-build": "1.0.0-rc.0"
+  "tauri": "1.0.0-rc.1",
+  "tauri-build": "1.0.0-rc.1"
 }

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-rc.3]
+
+- Change default value for the `freezePrototype` configuration to `false`.
+  - Bumped due to a bump in cli.rs.
+  - [3a4c0160](https://www.github.com/tauri-apps/tauri/commit/3a4c01606184be762adee055ddac803de0d28527) fix(core): change default `freezePrototype` to false, closes [#3416](https://www.github.com/tauri-apps/tauri/pull/3416) [#3406](https://www.github.com/tauri-apps/tauri/pull/3406) ([#3423](https://www.github.com/tauri-apps/tauri/pull/3423)) on 2022-02-12
+
 ## \[1.0.0-rc.2]
 
 - Fixes Tauri path resolution on projects without Git or a `.gitignore` file.

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

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

+ 5 - 0
tooling/create-tauri-app/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.2]
+
+- Fix crash when using `create-react-app` recipe.
+  - [c0103604](https://www.github.com/tauri-apps/tauri/commit/c01036043dcec52ba360fc38268b8b4ae4c470a1) fix(cta): fix cli install with other deps, fixes [#3417](https://www.github.com/tauri-apps/tauri/pull/3417) ([#3420](https://www.github.com/tauri-apps/tauri/pull/3420)) on 2022-02-12
+
 ## \[1.0.0-rc.1]
 
 - Fix `create-tauri-app` failing to bootstrap projects.

+ 1 - 1
tooling/create-tauri-app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "create-tauri-app",
-  "version": "1.0.0-rc.1",
+  "version": "1.0.0-rc.2",
   "description": "Jump right into a Tauri App!",
   "bin": {
     "create-tauri-app": "./bin/create-tauri-app.js"