mirror of
https://github.com/actix/actix-extras.git
synced 2025-01-22 14:55:56 +01:00
98847b9279
* Ensure TCP connection is properly shut down when session is dropped * Update CHANGELOG.md --------- Co-authored-by: Rob Ede <robjtede@icloud.com>
713 B
713 B
Changelog
Unreleased
- Ensure TCP connection is properly shut down when session is dropped.
0.3.0
- Add
AggregatedMessage[Stream]
types. - Add
MessageStream::max_frame_size()
setter method. - Add
Session::continuation()
method. - The
Session::text()
method now receives animpl Into<ByteString>
, making broadcasting text messages more efficient. - Remove type parameters from
Session::{text, binary}()
methods, replacing with equivalentimpl Trait
parameters. - Reduce memory usage by
take
-ing (rather thansplit
-ing) the encoded buffer when yielding bytes in the response stream.
0.2.5
- Adopted into @actix org from https://git.asonix.dog/asonix/actix-actorless-websockets.