mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-06 00:00:17 +02:00
* Remove `RequestParts::take_extensions` * fix out of date docs * Remove RequestAlreadyExtracted and replace it with BodyAlreadyExtracted * fix docs * fix test * Update axum-core/src/extract/mod.rs Co-authored-by: Jonas Platte <[email protected]> * Remove macro only used once Co-authored-by: Jonas Platte <[email protected]>
32 lines
966 B
Markdown
32 lines
966 B
Markdown
# Changelog
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
# Unreleased
|
|
|
|
- None.
|
|
|
|
# 0.1.2 (13. January, 2021)
|
|
|
|
- **fix:** Depend on tower with `default_features = false` ([#666])
|
|
- **breaking:** `CachedRejection` has been removed ([#699])
|
|
- **breaking:** `<Cached<T> as FromRequest>::Error` is now `T::Rejection`. ([#699])
|
|
|
|
[#666]: https://github.com/tokio-rs/axum/pull/666
|
|
[#699]: https://github.com/tokio-rs/axum/pull/699
|
|
|
|
# 0.1.1 (27. December, 2021)
|
|
|
|
- Add `middleware::from_fn` for creating middleware from async functions ([#656])
|
|
- Add support for returning pretty JSON response in `response::ErasedJson` ([#662])
|
|
|
|
[#656]: https://github.com/tokio-rs/axum/pull/656
|
|
[#662]: https://github.com/tokio-rs/axum/pull/662
|
|
|
|
# 0.1.0 (02. December, 2021)
|
|
|
|
- Initial release.
|