Releases: tokio-rs/axum
Releases · tokio-rs/axum
axum-extra - v0.1.4
- fix: Depend on the right versions of axum and axum-macros (#782)
axum-extra - v0.1.3
axum-core - v0.1.2
- added: Implement
IntoResponse
forbytes::BytesMut
andbytes::Chain<T, U>
(#767)
v0.4.5
- Reference axum-macros instead of axum-debug. The latter has been superseded by
axum-macros and is deprecated (#738)
v0.4.4
- fixed: Fix using incorrect path prefix when nesting
Router
s at/
(#691) - fixed: Make
nest("", service)
work and mean the same asnest("/", service)
(#691) - fixed: Replace response code
301
with308
for trailing slash redirects. Also deprecates
Redirect::found
(302
) in favor ofRedirect::temporary
(307
) orRedirect::to
(303
).
This is to prevent clients from changing non-GET
requests toGET
requests (#682)