Actix Versions Save

Actor framework for Rust.

v0.9.0

4 years ago

Changes

[0.9.0] 2019-12-20

Fixed

  • Fix ResolveFuture type signature.

[0.9.0-alpha.2] 2019-12-16

Fixed

  • Fix Resolve actor's panic

[0.9.0-alpha.1] 2019-12-15

Added

  • Added Context::connected() to check any addresses are alive

  • Added fut::ready() future

Changed

  • Migrate to std::future, tokio 0.2 and actix-rt 1.0.0 @bcmcmill #300

  • Upgrade derive_more to 0.99.2

  • Upgrade smallvec to 1.0.0

Fixed

  • Added #[must_use] attribute to ActorFuture and ActorStream

v0.9.0-alpha.1

4 years ago

CHANGES

Added

  • Added Context::connected() to check any addresses are alive

  • Added fut::ready() future

Changed

  • Migrate to std::future, tokio 0.2 and actix-rt 1.0.0 @bcmcmill #300

  • Upgrade derive_more to 0.99.2

  • Upgrade smallvec to 1.0.0

Fixed

  • Added #[must_use] attribute to ActorFuture and ActorStream

v0.8.3

4 years ago

Changes

Fixed

  • Stop actor on async context drop

v0.8.2

5 years ago

Changes

Changed

  • Enable http feature by default

  • Upgrade to actix-http 0.2

v0.8.1

5 years ago

CHANGES

Added

  • Added std::error::Error impl for SendError

Fixed

  • Fixed concurrent system registry insert #248

v0.8.0

5 years ago

CHANGES

Added

  • Added std::error::Error impl for MailboxError

Changed

  • Use trust-dns-resolver 0.11.0

v0.8.0-alpha.3

5 years ago

CHANGES

Added

  • Add Actor::start_in_arbiter with semantics of Supervisor::start_in_arbiter.

  • Add ResponseError for ResolverError

  • Add io::SinkWrite

v0.8.0-alpha.2

5 years ago

CHANGES

Added

  • Add actix-http error support for MailboxError

v0.8.0-alpha.1

5 years ago

CHANGES

Changes

  • Edition 2018

  • Replace System/Arbiter with actix_rt::System and actix_rt::Arbiter

  • Add implementations for Message for Arc and Box

  • System and arbiter registries available via from_registry() method.

Deleted

  • Deleted signals actor

0.7.10

5 years ago

Changed

  • Added WeakAddr<A> to weak reference an actor

  • Replace async functions of Response and ActorResponse as future