diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 7feec2a1..708af896 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -14,6 +14,7 @@ - `X_FORWARDED_FOR` - `X_FORWARDED_HOST` - `X_FORWARDED_PROTO` +- New method `response_with_level` for `Encoder` for setup compress level. [#2948] ### Performance - Improve overall performance of operations on `Extensions`. [#2890] @@ -24,6 +25,7 @@ [#2957]: https://github.com/actix/actix-web/pull/2957 [#2955]: https://github.com/actix/actix-web/pull/2955 [#2956]: https://github.com/actix/actix-web/pull/2956 +[#2948]: https://github.com/actix/actix-web/pull/2948 ## 3.2.2 - 2022-09-11 diff --git a/actix-web/CHANGES.md b/actix-web/CHANGES.md index 6fc3c93d..dc38da66 100644 --- a/actix-web/CHANGES.md +++ b/actix-web/CHANGES.md @@ -8,6 +8,7 @@ - Add rudimentary redirection service at `web::redirect()` / `web::Redirect`. [#1961] - Add `guard::Acceptable` for matching against `Accept` header mime types. [#2265] - Add fallible versions of test helpers: `try_call_service`, `try_call_and_read_body_json`, `try_read_body`, and `try_read_body_json`. [#2961] +- Add level setup for `middleware::Compress`. [#2948] ### Fixed - Add `Allow` header to `Resource`'s default responses when no routes are matched. [#2949] @@ -19,6 +20,7 @@ [#2867]: https://github.com/actix/actix-web/pull/2867 [#2949]: https://github.com/actix/actix-web/pull/2949 [#2961]: https://github.com/actix/actix-web/pull/2961 +[#2948]: https://github.com/actix/actix-web/pull/2948 ## 4.2.1 - 2022-09-12 ### Fixed