@tauri-apps/cli 1.5.6 → 1.5.7
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.
- package/CHANGELOG.md +12 -0
- package/Cargo.toml +3 -3
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.5.7]
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [`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.
|
|
8
|
+
- [`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.
|
|
9
|
+
- [`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.
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
- Upgraded to `tauri-cli@1.5.7`
|
|
14
|
+
|
|
3
15
|
## \[1.5.6]
|
|
4
16
|
|
|
5
17
|
### 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.
|
|
12
|
-
napi-derive = "2.
|
|
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.
|
|
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.
|
|
3
|
+
"version": "1.5.7",
|
|
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.
|
|
72
|
-
"@tauri-apps/cli-darwin-x64": "1.5.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.5.
|
|
74
|
-
"@tauri-apps/cli-darwin-arm64": "1.5.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.5.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.5.
|
|
77
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.5.
|
|
78
|
-
"@tauri-apps/cli-linux-x64-musl": "1.5.
|
|
79
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.5.
|
|
80
|
-
"@tauri-apps/cli-win32-arm64-msvc": "1.5.
|
|
71
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.5.7",
|
|
72
|
+
"@tauri-apps/cli-darwin-x64": "1.5.7",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.5.7",
|
|
74
|
+
"@tauri-apps/cli-darwin-arm64": "1.5.7",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.5.7",
|
|
76
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.5.7",
|
|
77
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.5.7",
|
|
78
|
+
"@tauri-apps/cli-linux-x64-musl": "1.5.7",
|
|
79
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.5.7",
|
|
80
|
+
"@tauri-apps/cli-win32-arm64-msvc": "1.5.7"
|
|
81
81
|
}
|
|
82
82
|
}
|