actix v0.10.0 Release Notes
Release Date: 2020-09-10 // over 4 years ago-
๐ Changed
SinkWrite::write
calls now send all items correctly using an internal buffer. #384- โ Add
Sync
bound forBox<dyn Sender>
trait object that makingRecipient
aSend
+Sync
type. #403 - โก๏ธ Update
parking_lot
to 0.11 #404 - โ Remove unnecessary
PhantomData
field fromRequest
making itSend + Sync
regardless ifRequest
's type-argument isSend
orSync
#407
Previous changes from v0.10.0-alpha.3
-
[0.10.0-alpha.3] - 2020-05-13
๐ Changed
โก๏ธ Update
tokio-util
dependency to 0.3,FramedWrite
trait bound is changed. #365๐ Only poll dropped ContextFut if event loop is running. #374
โ Minimum Rust version is now 1.40 (to be able to use
#[cfg(doctest)]
)๐ Fixed
- ๐ Fix
ActorFuture::poll_next
impl forStreamThen
to not lose inner future when it's pending. #376
- ๐ Fix