From 425717d6f7d8ef5d85d97021a34bdbc434f6b392 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 30 Jun 2022 01:23:07 +0100 Subject: [PATCH] update changelog --- actix-http/CHANGES.md | 8 +++++--- actix-web/src/middleware/compress.rs | 1 - 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index dd6051b85..c9ab687f6 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,13 +1,15 @@ # Changes ## Unreleased - 2022-xx-xx -### Fixed -- Websocket parser no longer throws endless overflow errors after receiving an oversized frame. [#2790] - ### Changed - Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency. +### Fixed +- Websocket parser no longer throws endless overflow errors after receiving an oversized frame. [#2790] +- Retain previously set Vary headers when using compression encoder. [#2798] + [#2790]: https://github.com/actix/actix-web/pull/2790 +[#2798]: https://github.com/actix/actix-web/pull/2798 ## 3.1.0 - 2022-06-11 diff --git a/actix-web/src/middleware/compress.rs b/actix-web/src/middleware/compress.rs index 000167ea5..ed4291bed 100644 --- a/actix-web/src/middleware/compress.rs +++ b/actix-web/src/middleware/compress.rs @@ -322,7 +322,6 @@ mod tests { .await; let req = test::TestRequest::default() - .uri("/single") .insert_header((header::ACCEPT_ENCODING, "gzip")) .to_request(); let res = test::call_service(&app, req).await;