@tauri-apps/cli 2.0.0-beta.7 → 2.0.0-beta.8

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 +10 -0
  2. package/package.json +11 -11
  3. package/schema.json +5 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.8]
4
+
5
+ ### Enhancements
6
+
7
+ - [`3e472d0af`](https://www.github.com/tauri-apps/tauri/commit/3e472d0afcd67545dd6d9f18d304580a3b2759a8)([#9115](https://www.github.com/tauri-apps/tauri/pull/9115)) Changed the permission and capability platforms to be optional.
8
+
9
+ ### Dependencies
10
+
11
+ - Upgraded to `tauri-cli@2.0.0-beta.8`
12
+
3
13
  ## \[2.0.0-beta.7]
4
14
 
5
15
  ### Enhancements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.8",
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-beta.7",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-beta.7",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.7",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.7",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.7",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.7",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.7",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.7",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.7",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.7"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.8",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.8",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.8",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.8",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.8",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.8",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.8",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.8",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.8",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.8"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -1072,8 +1072,7 @@
1072
1072
  "type": "object",
1073
1073
  "required": [
1074
1074
  "identifier",
1075
- "permissions",
1076
- "windows"
1075
+ "permissions"
1077
1076
  ],
1078
1077
  "properties": {
1079
1078
  "identifier": {
@@ -1124,14 +1123,10 @@
1124
1123
  },
1125
1124
  "platforms": {
1126
1125
  "description": "Target platforms this capability applies. By default all platforms are affected by this capability.",
1127
- "default": [
1128
- "linux",
1129
- "macOS",
1130
- "windows",
1131
- "android",
1132
- "iOS"
1126
+ "type": [
1127
+ "array",
1128
+ "null"
1133
1129
  ],
1134
- "type": "array",
1135
1130
  "items": {
1136
1131
  "$ref": "#/definitions/Target"
1137
1132
  }
@@ -1146,7 +1141,7 @@
1146
1141
  ],
1147
1142
  "properties": {
1148
1143
  "urls": {
1149
- "description": "Remote domains this capability refers to. Can use glob patterns.",
1144
+ "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).",
1150
1145
  "type": "array",
1151
1146
  "items": {
1152
1147
  "type": "string"