@tauri-apps/cli 1.5.8 → 1.5.10

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 +22 -0
  2. package/package.json +11 -11
  3. package/schema.json +21 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.5.10]
4
+
5
+ ### Bug Fixes
6
+
7
+ - [`b0f27814`](https://www.github.com/tauri-apps/tauri/commit/b0f27814b90ded2f1ed44b7852080eedbff0d9e4)([#8776](https://www.github.com/tauri-apps/tauri/pull/8776)) Fix `fail to rename app` when using `--profile dev`.
8
+ - [`0bff8c32`](https://www.github.com/tauri-apps/tauri/commit/0bff8c325d004fdead2023f58e0f5fd73a9c22ba)([#8697](https://www.github.com/tauri-apps/tauri/pull/8697)) Fix the built-in dev server failing to serve files when URL had queries `?` and other url components.
9
+ - [`67d7877f`](https://www.github.com/tauri-apps/tauri/commit/67d7877f27f265c133a70d48a46c83ffff31d571)([#8520](https://www.github.com/tauri-apps/tauri/pull/8520)) The cli now also watches cargo workspace members if the tauri folder is the workspace root.
10
+
11
+ ### Dependencies
12
+
13
+ - Upgraded to `tauri-cli@1.5.10`
14
+
15
+ ## \[1.5.9]
16
+
17
+ ### Bug Fixes
18
+
19
+ - [`0a2175ea`](https://www.github.com/tauri-apps/tauri/commit/0a2175eabb736b2a4cd01ab682e08be0b5ebb2b9)([#8439](https://www.github.com/tauri-apps/tauri/pull/8439)) Expand glob patterns in workspace member paths so the CLI would watch all matching pathhs.
20
+
21
+ ### Dependencies
22
+
23
+ - Upgraded to `tauri-cli@1.5.9`
24
+
3
25
  ## \[1.5.8]
4
26
 
5
27
  ### Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
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": "1.5.8",
72
- "@tauri-apps/cli-darwin-x64": "1.5.8",
73
- "@tauri-apps/cli-linux-x64-gnu": "1.5.8",
74
- "@tauri-apps/cli-darwin-arm64": "1.5.8",
75
- "@tauri-apps/cli-linux-arm64-gnu": "1.5.8",
76
- "@tauri-apps/cli-linux-arm64-musl": "1.5.8",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.8",
78
- "@tauri-apps/cli-linux-x64-musl": "1.5.8",
79
- "@tauri-apps/cli-win32-ia32-msvc": "1.5.8",
80
- "@tauri-apps/cli-win32-arm64-msvc": "1.5.8"
71
+ "@tauri-apps/cli-win32-x64-msvc": "1.5.10",
72
+ "@tauri-apps/cli-darwin-x64": "1.5.10",
73
+ "@tauri-apps/cli-linux-x64-gnu": "1.5.10",
74
+ "@tauri-apps/cli-darwin-arm64": "1.5.10",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "1.5.10",
76
+ "@tauri-apps/cli-linux-arm64-musl": "1.5.10",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.10",
78
+ "@tauri-apps/cli-linux-x64-musl": "1.5.10",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "1.5.10",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "1.5.10"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -1320,6 +1320,27 @@
1320
1320
  "string",
1321
1321
  "null"
1322
1322
  ]
1323
+ },
1324
+ "section": {
1325
+ "description": "Define the section in Debian Control file. See : https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections",
1326
+ "type": [
1327
+ "string",
1328
+ "null"
1329
+ ]
1330
+ },
1331
+ "priority": {
1332
+ "description": "Change the priority of the Debian Package. By default, it is set to `optional`. Recognized Priorities as of now are : `required`, `important`, `standard`, `optional`, `extra`",
1333
+ "type": [
1334
+ "string",
1335
+ "null"
1336
+ ]
1337
+ },
1338
+ "changelog": {
1339
+ "description": "Path of the uncompressed Changelog file, to be stored at /usr/share/doc/package-name/changelog.gz. See https://www.debian.org/doc/debian-policy/ch-docs.html#changelog-files-and-release-notes",
1340
+ "type": [
1341
+ "string",
1342
+ "null"
1343
+ ]
1323
1344
  }
1324
1345
  },
1325
1346
  "additionalProperties": false