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

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 +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.9]
4
+
5
+ ### Bug Fixes
6
+
7
+ - [`c3ea3a2b7`](https://www.github.com/tauri-apps/tauri/commit/c3ea3a2b7d2fe3085f05b63dd1feb962beb4b7b3)([#9126](https://www.github.com/tauri-apps/tauri/pull/9126)) Fix bundling when `plugins > updater > windows > installerArgs` are set in `tauri.conf.json`
8
+
9
+ ### Dependencies
10
+
11
+ - Upgraded to `tauri-cli@2.0.0-beta.9`
12
+
3
13
  ## \[2.0.0-beta.8]
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.8",
3
+ "version": "2.0.0-beta.9",
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.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"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.9",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.9",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.9",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.9",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.9",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.9",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.9",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.9",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.9",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.9"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -1141,7 +1141,7 @@
1141
1141
  ],
1142
1142
  "properties": {
1143
1143
  "urls": {
1144
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).",
1144
+ "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n# Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
1145
1145
  "type": "array",
1146
1146
  "items": {
1147
1147
  "type": "string"