axum-htmx/CHANGELOG.md

22 lines
489 B
Markdown
Raw Normal View History

2023-07-28 04:23:46 +02:00
# Changelog
## v0.3.1
- Rebuild docs with features enabled so `HxRequestGuardLayer` is visible on
docs.rs.
2023-07-29 23:16:05 +02:00
## v0.3.0
- `HxRequestGuardLayer` now redirects on failures instead of returning a 403. By
default, it will redirect to "/", but you can specify a different route to
redirect to with `HxRequestGuardLayer::new("/your-route-here")`.
2023-07-28 04:28:26 +02:00
## v0.2.0
2023-07-28 04:23:46 +02:00
- Added `HxRequestGuardLayer`, allowing you to protect an entire router from
non-htmx requests.
2023-07-28 04:28:26 +02:00
## v0.1.0
2023-07-28 04:23:46 +02:00
- Initial release.