Mostly this release is to disable file hashing by default, and streamline it's use. It can now be enabled by setting hash-files=true
in your Cargo.toml or setting the LEPTOS_HASH_FILES=true
env var when running cargo-leptos. If you're using Docker or moving the bin to a new folder, you need to copy the (by default) hash.txt
file from target/{release_profile_name}
to the same folder as your binary, and make sure the env var or cargo.toml option is enabled. Also some minor bug fixes
What's Changed
- Specify path to wasm bindgen in island macro by @Baptistemontan in #2387
- add note on how to get leptos_axum::ResponseOptions by @sjud in #2380
- fix(ci): "needless borrow" error and example never exiting by @paul-hansen in #2392
- fix: ignore this Axum integration as with other doctests for now by @gbj in #2395
- Unnecessary trait bound
PartialEq
removed fromcreate_owning_memo
by @zroug in #2394 - fix: correctly reset hydration status in islands mode Suspense (closes #2332) by @gbj in #2393
- Rename env var and tweak hashing to align with cargo leptos by @benwis in #2398
New Contributors
Full Changelog: v0.6.7...v0.6.8