@tauri-apps/cli 2.0.0-alpha.5 → 2.0.0-alpha.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 +6 -0
- package/package.json +10 -10
- package/schema.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-alpha.6]
|
|
4
|
+
|
|
5
|
+
- Use Ubuntu 20.04 to compile the CLI, increasing the minimum libc version required.
|
|
6
|
+
- Automatically enable the `rustls-tls` tauri feature on mobile and `native-tls` on desktop if `rustls-tls` is not enabled.
|
|
7
|
+
- [cfdee00f](https://www.github.com/tauri-apps/tauri/commit/cfdee00f2b1455a9719bc44823fdaeabbe4c1cb2) refactor(core): fix tls features, use rustls on mobile ([#6591](https://www.github.com/tauri-apps/tauri/pull/6591)) on 2023-03-30
|
|
8
|
+
|
|
3
9
|
## \[2.0.0-alpha.5]
|
|
4
10
|
|
|
5
11
|
- Fixes the iOS project script to build the Rust library.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.6",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.
|
|
71
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.
|
|
72
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.
|
|
73
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.
|
|
74
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.
|
|
76
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.
|
|
77
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.
|
|
78
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.
|
|
70
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.6",
|
|
71
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-alpha.6",
|
|
72
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.6",
|
|
73
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.6",
|
|
74
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.6",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.6",
|
|
76
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.6",
|
|
77
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.6",
|
|
78
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.6"
|
|
79
79
|
}
|
|
80
80
|
}
|
package/schema.json
CHANGED
|
@@ -1449,7 +1449,7 @@
|
|
|
1449
1449
|
"additionalProperties": false
|
|
1450
1450
|
},
|
|
1451
1451
|
{
|
|
1452
|
-
"description": "Download the bootstrapper and run it. Requires internet connection. Results in a smaller installer size, but is not recommended on Windows 7.",
|
|
1452
|
+
"description": "Download the bootstrapper and run it. Requires an internet connection. Results in a smaller installer size, but is not recommended on Windows 7.",
|
|
1453
1453
|
"type": "object",
|
|
1454
1454
|
"required": [
|
|
1455
1455
|
"type"
|
|
@@ -1470,7 +1470,7 @@
|
|
|
1470
1470
|
"additionalProperties": false
|
|
1471
1471
|
},
|
|
1472
1472
|
{
|
|
1473
|
-
"description": "Embed the bootstrapper and run it. Requires internet connection. Increases the installer size by around 1.8MB, but offers better support on Windows 7.",
|
|
1473
|
+
"description": "Embed the bootstrapper and run it. Requires an internet connection. Increases the installer size by around 1.8MB, but offers better support on Windows 7.",
|
|
1474
1474
|
"type": "object",
|
|
1475
1475
|
"required": [
|
|
1476
1476
|
"type"
|
|
@@ -1491,7 +1491,7 @@
|
|
|
1491
1491
|
"additionalProperties": false
|
|
1492
1492
|
},
|
|
1493
1493
|
{
|
|
1494
|
-
"description": "Embed the offline installer and run it. Does not require internet connection. Increases the installer size by around 127MB.",
|
|
1494
|
+
"description": "Embed the offline installer and run it. Does not require an internet connection. Increases the installer size by around 127MB.",
|
|
1495
1495
|
"type": "object",
|
|
1496
1496
|
"required": [
|
|
1497
1497
|
"type"
|