1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 15:07:42 +02:00

refactor awc::ClientBuilder (#2008)

This commit is contained in:
fakeshadow
2021-02-18 04:30:09 -08:00
committed by GitHub
parent 1838d9cd0f
commit 946cccaa1a
11 changed files with 91 additions and 73 deletions

View File

@ -6,10 +6,15 @@
### Changed
* Feature `cookies` is now optional and enabled by default. [#1981]
* `ClientBuilder::connector` method would take `actix_http::client::Connector<T, U>` type. [#2008]
### Removed
* `ClientBuilder::default` function [#2008]
* `ClientBuilder::disable_redirects` and `ClientBuilder::max_redirects` method [#2008]
[#1931]: https://github.com/actix/actix-web/pull/1931
[#1981]: https://github.com/actix/actix-web/pull/1981
[#2008]: https://github.com/actix/actix-web/pull/2008
## 3.0.0-beta.2 - 2021-02-10
### Added