@tauri-apps/cli 2.11.3 → 3.0.0-alpha.0
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.
- package/CHANGELOG.md +37 -0
- package/config.schema.json +798 -883
- package/index.js +77 -66
- package/package.json +16 -15
- package/postpublish.js +32 -0
- package/tauri.js +1 -1
- /package/{LICENSE_APACHE-2.0 → LICENSE-APACHE-2.0} +0 -0
- /package/{LICENSE_MIT → LICENSE-MIT} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.0-alpha.0]
|
|
4
|
+
|
|
5
|
+
### Enhancements
|
|
6
|
+
|
|
7
|
+
- [`84a37feed`](https://www.github.com/tauri-apps/tauri/commit/84a37feedb6f9c7946a89deff53ad9ab6031cafc) When a captured command fails, include its stderr in the error message.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`b30c16623`](https://www.github.com/tauri-apps/tauri/commit/b30c16623b2b7ee3243815fba9c19879e22e44e5) ([#15778](https://www.github.com/tauri-apps/tauri/pull/15778)) Respect the `CARGO_BUILD_TARGET` environment variable when resolving the build target, matching Cargo's precedence over `build.target` in `.cargo/config.toml`.
|
|
12
|
+
|
|
13
|
+
### What's Changed
|
|
14
|
+
|
|
15
|
+
- [`19929799f`](https://www.github.com/tauri-apps/tauri/commit/19929799f42398a6e85adb00ae02f2e7fe46d214) First v3 alpha release!
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
- Upgraded to `tauri-cli@3.0.0-alpha.0`
|
|
20
|
+
|
|
21
|
+
### Breaking Changes
|
|
22
|
+
|
|
23
|
+
- [`1e5ba7b53`](https://www.github.com/tauri-apps/tauri/commit/1e5ba7b53dfb3da97f372b646f15853e5ba0e1a8) ([#15985](https://www.github.com/tauri-apps/tauri/pull/15985)) The CLI detects the webview runtime (wry, CEF or other) from the `tauri-runtime-wry` and `tauri-runtime-cef` dependencies of the app manifest instead of the removed `cef` feature of `tauri`:
|
|
24
|
+
|
|
25
|
+
- The webkit2gtk package dependencies of the Debian and RPM packages and the WebView2 installation step of the Windows installers are only added when the app uses wry.
|
|
26
|
+
- The CEF files, code signing entitlements and macOS dev flow are only used when the app uses CEF.
|
|
27
|
+
- Nothing runtime-specific is done for other runtimes.
|
|
28
|
+
- The app and plugin templates add the `tauri-runtime-wry` dependency and select it with `tauri::Builder::default().runtime(tauri_runtime_wry::Wry::default())`.
|
|
29
|
+
|
|
30
|
+
## \[2.11.4]
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- [`67ffa192a`](https://www.github.com/tauri-apps/tauri/commit/67ffa192a499131e7e750f164fe61a40ca0fb2e7) ([#15596](https://www.github.com/tauri-apps/tauri/pull/15596) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed an issue in the AppImage bundler that caused the `/.desktop` and `.DirIcon` files to be absolute symlinks instead of relative symlinks which caused problems with AppImage installers like `AppManager`.
|
|
35
|
+
|
|
36
|
+
### Dependencies
|
|
37
|
+
|
|
38
|
+
- Upgraded to `tauri-cli@2.11.4`
|
|
39
|
+
|
|
3
40
|
## \[2.11.3]
|
|
4
41
|
|
|
5
42
|
### Bug Fixes
|