actix v0.10.0 Release Notes

Release Date: 2020-09-10 // over 3 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