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

Make web::Path a tuple struct with a public inner value (#1594)

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Jonas Platte
2020-07-21 01:54:26 +02:00
committed by GitHub
parent 43c362779d
commit f8d5ad6b53
5 changed files with 55 additions and 33 deletions

View File

@ -4,10 +4,13 @@
### Changed
* `PayloadConfig` is now also considered in `Bytes` and `String` extractors when set
using `App::data`. [#1610]
* `web::Path` now has a public representation: `web::Path(pub T)` that enables
destructuring. [#1594]
### Fixed
* Memory leak of app data in pooled requests. [#1609]
[#1594]: https://github.com/actix/actix-web/pull/1594
[#1609]: https://github.com/actix/actix-web/pull/1609
[#1610]: https://github.com/actix/actix-web/pull/1610