v0.7.5
DioxusLabs/dioxusv0.7.5Apr 6, 2026by jkelleyrtp
AI Summary
This patch release fixes a critical compilation issue where Dioxus would fail to compile with outdated dependency versions and improves the stability of hotpatching and bundling tooling.
Key Highlights
- Fixes compilation errors caused by old dependency versions like futures-unordered
- Adds support for aarch64 Windows platform in wasm_opt
- Improves hotpatching, autoformatting, and bundling stability
New Features
- aarch64 Windows support in wasm_opt
Full Release Notes
# Dioxus v0.7.5 This release fixes a critical issue where Dioxus wouldn't compile if your `Cargo.lock` specified too-old versions dependencies like futures-unordered. This was caused by the Dioxus Cargo.toml specifying versions like `futures="0.3"` when in fact `0.3.32` was required. Note that the `dioxus` crate was not updated - only its dependencies that use these versions - so we recommend running `cargo update` manually. We also fixed a few other bugs related to hotpatching, autoformatting, and bundling. ## What's Changed * fix(autofmt): remove extra whitespace before commas in for-loop tuple patterns by @costajohnt in https://github.com/DioxusLabs/dioxus/pull/5384 * fix(server): don't redirect error responses from #[get] server functions by @costajohnt in https://github.com/DioxusLabs/dioxus/pull/5429 * Forward `-B` linker search path in thin/patch link args on Linux by @Wilovy09 in https://github.com/DioxusLabs/dioxus/pull/5443 * Add support for aarch64 Windows platform in wasm_opt by @hadeutscher in https://github.com/DioxusLabs/dioxus/pull/5442 * Fixed issue #5438: Added FIPS Compliance flag to candle.exe command by @MasterTemple in https://github.com/DioxusLabs/dioxus/pull/5439 * Check minimum versions in CI by @ealmloff in https://github.com/DioxusLabs/dioxus/pull/5437 ## New Contributors * @Wilovy09 made their first contribution in https://github.com/DioxusLabs/dioxus/pull/5443 * @hadeutscher made their first contribution in https://github.com/DioxusLabs/dioxus/pull/5442 * @MasterTemple made their first contribution in https://github.com/DioxusLabs/dioxus/pull/5439 **Full Changelog**: https://github.com/DioxusLabs/dioxus/compare/v0.7.4...v0.7.5