From 27e87028b47e9da1e6b7fc5710c128c7a22ab800 Mon Sep 17 00:00:00 2001 From: Arthur LE MOIGNE Date: Tue, 31 Aug 2021 10:51:29 +0200 Subject: [PATCH] Update CHANGES --- CHANGES.md | 6 ++---- actix-http/CHANGES.md | 5 ++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bb09210c9..a08d8cfea 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,13 +5,11 @@ * Re-export actix-service `ServiceFactory` in `dev` module. [#2325] ### Changes +* Fix quality parse error in Accept-Encoding HTTP header. [#2344] * Minimum supported Rust version (MSRV) is now 1.51. [#2325]: https://github.com/actix/actix-web/pull/2325 - -### Changed -* Fix quality parse error in Accept-Encoding HTTP header. [#2344] - +[#2344]: https://github.com/actix/actix-web/pull/2344 ## 4.0.0-beta.8 - 2021-06-26 ### Added diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index 2d91766c8..9a9a4527c 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -7,18 +7,17 @@ ### Fixed * Remove slice creation pointing to potential uninitialized data on h1 encoder. [#2364] * Remove `Into` bound on `Encoder` body types. [#2375] +* Fix quality parse error in Accept-Encoding HTTP header. [#2344] [#2364]: https://github.com/actix/actix-web/pull/2364 [#2375]: https://github.com/actix/actix-web/pull/2375 +[#2344]: https://github.com/actix/actix-web/pull/2344 ## 3.0.0-beta.8 - 2021-08-09 ### Fixed * Potential HTTP request smuggling vulnerabilities. [RUSTSEC-2021-0081](https://github.com/rustsec/advisory-db/pull/977) -### Changed -* Fix quality parse error in Accept-Encoding HTTP header. [#2344] - ## 3.0.0-beta.8 - 2021-06-26 ### Changed * Change compression algorithm features flags. [#2250]