Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 3.94 KB

File metadata and controls

63 lines (49 loc) · 3.94 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

  • Make FromRequest default to being generic over axum::body::Body (#146)

Breaking changes

  • Change WebSocket API to use an extractor (#121)
  • Add RoutingDsl::or for combining routes. (#108)
  • Ensure a HandleError service created from axum::ServiceExt::handle_error does not implement RoutingDsl as that could lead to confusing routing behavior. (#120)
  • Remove QueryStringMissing as it was no longer being used
  • extract::extractor_middleware::ExtractorMiddlewareResponseFuture moved to extract::extractor_middleware::future::ResponseFuture (#133)
  • routing::BoxRouteFuture moved to routing::future::BoxRouteFuture (#133)
  • routing::EmptyRouterFuture moved to routing::future::EmptyRouterFuture (#133)
  • routing::RouteFuture moved to routing::future::RouteFuture (#133)
  • service::BoxResponseBodyFuture moved to service::future::BoxResponseBodyFuture (#133)
  • The following types no longer implement Copy (#132):
    • EmptyRouter
    • ExtractorMiddleware
    • ExtractorMiddlewareLayer

0.1.3 (06. August, 2021)

  • Fix stripping prefix when nesting services at / (#91)
  • Add support for WebSocket protocol negotiation (#83)
  • Use pin-project-lite instead of pin-project (#95)
  • Re-export http crate and hyper::Server (#110)
  • Fix Query and Form extractors giving bad request error when query string is empty. (#117)
  • Add Path extractor. (#124)
  • Fixed the implementation of IntoResponse of (HeaderMap, T) and (StatusCode, HeaderMap, T) would ignore headers from T (#137)
  • Deprecate extract::UrlParams and extract::UrlParamsMap. Use extract::Path instead (#138)

0.1.2 (01. August, 2021)

  • Implement Stream for WebSocket (#52)
  • Implement Sink for WebSocket (#52)
  • Implement Deref most extractors (#56)
  • Return 405 Method Not Allowed for unsupported method for route (#63)
  • Add extractor for remote connection info (#55)
  • Improve error message of MissingExtension rejections (#72)
  • Improve documentation for routing (#71)
  • Clarify required response body type when routing to tower::Services (#69)
  • Add axum::body::box_body to converting an http_body::Body to axum::body::BoxBody (#69)
  • Add axum::sse for Server-Sent Events (#75)
  • Mention required dependencies in docs (#77)
  • Fix WebSockets failing on Firefox (#76)

0.1.1 (30. July, 2021)

  • Misc readme fixes.

0.1.0 (30. July, 2021)

  • Initial release.