diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md
index be9775e77..5be622951 100644
--- a/actix-http/CHANGES.md
+++ b/actix-http/CHANGES.md
@@ -15,6 +15,7 @@
### Removed
* Remove unnecessary `MessageBody` bound on types passed to `body::AnyBody::new`. [#2468]
+* Move `body::AnyBody` to `awc`. Replaced with `EitherBody` and `BoxBody`. [#2468]
[#2483]: https://github.com/actix/actix-web/pull/2483
[#2468]: https://github.com/actix/actix-web/pull/2468
diff --git a/actix-http/src/body/message_body.rs b/actix-http/src/body/message_body.rs
index a0c672cf2..6362e7eef 100644
--- a/actix-http/src/body/message_body.rs
+++ b/actix-http/src/body/message_body.rs
@@ -29,210 +29,214 @@ pub trait MessageBody {
) -> Poll