Skip to content

Release v2.2.0

Choose a tag to compare

@github-actions github-actions released this 24 Apr 07:57
· 61 commits to main since this release

Fixed

  • EtaggedHandlerResponse<T> tuple order corrected to (StatusCode, ETag, Json<ApiResponse<T>>) — axum 0.8 requires StatusCode as the first element; the previous (ETag, StatusCode, Json<...>) order caused the Handler trait bound to fail at call sites.
  • etagged(etag, value) return tuple updated to match.