Actix Versions Save

Actor framework for Rust.

actix-v0.13.3

2 months ago
  • No significant changes since 0.13.2.

actix-v0.13.2

2 months ago
  • Expose ContextFut::restart.
  • Unquoted types are now allowed in the #[rtype(result = TYPE)] position when type is a path.

actix_derive-v0.6.1

7 months ago
  • Update syn dependency to 2.

actix-v0.13.1

7 months ago

Added

  • Add SyncArbiter::start_with_thread_builder().
  • Derive PartialEq and Eq for MailboxError.
  • Minimum supported Rust version (MSRV) is now 1.68.

Fixed

  • Fix SinkWrite sometimes not sending all messages in its buffer.

broker-v0.4.3

1 year ago
  • Fix at-least-once delivery guarantee for IssueAsync. #536

broker-v0.4.2

1 year ago
  • Add support for actix v0.13.

actix-v0.13.0

1 year ago

Added

  • Implement Clone for WeakRecipient. #518
  • Implement From<Recipient> for WeakRecipient. #518
  • Add Recipient::downgrade method for obtaining a WeakRecipient. #518
  • Extend Sender trait with a downgrade method. #518

Changed

  • Make WeakSender trait public rather than crate-public. #518
  • Updated tokio-util dependency to 0.7. #???
  • Updated minimum supported Rust version to 1.49.

Removed

  • Remove Resolver actor. #451

broker-v0.4.1

2 years ago
  • Add support for actix v0.12 (in addition to v0.11).

v0.12.0

2 years ago

Added

  • Add fut::try_future::ActorTryFuture. #419
  • Add fut::try_future::ActorTryFutureExt trait with map_ok, map_err and and_then combinator. #419
  • Add fut::future::ActorFutureExt::boxed_local. #493
  • Implemented MessageResponse for Vec<T>. #501

Changed

  • Make Context::new public. #491
  • SinkWriter::write returns Result instead of Option. #499

v0.11.1

3 years ago

Fixed

  • Panics caused by instant cancellation of a spawned future. #484