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

fix unrecoverable Err(Overflow) in websocket frame parser (#2790)

This commit is contained in:
oatoam
2022-06-24 11:46:17 +08:00
committed by GitHub
parent 5d0e8138ee
commit de92b3be2e
2 changed files with 41 additions and 14 deletions

View File

@ -1,8 +1,14 @@
# Changes
## Unreleased - 2022-xx-xx
### Fixed
- Websocket parser no longer throws endless overflow errors after receiving an oversized frame. [#2790]
### Changed
- Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency.
[#2790]: https://github.com/actix/actix-web/pull/2790
## 3.1.0 - 2022-06-11
### Changed