mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
use idenity encoding on client if no compression features are enabled (#1737)
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com> Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
parent
41e7cec72f
commit
06e5042b94
@ -1,8 +1,15 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
|
### Changed
|
||||||
* Upgrade `base64` to `0.13`.
|
* Upgrade `base64` to `0.13`.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* Use `Accept-Encoding: identity` instead of `Accept-Encoding: br` when no compression feature is enabled [#1737]
|
||||||
|
|
||||||
|
[#1737]: https://github.com/actix/actix-web/pull/1737
|
||||||
|
|
||||||
|
|
||||||
## 2.0.0 - 2020-09-11
|
## 2.0.0 - 2020-09-11
|
||||||
### Changed
|
### Changed
|
||||||
* `Client::build` was renamed to `Client::builder`.
|
* `Client::build` was renamed to `Client::builder`.
|
||||||
|
@ -44,6 +44,7 @@ actix-rt = "1.0.0"
|
|||||||
|
|
||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
bytes = "0.5.3"
|
bytes = "0.5.3"
|
||||||
|
cfg-if = "1.0"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures-core = { version = "0.3.5", default-features = false }
|
futures-core = { version = "0.3.5", default-features = false }
|
||||||
log =" 0.4"
|
log =" 0.4"
|
||||||
|
@ -21,10 +21,15 @@ use crate::frozen::FrozenClientRequest;
|
|||||||
use crate::sender::{PrepForSendingError, RequestSender, SendClientRequest};
|
use crate::sender::{PrepForSendingError, RequestSender, SendClientRequest};
|
||||||
use crate::ClientConfig;
|
use crate::ClientConfig;
|
||||||
|
|
||||||
#[cfg(any(feature = "flate2-zlib", feature = "flate2-rust"))]
|
cfg_if::cfg_if! {
|
||||||
const HTTPS_ENCODING: &str = "br, gzip, deflate";
|
if #[cfg(any(feature = "flate2-zlib", feature = "flate2-rust"))] {
|
||||||
#[cfg(not(any(feature = "flate2-zlib", feature = "flate2-rust")))]
|
const HTTPS_ENCODING: &str = "br, gzip, deflate";
|
||||||
const HTTPS_ENCODING: &str = "br";
|
} else if #[cfg(feature = "compress")] {
|
||||||
|
const HTTPS_ENCODING: &str = "br";
|
||||||
|
} else {
|
||||||
|
const HTTPS_ENCODING: &str = "identity";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// An HTTP Client request builder
|
/// An HTTP Client request builder
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user