From b227167d49ba92910cc3a9a8b823f9f7a7e2b69b Mon Sep 17 00:00:00 2001 From: valaphee <32491319+valaphee@users.noreply.github.com> Date: Sat, 13 Jul 2024 17:11:05 +0200 Subject: [PATCH] Update CHANGELOG --- actix-files/CHANGES.md | 2 ++ actix-http/CHANGES.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index e94f43907..d69ebaff8 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -2,6 +2,8 @@ ## Unreleased +- Do not set content-encoding to identity for range requests + ## 0.6.6 - Update `tokio-uring` dependency to `0.4`. diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index b2e5af79f..cb5b04329 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -6,6 +6,10 @@ - Implement `FromIterator<(HeaderName, HeaderValue)>` for `HeaderMap`. +### Changed + +- Prevent compression of Partial Content. + ## 3.8.0 ### Added