diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index cfced32acd..a6aa1cfa12 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -8,12 +8,14 @@ and this project adheres to [Semantic Versioning]. # Unreleased - **fixed:** `Host` extractor includes port number when parsing authority ([#2242]) +- **changed:** The `multipart` feature is no longer on by default ([#3058]) - **added:** Add `RouterExt::typed_connect` ([#2961]) - **added:** Add `json!` for easy construction of JSON responses ([#2962]) - **added:** Add `InternalServerError` response for logging an internal error and returning HTTP 500 in a convenient way. ([#3010]) [#2242]: https://github.com/tokio-rs/axum/pull/2242 +[#3058]: https://github.com/tokio-rs/axum/pull/3058 [#2961]: https://github.com/tokio-rs/axum/pull/2961 [#2962]: https://github.com/tokio-rs/axum/pull/2962 [#3010]: https://github.com/tokio-rs/axum/pull/3010 diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 11079e4739..d06530459f 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/tokio-rs/axum" version = "0.10.0-alpha.1" [features] -default = ["tracing", "multipart"] +default = ["tracing"] async-read-body = ["dep:tokio-util", "tokio-util?/io", "dep:tokio"] attachment = ["dep:tracing"]