1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

Clear http requests pool on app service drop #860

This commit is contained in:
Nikolay Kim
2019-05-22 11:18:33 -07:00
parent 5826f39dbe
commit 12842871fe
4 changed files with 69 additions and 6 deletions

View File

@ -1,13 +1,23 @@
# Changes
## [1.0.0] - 2019-05-xx
### Add
* Add `test::TestRequest::set_json()` convenience method to automatically
serialize data and set header in test requests.
### Fixed
* Clear http requests pool on app service drop #860
## [1.0.0-rc] - 2019-05-18
### Add
* Add `Query<T>::from_query()` to extract parameters from a query string. #846
* `QueryConfig`, similar to `JsonConfig` for customizing error handling of query extractors.
* Add `test::TestRequest::set_json` convenience method to automatically
serialize data and set header in test requests.
### Changes