@tauri-apps/cli 1.0.0-rc.10 → 1.0.0-rc.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/Cargo.toml +3 -3
  3. package/package.json +12 -12
  4. package/schema.json +1506 -1474
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.13]
4
+
5
+ - Check if `$CWD/src-tauri/tauri.conf.json` exists before walking through the file tree to find the tauri dir in case the whole project is gitignored.
6
+ - [bd8f3e29](https://www.github.com/tauri-apps/tauri/commit/bd8f3e298a0cb71809f2e93cc3ebc8e6e5b6a626) fix(cli): manual config lookup to handle gitignored folders, fixes [#3527](https://www.github.com/tauri-apps/tauri/pull/3527) ([#4224](https://www.github.com/tauri-apps/tauri/pull/4224)) on 2022-05-26
7
+ - Statically link the Visual C++ runtime instead of using a merge module on the installer.
8
+ - [bb061509](https://www.github.com/tauri-apps/tauri/commit/bb061509fb674bef86ecbc1de3aa8f3e367a9907) refactor(core): statically link vcruntime, closes [#4122](https://www.github.com/tauri-apps/tauri/pull/4122) ([#4227](https://www.github.com/tauri-apps/tauri/pull/4227)) on 2022-05-27
9
+
10
+ ## \[1.0.0-rc.12]
11
+
12
+ - Properly fetch the NPM dependency information when using Yarn 2+.
13
+ - [cdfa6255](https://www.github.com/tauri-apps/tauri/commit/cdfa62551115586725bd3e4c04f12c5256f20790) fix(cli): properly read info when using yarn 2+, closes [#4106](https://www.github.com/tauri-apps/tauri/pull/4106) ([#4193](https://www.github.com/tauri-apps/tauri/pull/4193)) on 2022-05-23
14
+
15
+ ## \[1.0.0-rc.11]
16
+
17
+ - Allow configuring the display options for the MSI execution allowing quieter updates.
18
+ - [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
19
+
3
20
  ## \[1.0.0-rc.10]
4
21
 
5
22
  - Resolve binary file extension from target triple instead of compile-time checks to allow cross compilation.
@@ -13,7 +30,7 @@
13
30
  - - Remove startup delay in `tauri dev` caused by checking for a newer cli version. The check is now done upon process exit.
14
31
  - Add `TAURI_SKIP_UPDATE_CHECK` env variable to skip checking for a newer CLI version.
15
32
  - [bbabc8cd](https://www.github.com/tauri-apps/tauri/commit/bbabc8cd1ea2c1f6806610fd2d533c99305d320c) fix(cli.rs): remove startup delay in `tauri dev` ([#3999](https://www.github.com/tauri-apps/tauri/pull/3999)) on 2022-04-29
16
- - Fix `tauri info` panic when a pacakage isn't installed.
33
+ - Fix `tauri info` panic when a package isn't installed.
17
34
  - [4f0f3187](https://www.github.com/tauri-apps/tauri/commit/4f0f3187c9e69262ef28350331b368c831ab930a) fix(cli.rs): fix `tauri info` panic when a package isn't installed, closes [#3985](https://www.github.com/tauri-apps/tauri/pull/3985) ([#3996](https://www.github.com/tauri-apps/tauri/pull/3996)) on 2022-04-29
18
35
  - Added `$schema` support to `tauri.conf.json`.
19
36
  - [715cbde3](https://www.github.com/tauri-apps/tauri/commit/715cbde3842a916c4ebeab2cab348e1774b5c192) feat(config): add `$schema` to `tauri.conf.json`, closes [#3464](https://www.github.com/tauri-apps/tauri/pull/3464) ([#4031](https://www.github.com/tauri-apps/tauri/pull/4031)) on 2022-05-03
package/Cargo.toml CHANGED
@@ -8,9 +8,9 @@ crate-type = ["cdylib"]
8
8
 
9
9
  [dependencies]
10
10
  # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
11
- napi = { version = "2.3", default-features = false, features = ["napi4"] }
12
- napi-derive = "2.3"
11
+ napi = { version = "2.4", default-features = false, features = ["napi4"] }
12
+ napi-derive = "2.4"
13
13
  tauri-cli = { path = ".." }
14
14
 
15
15
  [build-dependencies]
16
- napi-build = "1.2"
16
+ napi-build = "2.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.10",
3
+ "version": "1.0.0-rc.13",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -37,11 +37,11 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@napi-rs/cli": "2.7.0",
40
+ "@napi-rs/cli": "2.9.0",
41
41
  "cross-env": "7.0.3",
42
42
  "cross-spawn": "7.0.3",
43
43
  "fs-extra": "10.1.0",
44
- "jest": "28.0.3",
44
+ "jest": "28.1.0",
45
45
  "jest-transform-toml": "1.0.0",
46
46
  "prettier": "2.6.2"
47
47
  },
@@ -64,14 +64,14 @@
64
64
  "format:check": "prettier --check ./package.json ./tauri.js"
65
65
  },
66
66
  "optionalDependencies": {
67
- "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.10",
68
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.10",
69
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.10",
70
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.10",
71
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.10",
72
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.10",
73
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.10",
74
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.10",
75
- "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.10"
67
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.13",
68
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.13",
69
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.13",
70
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.13",
71
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.13",
72
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.13",
73
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.13",
74
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.13",
75
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.13"
76
76
  }
77
77
  }