@tauri-apps/cli 1.5.6 → 1.5.8

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 (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/Cargo.toml +3 -3
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.5.8]
4
+
5
+ ### Dependencies
6
+
7
+ - Upgraded to `tauri-cli@1.5.8`
8
+
9
+ ## \[1.5.7]
10
+
11
+ ### Bug Fixes
12
+
13
+ - [`1d5aa38a`](https://www.github.com/tauri-apps/tauri/commit/1d5aa38ae418ea31f593590b6d32cf04d3bfd8c1)([#8162](https://www.github.com/tauri-apps/tauri/pull/8162)) Fixes errors on command output, occuring when the output stream contains an invalid UTF-8 character, or ends with a multi-bytes UTF-8 character.
14
+ - [`f26d9f08`](https://www.github.com/tauri-apps/tauri/commit/f26d9f0884f63f61b9f4d4fac15e6b251163793e)([#8263](https://www.github.com/tauri-apps/tauri/pull/8263)) Fixes an issue in the NSIS installer which caused the uninstallation to leave empty folders on the system if the `resources` feature was used.
15
+ - [`92bc7d0e`](https://www.github.com/tauri-apps/tauri/commit/92bc7d0e16157434330a1bcf1eefda6f0f1e5f85)([#8233](https://www.github.com/tauri-apps/tauri/pull/8233)) Fixes an issue in the NSIS installer which caused the installation to take much longer than expected when many `resources` were added to the bundle.
16
+
17
+ ### Dependencies
18
+
19
+ - Upgraded to `tauri-cli@1.5.7`
20
+
3
21
  ## \[1.5.6]
4
22
 
5
23
  ### Bug Fixes
package/Cargo.toml CHANGED
@@ -8,13 +8,13 @@ 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.13", default-features = false, features = ["napi4"] }
12
- napi-derive = "2.13"
11
+ napi = { version = "2.14", default-features = false, features = ["napi4"] }
12
+ napi-derive = "2.14"
13
13
  tauri-cli = { path = "..", default-features = false }
14
14
  log = "0.4.20"
15
15
 
16
16
  [build-dependencies]
17
- napi-build = "2.0"
17
+ napi-build = "2.1"
18
18
 
19
19
  [features]
20
20
  default = ["tauri-cli/default"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.5.6",
3
+ "version": "1.5.8",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "1.5.6",
72
- "@tauri-apps/cli-darwin-x64": "1.5.6",
73
- "@tauri-apps/cli-linux-x64-gnu": "1.5.6",
74
- "@tauri-apps/cli-darwin-arm64": "1.5.6",
75
- "@tauri-apps/cli-linux-arm64-gnu": "1.5.6",
76
- "@tauri-apps/cli-linux-arm64-musl": "1.5.6",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.6",
78
- "@tauri-apps/cli-linux-x64-musl": "1.5.6",
79
- "@tauri-apps/cli-win32-ia32-msvc": "1.5.6",
80
- "@tauri-apps/cli-win32-arm64-msvc": "1.5.6"
71
+ "@tauri-apps/cli-win32-x64-msvc": "1.5.8",
72
+ "@tauri-apps/cli-darwin-x64": "1.5.8",
73
+ "@tauri-apps/cli-linux-x64-gnu": "1.5.8",
74
+ "@tauri-apps/cli-darwin-arm64": "1.5.8",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "1.5.8",
76
+ "@tauri-apps/cli-linux-arm64-musl": "1.5.8",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.8",
78
+ "@tauri-apps/cli-linux-x64-musl": "1.5.8",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "1.5.8",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "1.5.8"
81
81
  }
82
82
  }