@tauri-apps/cli 2.0.0-rc.4 → 2.0.0-rc.5
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 +17 -0
- package/package.json +11 -11
- package/schema.json +39 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.5]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`8d148a9e2`](https://www.github.com/tauri-apps/tauri/commit/8d148a9e2566edebfea2d75f32df7c9396d765a4) ([#10634](https://www.github.com/tauri-apps/tauri/pull/10634) by [@anatawa12](https://www.github.com/tauri-apps/tauri/../../anatawa12)) Custom sign command with object notation for whitespaces in the command path and arguments.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`8ae52a615`](https://www.github.com/tauri-apps/tauri/commit/8ae52a615a11d934930001da63ce6ac8442c7efc) ([#10676](https://www.github.com/tauri-apps/tauri/pull/10676) by [@rdlabo](https://www.github.com/tauri-apps/tauri/../../rdlabo)) Change plugin template call to `register_ios_plugin` params to snake case
|
|
12
|
+
- [`7796a8fc6`](https://www.github.com/tauri-apps/tauri/commit/7796a8fc649cd7397a67048c71f8d1fbf822122a) ([#10687](https://www.github.com/tauri-apps/tauri/pull/10687) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fix Swift plugin compilation on older versions.
|
|
13
|
+
- [`9b99ebab1`](https://www.github.com/tauri-apps/tauri/commit/9b99ebab17d6a043d82a7aeecfb76c56a995c287) ([#10431](https://www.github.com/tauri-apps/tauri/pull/10431) by [@mrguiman](https://www.github.com/tauri-apps/tauri/../../mrguiman)) Do not include the target arch when building and archiving the iOS application,
|
|
14
|
+
which makes Xcode project modifications more flexible.
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
- Upgraded to `tauri-cli@2.0.0-rc.5`
|
|
19
|
+
|
|
3
20
|
## \[2.0.0-rc.4]
|
|
4
21
|
|
|
5
22
|
### New Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.5",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -63,15 +63,15 @@
|
|
|
63
63
|
"tauri": "node ./tauri.js"
|
|
64
64
|
},
|
|
65
65
|
"optionalDependencies": {
|
|
66
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.
|
|
67
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.
|
|
74
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.
|
|
75
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.
|
|
66
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.5",
|
|
67
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.5",
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.5",
|
|
69
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.5",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.5",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.5",
|
|
72
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.5",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.5",
|
|
74
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.5",
|
|
75
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.5"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/schema.json
CHANGED
|
@@ -2033,10 +2033,14 @@
|
|
|
2033
2033
|
]
|
|
2034
2034
|
},
|
|
2035
2035
|
"signCommand": {
|
|
2036
|
-
"description": "Specify a custom command to sign the binaries.\n This command needs to have a `%1` in
|
|
2037
|
-
"
|
|
2038
|
-
|
|
2039
|
-
|
|
2036
|
+
"description": "Specify a custom command to sign the binaries.\n This command needs to have a `%1` in args which is just a placeholder for the binary path,\n which we will detect and replace before calling the command.\n\n By Default we use `signtool.exe` which can be found only on Windows so\n if you are on another platform and want to cross-compile and sign you will\n need to use another tool like `osslsigncode`.",
|
|
2037
|
+
"anyOf": [
|
|
2038
|
+
{
|
|
2039
|
+
"$ref": "#/definitions/CustomSignCommandConfig"
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
"type": "null"
|
|
2043
|
+
}
|
|
2040
2044
|
]
|
|
2041
2045
|
}
|
|
2042
2046
|
},
|
|
@@ -2425,6 +2429,37 @@
|
|
|
2425
2429
|
}
|
|
2426
2430
|
]
|
|
2427
2431
|
},
|
|
2432
|
+
"CustomSignCommandConfig": {
|
|
2433
|
+
"description": "Custom Signing Command configuration.",
|
|
2434
|
+
"anyOf": [
|
|
2435
|
+
{
|
|
2436
|
+
"description": "A string notation of the script to execute.\n\n \"%1\" will be replaced with the path to the binary to be signed.\n\n This is a simpler notation for the command.\n Tauri will split the string with `' '` and use the first element as the command name and the rest as arguments.\n\n If you need to use whitespace in the command or arguments, use the object notation [`Self::ScriptWithOptions`].",
|
|
2437
|
+
"type": "string"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"description": "An object notation of the command.\n\n This is more complex notation for the command but\n this allows you to use whitespace in the command and arguments.",
|
|
2441
|
+
"type": "object",
|
|
2442
|
+
"required": [
|
|
2443
|
+
"args",
|
|
2444
|
+
"cmd"
|
|
2445
|
+
],
|
|
2446
|
+
"properties": {
|
|
2447
|
+
"cmd": {
|
|
2448
|
+
"description": "The command to run to sign the binary.",
|
|
2449
|
+
"type": "string"
|
|
2450
|
+
},
|
|
2451
|
+
"args": {
|
|
2452
|
+
"description": "The arguments to pass to the command.\n\n \"%1\" will be replaced with the path to the binary to be signed.",
|
|
2453
|
+
"type": "array",
|
|
2454
|
+
"items": {
|
|
2455
|
+
"type": "string"
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"additionalProperties": false
|
|
2460
|
+
}
|
|
2461
|
+
]
|
|
2462
|
+
},
|
|
2428
2463
|
"LinuxConfig": {
|
|
2429
2464
|
"description": "Configuration for Linux bundles.\n\n See more: <https://tauri.app/v1/api/config#linuxconfig>",
|
|
2430
2465
|
"type": "object",
|