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

Add web::ReqData<T> extractor (#1748)

Co-authored-by: Jonas Platte <jonas@lumeo.com>
This commit is contained in:
Rob Ede
2020-10-24 18:49:50 +01:00
committed by GitHub
parent 98243db9f1
commit d45a1aa6b6
5 changed files with 197 additions and 23 deletions

View File

@ -1,11 +1,17 @@
# Changes
## Unreleased - 2020-xx-xx
* Implement Logger middleware regex exclude pattern [#1723]
* Print unconfigured `Data<T>` type when attempting extraction. [#1743]
### Added
* Implement `exclude_regex` for Logger middleware. [#1723]
* Add request-local data extractor `web::ReqData`. [#1748]
### Changed
* Print non-configured `Data<T>` type when attempting extraction. [#1743]
[#1723]: https://github.com/actix/actix-web/pull/1723
[#1743]: https://github.com/actix/actix-web/pull/1743
[#1748]: https://github.com/actix/actix-web/pull/1748
## 3.1.0 - 2020-09-29
### Changed