mirror of https://github.com/fafhrd91/actix-web
docs: update changelog
This commit is contained in:
parent
7b79694b14
commit
b516280981
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
- Add `Error::add_response_mapper()` to allow middleware to modify error-generated responses before they are sent. [#2979]
|
||||
|
||||
[#2979]: https://github.com/actix/actix-web/pull/2979
|
||||
|
||||
## 4.14.0
|
||||
|
||||
- Add `HttpRequest::{cookies_raw,cookie_raw}` and `ServiceRequest::{cookies_raw,cookie_raw}` for reading request cookies without percent-decoding names and values. [#3542]
|
||||
|
|
|
|||
|
|
@ -41,13 +41,9 @@
|
|||
|
||||
### Experimental features
|
||||
|
||||
To enable faster release iterations, we mark some features as experimental.
|
||||
These features are prefixed with `experimental` and a breaking change may happen at any release.
|
||||
Please use them in a production environment at your own risk.
|
||||
To enable faster release iterations, we mark some features as experimental. These features are prefixed with `experimental` and a breaking change may happen at any release. Please use them in a production environment at your own risk.
|
||||
|
||||
- `experimental-introspection`: exposes route and method reporting helpers for local diagnostics
|
||||
and tooling. See [`examples/introspection.rs`](examples/introspection.rs) and
|
||||
[`examples/introspection_multi_servers.rs`](examples/introspection_multi_servers.rs).
|
||||
- `experimental-introspection`: exposes route and method reporting helpers for local diagnostics and tooling. See [`examples/introspection.rs`](examples/introspection.rs) and [`examples/introspection_multi_servers.rs`](examples/introspection_multi_servers.rs).
|
||||
|
||||
## Documentation
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue