@tauri-apps/cli 1.5.10 → 1.5.12

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 (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.5.12]
4
+
5
+ ### Bug Fixes
6
+
7
+ - [`1675e41f0`](https://www.github.com/tauri-apps/tauri/commit/1675e41f05c77d517890f59fddcf536744e6a0ad)([#9481](https://www.github.com/tauri-apps/tauri/pull/9481)) Fixed an issue with the CLI renaming the main executable in kebab-case when building for Windows on a non-Windows system which caused the bundler step to fail.
8
+ - [`9dd67abd9`](https://www.github.com/tauri-apps/tauri/commit/9dd67abd93e96097fc169404b70e729e46c3cd64)([#9298](https://www.github.com/tauri-apps/tauri/pull/9298)) Upgrade `heck` to v0.5 to better support Chinese and Japanese product name, because Chinese do not have word separation.
9
+ - [`f9638b631`](https://www.github.com/tauri-apps/tauri/commit/f9638b6315668ced871f242224f001f474262f85)([#9491](https://www.github.com/tauri-apps/tauri/pull/9491)) Fixed an issue that caused the CLI to rename app binaries incorrectly if the product name contained a `.` which resulted in the bundling step to fail.
10
+ - [`77cc49ac3`](https://www.github.com/tauri-apps/tauri/commit/77cc49ac3cd27368b3be4f67e35ae021acee4c92)([#9188](https://www.github.com/tauri-apps/tauri/pull/9188)) Fixed an issue causing the `build.runner` and `build.features` configs to not take effect.
11
+ - [`aeddc40b9`](https://www.github.com/tauri-apps/tauri/commit/aeddc40b9e461bc118382ae62431d39e29f25915)([#9411](https://www.github.com/tauri-apps/tauri/pull/9411)) Fix `tauri info` crashing when Node.js is not installed.
12
+
13
+ ### Dependencies
14
+
15
+ - Upgraded to `tauri-cli@1.5.12`
16
+
17
+ ## \[1.5.11]
18
+
19
+ ### Bug Fixes
20
+
21
+ - [`b15948b11`](https://www.github.com/tauri-apps/tauri/commit/b15948b11c0e362eea7ef57a4606f15f7dbd886b)([#8903](https://www.github.com/tauri-apps/tauri/pull/8903)) Fix `.taurignore` failing to ignore in some cases.
22
+
23
+ ### Dependencies
24
+
25
+ - Upgraded to `tauri-cli@1.5.11`
26
+
3
27
  ## \[1.5.10]
4
28
 
5
29
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
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.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"
71
+ "@tauri-apps/cli-win32-x64-msvc": "1.5.12",
72
+ "@tauri-apps/cli-darwin-x64": "1.5.12",
73
+ "@tauri-apps/cli-linux-x64-gnu": "1.5.12",
74
+ "@tauri-apps/cli-darwin-arm64": "1.5.12",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "1.5.12",
76
+ "@tauri-apps/cli-linux-arm64-musl": "1.5.12",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.12",
78
+ "@tauri-apps/cli-linux-x64-musl": "1.5.12",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "1.5.12",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "1.5.12"
81
81
  }
82
82
  }