[3.0.0-alpha.0]
Enhancements
84a37feedWhen a captured command fails, include its stderr in the error message.
Bug Fixes
b30c16623(#15778) Respect theCARGO_BUILD_TARGETenvironment variable when resolving the build target, matching Cargo's precedence overbuild.targetin.cargo/config.toml.
What's Changed
19929799fFirst v3 alpha release!
Dependencies
- Upgraded to
tauri-cli@3.0.0-alpha.0
Breaking Changes
-
1e5ba7b53(#15985) The CLI detects the webview runtime (wry, CEF or other) from thetauri-runtime-wryandtauri-runtime-cefdependencies of the app manifest instead of the removedceffeature oftauri:- 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.
- The CEF files, code signing entitlements and macOS dev flow are only used when the app uses CEF.
- Nothing runtime-specific is done for other runtimes.
- The app and plugin templates add the
tauri-runtime-wrydependency and select it withtauri::Builder::default().runtime(tauri_runtime_wry::Wry::default()).