Skip to content

Releases: tokio-rs/axum

axum - v0.6.19

17 Jul 08:14
67f6494
Compare
Choose a tag to compare
  • added: Add axum::extract::Query::try_from_uri (#2058)
  • added: Implement IntoResponse for Box<str> and Box<[u8]> (#2035)
  • fixed: Fix bugs around merging routers with nested fallbacks (#2096)
  • fixed: Fix .source() of composite rejections (#2030)
  • fixed: Allow unreachable code in #[debug_handler] (#2014)
  • change: Update tokio-tungstenite to 0.19 (#2021)
  • change: axum's MSRV is now 1.63 (#2021)

axum-macros - v0.3.8

17 Jul 08:15
67f6494
Compare
Choose a tag to compare
  • fixed: Allow unreachable code in #[debug_handler] (#2014)

axum-extra - v0.7.5

17 Jul 08:15
67f6494
Compare
Choose a tag to compare
  • fixed: Remove explicit auto deref from PrivateCookieJar example (#2028)

axum - v0.6.18

30 Apr 11:36
79ea274
Compare
Choose a tag to compare
  • fixed: Don't remove the Sec-WebSocket-Key header in WebSocketUpgrade (#1972)

axum - v0.6.17

25 Apr 13:57
b7baac2
Compare
Choose a tag to compare
  • fixed: Fix fallbacks causing a panic on CONNECT requests (#1958)

axum - v0.6.16

18 Apr 18:41
c31bea2
Compare
Choose a tag to compare
  • fixed: Don't allow extracting MatchedPath in fallbacks (#1934)
  • fixed: Fix panic if Router with something nested at / was used as a fallback (#1934)
  • added: Document that Router::new().fallback(...) isn't optimal (#1940)

axum-extra - v0.7.4

18 Apr 18:42
c31bea2
Compare
Choose a tag to compare
  • added: Add Html response type (#1921)
  • added: Add Css response type (#1921)
  • added: Add JavaScript response type (#1921)
  • added: Add Wasm response type (#1921)

axum - v0.6.15

12 Apr 07:37
cf1ed9b
Compare
Choose a tag to compare
  • fixed: Removed additional leftover debug messages (#1927)

axum - v0.6.14

11 Apr 17:39
b92b91e
Compare
Choose a tag to compare
  • fixed: Removed leftover "path_router hit" debug message (#1925)

axum - v0.6.13

11 Apr 15:25
51edc9c
Compare
Choose a tag to compare
  • added: Log rejections from built-in extractors with the
    axum::rejection=trace target (#1890)
  • fixed: Fixed performance regression with Router::nest introduced in
    0.6.0. nest now flattens the routes which performs better (#1711)
  • fixed: Extracting MatchedPath in nested handlers now gives the full
    matched path, including the nested path (#1711)
  • added: Implement Deref and DerefMut for built-in extractors (#1922)