mirror of https://github.com/fafhrd91/actix-web
update changelog
This commit is contained in:
parent
09eac2572f
commit
e316fa1d3b
|
@ -3,6 +3,7 @@
|
|||
## Unreleased - 2021-xx-xx
|
||||
### Changed
|
||||
* Feature `cookies` is now optional and disabled by default. [#1981]
|
||||
* `ws::hash_key` now returns array. [#2035]
|
||||
|
||||
### Removed
|
||||
* re-export of `futures_channel::oneshot::Canceled` is removed from `error` mod. [#1994]
|
||||
|
@ -10,6 +11,7 @@
|
|||
|
||||
[#1981]: https://github.com/actix/actix-web/pull/1981
|
||||
[#1994]: https://github.com/actix/actix-web/pull/1994
|
||||
[#2035]: https://github.com/actix/actix-web/pull/2035
|
||||
|
||||
|
||||
## 3.0.0-beta.3 - 2021-02-10
|
||||
|
|
|
@ -104,7 +104,7 @@ package = "openssl"
|
|||
features = ["vendored"]
|
||||
|
||||
[[example]]
|
||||
name = "h2-ws"
|
||||
name = "ws"
|
||||
required-features = ["rustls"]
|
||||
|
||||
[[bench]]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
//! Sets up a WebSocket server over TCP and TLS.
|
||||
//! Sends a heartbeat message every 4 seconds and does not respond to any incoming frames.
|
||||
//! Sends a heartbeat message every 4 seconds but does not respond to any incoming frames.
|
||||
|
||||
extern crate tls_rustls as rustls;
|
||||
|
Loading…
Reference in New Issue