@tauri-apps/cli 1.5.4 → 1.5.6
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 +24 -0
- package/Cargo.toml +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.5.6]
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [`5264e41d`](https://www.github.com/tauri-apps/tauri/commit/5264e41db3763e4c2eb0c3c21bd423fb7bece3e2)([#8082](https://www.github.com/tauri-apps/tauri/pull/8082)) Downgraded `rust-minisign` to `0.7.3` to fix signing updater bundles with empty passwords.
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- Upgraded to `tauri-cli@1.5.6`
|
|
12
|
+
|
|
13
|
+
## \[1.5.5]
|
|
14
|
+
|
|
15
|
+
### Enhancements
|
|
16
|
+
|
|
17
|
+
- [`9bead42d`](https://www.github.com/tauri-apps/tauri/commit/9bead42dbca0fb6dd7ea0b6bfb2f2308a5c5f992)([#8059](https://www.github.com/tauri-apps/tauri/pull/8059)) Allow rotating the updater private key.
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- [`be8e5aa3`](https://www.github.com/tauri-apps/tauri/commit/be8e5aa3071d9bc5d0bd24647e8168f312d11c8d)([#8042](https://www.github.com/tauri-apps/tauri/pull/8042)) Fixes duplicated newlines on command outputs.
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
- Upgraded to `tauri-cli@1.5.5`
|
|
26
|
+
|
|
3
27
|
## \[1.5.4]
|
|
4
28
|
|
|
5
29
|
### Dependencies
|
package/Cargo.toml
CHANGED
|
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
|
|
|
11
11
|
napi = { version = "2.13", default-features = false, features = ["napi4"] }
|
|
12
12
|
napi-derive = "2.13"
|
|
13
13
|
tauri-cli = { path = "..", default-features = false }
|
|
14
|
-
log = "0.4.
|
|
14
|
+
log = "0.4.20"
|
|
15
15
|
|
|
16
16
|
[build-dependencies]
|
|
17
17
|
napi-build = "2.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
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.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"
|
|
81
81
|
}
|
|
82
82
|
}
|