diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index d2b090ab..174534b9 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 0.5.6 + +- **fixed:** Fix IntoResponse for tuples overriding error response codes ([#3603]) + +[#3603]: https://github.com/tokio-rs/axum/pull/3603 + # 0.5.5 Released without changes to fix docs.rs build. diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 2d3c5210..ea7d2586 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -12,9 +12,11 @@ and this project adheres to [Semantic Versioning]. - `vpath!` macro now stops the compilation if your path is using deprecated path variables in the old `107` format, such as `:var` and `*var`. the only allowed way now is `{var}`. ([#3618]) +- **fixed:** Return specific error message when multipart body limit is exceeded ([#3611]) [#3664]: https://github.com/tokio-rs/axum/pull/3664 [#3618]: https://github.com/tokio-rs/axum/pull/3618 +[#3611]: https://github.com/tokio-rs/axum/pull/3611 # 0.12.5 diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index e54b2ab8..b3871a32 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -11,9 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **added:** `WebSocketUpgrade::{requested_protocols, set_selected_protocol}` for more flexible subprotocol selection ([#3597]) - **changed:** Update minimum rust version to 1.80 ([#3620]) +- **fixed:** Set connect endpoint on correct field in MethodRouter ([#3656]) +- **fixed:** Return specific error message when multipart body limit is exceeded ([#3611]) [#3597]: https://github.com/tokio-rs/axum/pull/3597 [#3620]: https://github.com/tokio-rs/axum/pull/3620 +[#3656]: https://github.com/tokio-rs/axum/pull/3656 +[#3611]: https://github.com/tokio-rs/axum/pull/3611 # 0.8.8