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 for Box<dyn Sender> trait object that making Recipient a Send + Sync type. #403
    • โšก๏ธ Update parking_lot to 0.11 #404
    • โœ‚ Remove unnecessary PhantomData field from Request making it Send + Sync regardless if Request's type-argument is Send or Sync #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 for StreamThen to not lose inner future when it's pending. #376