1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-27 17:52:56 +01:00

update CHANGES.md

This commit is contained in:
Denis Kayshev 2023-01-18 20:46:18 +03:00
parent c30228068e
commit 1c14195c4b
No known key found for this signature in database
GPG Key ID: B22A36F44C0F5E19
2 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@
- `X_FORWARDED_FOR`
- `X_FORWARDED_HOST`
- `X_FORWARDED_PROTO`
- New method `response_with_level` for `Encoder<B>` for setup compress level. [#2948]
### Performance
- Improve overall performance of operations on `Extensions`. [#2890]
@ -24,6 +25,7 @@
[#2957]: https://github.com/actix/actix-web/pull/2957
[#2955]: https://github.com/actix/actix-web/pull/2955
[#2956]: https://github.com/actix/actix-web/pull/2956
[#2948]: https://github.com/actix/actix-web/pull/2948
## 3.2.2 - 2022-09-11

View File

@ -8,6 +8,7 @@
- Add rudimentary redirection service at `web::redirect()` / `web::Redirect`. [#1961]
- Add `guard::Acceptable` for matching against `Accept` header mime types. [#2265]
- Add fallible versions of test helpers: `try_call_service`, `try_call_and_read_body_json`, `try_read_body`, and `try_read_body_json`. [#2961]
- Add level setup for `middleware::Compress`. [#2948]
### Fixed
- Add `Allow` header to `Resource`'s default responses when no routes are matched. [#2949]
@ -19,6 +20,7 @@
[#2867]: https://github.com/actix/actix-web/pull/2867
[#2949]: https://github.com/actix/actix-web/pull/2949
[#2961]: https://github.com/actix/actix-web/pull/2961
[#2948]: https://github.com/actix/actix-web/pull/2948
## 4.2.1 - 2022-09-12
### Fixed