From a7b7d56cfb02c8c16e0b60329ee302c9c3c3e2d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Ml=C3=A1dek?= Date: Mon, 14 Oct 2024 10:31:47 +0200 Subject: [PATCH] Update changelog (#2985) --- axum/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 5410ddca..a5d76c31 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- **added:** Add `method_not_allowed_fallback` to set a fallback when a path matches but there is no handler for the given HTTP method ([#2903]) - **added:** Add `MethodFilter::CONNECT`, `routing::connect[_service]` and `MethodRouter::connect[_service]` ([#2961]) - **added:** Add `NoContent` as a self-described shortcut for `StatusCode::NO_CONTENT` ([#2978]) +[#2903]: https://github.com/tokio-rs/axum/pull/2903 [#2961]: https://github.com/tokio-rs/axum/pull/2961 [#2978]: https://github.com/tokio-rs/axum/pull/2978