Releases: tokio-rs/axum
Releases · tokio-rs/axum
axum-macros - v0.1.1
- Add
#[derive(TypedPath)]for use with axum-extra's new "type safe" routing API (#756)
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
IntoResponseforbytes::BytesMutandbytes::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
Routers at/(#691) - fixed: Make
nest("", service)work and mean the same asnest("/", service)(#691) - fixed: Replace response code
301with308for trailing slash redirects. Also deprecates
Redirect::found(302) in favor ofRedirect::temporary(307) orRedirect::to(303).
This is to prevent clients from changing non-GETrequests toGETrequests (#682)