@tauri-apps/cli 2.0.0-rc.1 → 2.0.0-rc.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +11 -11
  3. package/schema.json +19 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-rc.3]
4
+
5
+ ### Enhancements
6
+
7
+ - [`5f56cb0a8`](https://www.github.com/tauri-apps/tauri/commit/5f56cb0a8b9c6f695bc6439a8db997c98b3a3997) ([#10507](https://www.github.com/tauri-apps/tauri/pull/10507) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Update gradle to 8.9 and the gradle android plugin to 8.5.1 in the android templates (requires latest Android Studio). This should add support for Java 21 but Java 17 keeps being the recommended version.
8
+
9
+ ### Bug Fixes
10
+
11
+ - [`f5dfc0280`](https://www.github.com/tauri-apps/tauri/commit/f5dfc02800dbd3bdee671b032454c49ac7102fb4) ([#10533](https://www.github.com/tauri-apps/tauri/pull/10533) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed an issue causing `tauri ios init` to fail if `iOS.minimumSystemVersion` was not configured explicitly.
12
+
13
+ ### Dependencies
14
+
15
+ - Upgraded to `tauri-cli@2.0.0-rc.3`
16
+
17
+ ## \[2.0.0-rc.2]
18
+
19
+ ### New Features
20
+
21
+ - [`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.
22
+ - [`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.
23
+
24
+ ### Enhancements
25
+
26
+ - [`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.
27
+ - [`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.
28
+
29
+ ### Bug Fixes
30
+
31
+ - [`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.
32
+
33
+ ### What's Changed
34
+
35
+ - [`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.
36
+
37
+ ### Dependencies
38
+
39
+ - Upgraded to `tauri-cli@2.0.0-rc.2`
40
+
3
41
  ## \[2.0.0-rc.1]
4
42
 
5
43
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-rc.1",
3
+ "version": "2.0.0-rc.3",
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.1",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-rc.1",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.1",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.1",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.1",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.1",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.1",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.1",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.1",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.1"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.3",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-rc.3",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.3",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.3",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.3",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.3",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.3",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.3",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.3",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.3"
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": "13.0"
79
+ },
78
80
  "icon": [],
79
81
  "linux": {
80
82
  "appimage": {
@@ -425,7 +427,7 @@
425
427
  ]
426
428
  },
427
429
  "shadow": {
428
- "description": "Whether or not the window has shadow.\n\n ## Platform-specific\n\n - **Windows:**\n - `false` has no effect on decorated window, shadow are always ON.\n - `true` will make ndecorated window have a 1px white border,\n and on Windows 11, it will have a rounded corners.\n - **Linux:** Unsupported.",
430
+ "description": "Whether or not the window has shadow.\n\n ## Platform-specific\n\n - **Windows:**\n - `false` has no effect on decorated window, shadow are always ON.\n - `true` will make undecorated window have a 1px white border,\n and on Windows 11, it will have a rounded corners.\n - **Linux:** Unsupported.",
429
431
  "default": true,
430
432
  "type": "boolean"
431
433
  },
@@ -1712,7 +1714,9 @@
1712
1714
  },
1713
1715
  "iOS": {
1714
1716
  "description": "iOS configuration.",
1715
- "default": {},
1717
+ "default": {
1718
+ "minimumSystemVersion": "13.0"
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