@tauri-apps/cli 2.0.0-rc.1 → 2.0.0-rc.2
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/package.json +11 -11
- package/schema.json +18 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.2]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`8dc81b6cc`](https://www.github.com/tauri-apps/tauri/commit/8dc81b6cc2b8235b11f74a971d6aa3a5df5e9f68) ([#10496](https://www.github.com/tauri-apps/tauri/pull/10496) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added `bundle > ios > template` configuration option for custom Xcode project YML Handlebars template using XcodeGen.
|
|
8
|
+
- [`02c00abc6`](https://www.github.com/tauri-apps/tauri/commit/02c00abc63cf86e9bf9179cbb143d5145a9397b6) ([#10495](https://www.github.com/tauri-apps/tauri/pull/10495) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added `bundle > ios > minimumSystemVersion` configuration option.
|
|
9
|
+
|
|
10
|
+
### Enhancements
|
|
11
|
+
|
|
12
|
+
- [`8e1e15304`](https://www.github.com/tauri-apps/tauri/commit/8e1e15304e9dc98d7f875fc8dceb7d4ce19adc47) ([#10483](https://www.github.com/tauri-apps/tauri/pull/10483) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Check if the Rust library contains the symbols required at runtime for Android and iOS apps.
|
|
13
|
+
- [`ca6868956`](https://www.github.com/tauri-apps/tauri/commit/ca68689564cbc8dfa9a5220d3daf81a44ef81fcc) ([#10479](https://www.github.com/tauri-apps/tauri/pull/10479) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Check if identifier or lib name changed when running mobile commands.
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- [`2e8ab7bac`](https://www.github.com/tauri-apps/tauri/commit/2e8ab7bac12046d734fb07a1b4fe5e03004b305e) ([#10481](https://www.github.com/tauri-apps/tauri/pull/10481) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Migration from v1 to v2 now adds the updater plugin when it is active.
|
|
18
|
+
|
|
19
|
+
### What's Changed
|
|
20
|
+
|
|
21
|
+
- [`a3cd9779a`](https://www.github.com/tauri-apps/tauri/commit/a3cd9779a47428e306a628d658740669faf69ccd) ([#10480](https://www.github.com/tauri-apps/tauri/pull/10480) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Removed the `[android|ios] open` command. It is recommended to use `[android|ios] dev --open` or `[android|ios] build --open` instead.
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
- Upgraded to `tauri-cli@2.0.0-rc.2`
|
|
26
|
+
|
|
3
27
|
## \[2.0.0-rc.1]
|
|
4
28
|
|
|
5
29
|
### Bug Fixes
|
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.2",
|
|
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": "2.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.
|
|
74
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.
|
|
75
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.
|
|
76
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.
|
|
77
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.
|
|
78
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.
|
|
79
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.
|
|
80
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.
|
|
71
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.2",
|
|
72
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.2",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.2",
|
|
74
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.2",
|
|
75
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.2",
|
|
76
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.2",
|
|
77
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.2",
|
|
78
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.2",
|
|
79
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.2",
|
|
80
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.2"
|
|
81
81
|
}
|
|
82
82
|
}
|
package/schema.json
CHANGED
|
@@ -74,7 +74,9 @@
|
|
|
74
74
|
"minSdkVersion": 24
|
|
75
75
|
},
|
|
76
76
|
"createUpdaterArtifacts": false,
|
|
77
|
-
"iOS": {
|
|
77
|
+
"iOS": {
|
|
78
|
+
"minimumSystemVersion": ""
|
|
79
|
+
},
|
|
78
80
|
"icon": [],
|
|
79
81
|
"linux": {
|
|
80
82
|
"appimage": {
|
|
@@ -1712,7 +1714,9 @@
|
|
|
1712
1714
|
},
|
|
1713
1715
|
"iOS": {
|
|
1714
1716
|
"description": "iOS configuration.",
|
|
1715
|
-
"default": {
|
|
1717
|
+
"default": {
|
|
1718
|
+
"minimumSystemVersion": ""
|
|
1719
|
+
},
|
|
1716
1720
|
"allOf": [
|
|
1717
1721
|
{
|
|
1718
1722
|
"$ref": "#/definitions/IosConfig"
|
|
@@ -2896,6 +2900,13 @@
|
|
|
2896
2900
|
"description": "General configuration for the iOS target.",
|
|
2897
2901
|
"type": "object",
|
|
2898
2902
|
"properties": {
|
|
2903
|
+
"template": {
|
|
2904
|
+
"description": "A custom [XcodeGen] project.yml template to use.\n\n [XcodeGen]: <https://github.com/yonaskolb/XcodeGen>",
|
|
2905
|
+
"type": [
|
|
2906
|
+
"string",
|
|
2907
|
+
"null"
|
|
2908
|
+
]
|
|
2909
|
+
},
|
|
2899
2910
|
"frameworks": {
|
|
2900
2911
|
"description": "A list of strings indicating any iOS frameworks that need to be bundled with the application.\n\n Note that you need to recreate the iOS project for the changes to be applied.",
|
|
2901
2912
|
"type": [
|
|
@@ -2912,6 +2923,11 @@
|
|
|
2912
2923
|
"string",
|
|
2913
2924
|
"null"
|
|
2914
2925
|
]
|
|
2926
|
+
},
|
|
2927
|
+
"minimumSystemVersion": {
|
|
2928
|
+
"description": "A version string indicating the minimum iOS version that the bundled application supports. Defaults to `13.0`.\n\n Maps to the IPHONEOS_DEPLOYMENT_TARGET value.",
|
|
2929
|
+
"default": "13.0",
|
|
2930
|
+
"type": "string"
|
|
2915
2931
|
}
|
|
2916
2932
|
},
|
|
2917
2933
|
"additionalProperties": false
|