Releases: tokio-rs/axum
Releases · tokio-rs/axum
axum-extra - v0.3.2
- added: Add
extract::Form
which supports multi-value items (#1031)
axum - v0.5.5
- fixed: Correctly handle
GET
,HEAD
, andOPTIONS
requests inContentLengthLimit
.
Request with these methods are now accepted if they do not have aContent-Length
header, and
the request body will not be checked. If they do have aContent-Length
header they'll be
rejected. This allowsContentLengthLimit
to be used as middleware around several routes,
includingGET
routes (#989) - added: Add
MethodRouter::{into_make_service, into_make_service_with_connect_info}
(#1010)
axum-macros - v0.2.1
axum-extra - v0.3.1
axum-core - v0.2.4
- added: Implement
IntoResponse
andIntoResponseParts
forhttp::Extensions
(#975) - added: Implement
IntoResponse
for(http::response::Parts, impl IntoResponse)
(#950) - added: Implement
IntoResponse
for(http::response::Response<()>, impl IntoResponse)
(#950) - added: Implement
IntoResponse for (Parts | Request<()>, $(impl IntoResponseParts)+, impl IntoResponse)
(#980)
axum-extra - v0.3.0
axum - v0.5.4
axum-core - v0.2.3
- added: Add
response::ErrorResponse
andresponse::Result
for
IntoResponse
-based error handling (#921)
axum - v0.5.3
axum - v0.5.2
Yanked, as it contained an accidental breaking change.