From d3ae0fb9f11eb0019d9f88b70ee582de4e6bd22b Mon Sep 17 00:00:00 2001 From: fakeshadow <24548779@qq.com> Date: Sun, 3 Jan 2021 14:12:46 +0800 Subject: [PATCH] fix actix-http changelog --- actix-http/CHANGES.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index fde8712c7..e08aef5e5 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -6,17 +6,16 @@ * Upgrade `bytes` to `1` * Upgrade `h2` to `0.3` - ### Removed * Deprecated `on_connect` methods have been removed. Prefer the new `on_connect_ext` technique. [#1857] * Remove `ResponseError` impl for `actix::actors::resolver::ResolverError` due to deprecate of resolver actor. [#1813] -* Remove `ConnectError::SslHandshakeError` and re-export of `openssl::HandshakeError`. - due to the removal of this type from `openssl` crate. openssl handshake error would - return as `ConnectError::SslError`. [#1813] +* Remove `ConnectError::SslHandshakeError` and re-export of `HandshakeError`. + due to the removal of this type from `tokio-openssl` crate. openssl handshake + error would return as `ConnectError::SslError`. [#1813] -[#1813]: https://github.com/actix/actix-web/pull/1857 +[#1813]: https://github.com/actix/actix-web/pull/1813 [#1857]: https://github.com/actix/actix-web/pull/1857 @@ -26,9 +25,6 @@ * `Accept::mime_precedence` and `Accept::mime_preference`. [#1793] * `TryFrom` and `TryFrom` for `http::header::Quality`. [#1797] -### Changed -* Upgrade `bytes` to `0.6`. - ### Fixed * Started dropping `transfer-encoding: chunked` and `Content-Length` for 1XX and 204 responses. [#1767]