axum-htmx/CHANGELOG.md

42 lines
2.7 KiB
Markdown
Raw Permalink Normal View History

2023-07-28 04:23:46 +02:00
# Changelog
2024-05-14 01:06:24 +02:00
## v0.6.0
2024-06-25 00:07:29 +02:00
- Added support for Vary headers in responses via the `VaryHxRequest`, `VaryHxTarget`, `VaryHxTrigger`, and `VaryHxTriggerName` responders. _([@imbolc](https://github.com/imbolc))_
- Header names/values are now typed as `HeaderName` and `HeaderValue` instead of `&str`. _([@imbolc](https://github.com/imbolc))_
- `HxError` now implements source on `error::Error`. _([@imbolc](https://github.com/imbolc))_
2024-06-25 00:15:02 +02:00
- Added `AutoVaryLayer` middleware to automatically manage `Vary` headers when using corresponding extractors. The middleware is behind the `auto-vary` feature. [See this section of the README for more details.](https://github.com/robertwayne/axum-htmx?tab=readme-ov-file#vary-responders). _([@imbolc](https://github.com/imbolc))_
2024-05-14 01:06:24 +02:00
2023-11-28 01:38:23 +01:00
## v0.5.0
2024-06-25 00:07:29 +02:00
There are some several breaking changes in this release. Big thanks to [@ItsEthra](https://github.com/ItsEthra) for their work in several PRs!
- All responders now take an `HxEvent` instead of a `String | HxEvent`. When the `serde` flag is enabled, it will expose additional data fields.
- `HxResponseTrigger` is now a simple struct containing an `TriggerMode` and a `Vec<HxEvent>`. There are several methods to make constructing these easier: `HxResponseTrigger::normal`, `HxResponseTrigger::after_settle`, and `HxResponseTrigger::after_swap`.
- The `HxCurrentUrl` extractor now returns an `Option<axum::http::Uri>` instead of a `String`. If the Uri cannot be parsed, it will return `None`.
2023-12-03 21:47:28 +01:00
- All Uri-related responders now impl `TryFrom<&str>`.
- `HxError::Serialization` has been renamed to `HxError::Json`.
2024-06-25 00:07:29 +02:00
- The `HxResponseTrigger*` header will not be added to the response if the event list is empty.
2023-12-03 21:47:28 +01:00
- Added feature flag badges and made additional updates to the docs.rs pages.
2024-06-25 00:07:29 +02:00
- Reduced dependency count / compile time by swapping `axum` out for the `axum-core`, `async-trait`, and `http` crates.
2023-11-28 01:38:23 +01:00
2023-10-24 04:01:05 +02:00
## v0.4.0
2024-06-25 00:07:29 +02:00
- Added support for all [htmx response headers](https://htmx.org/reference/#response_headers) via a type implementing `IntoResponseParts`. These "responders" allow you to simply and safely apply the HX-* headers to any of your responses. Thanks to [@pfz4](https://github.com/pfz4) for the implementation work! ([#5](https://github.com/robertwayne/axum-htmx/pull/5))
2023-10-24 04:01:05 +02:00
## v0.3.1
2024-06-25 00:07:29 +02:00
- Rebuild docs with features enabled so `HxRequestGuardLayer` is visible on docs.rs.
2023-07-29 23:16:05 +02:00
## v0.3.0
2024-06-25 00:07:29 +02:00
- `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-29 23:16:05 +02:00
2023-07-28 04:28:26 +02:00
## v0.2.0
2023-07-28 04:23:46 +02:00
2024-06-25 00:07:29 +02:00
- Added `HxRequestGuardLayer`, allowing you to protect an entire router from non-htmx requests.
2023-07-28 04:23:46 +02:00
2023-07-28 04:28:26 +02:00
## v0.1.0
2023-07-28 04:23:46 +02:00
- Initial release.