Skip to content

Releases: actix/actix

Actix 0.7.1

20 Jul 20:49
7f8f647
Compare
Choose a tag to compare

Changes

Added

  • Arbiter now has Arbiter::builder() which allows opt-in of behavior to stop
    the actor system on uncaught panic in any arbiter thread. See #111 for examples.

  • Allow to set custom system service actor via SystemRegistry::set() method.

Fixed

  • AsyncContext::run_interval does not fire callback immediately, instead it fires after specified duration.

Actix 0.7.0

05 Jul 05:53
Compare
Choose a tag to compare

Changes

Changed

  • Context impl refactoring, fix potential UB

Added

  • Implemented Eq, PartialEq, and Hash for actix::Addr

  • Implemented Eq, PartialEq, and Hash for actix::Recipient

Actix 0.6.1

19 Jun 05:52
Compare
Choose a tag to compare

Changes

Added

  • Added actix::run() and actix::spawn() helper functions

Changed

  • Use parking_lot 0.6

Fixed

  • Fixed potential memory unsafety

Actix 0.6.0

18 Jun 02:58
Compare
Choose a tag to compare

Changes

  • Use tokio

  • System and Arbiter refactored

  • Arbiter::handle() is not available anymore.
    Use Arbiter::spawn() and Arbiter::spawn_fn() instead.

  • StreamHandler trait refactored.

  • Min rustc version - 1.26

Actix 0.5.8

08 Jun 21:25
Compare
Choose a tag to compare

Changes

  • Allow to create Connector actor with custom configuration

Actix 0.5.7

17 May 16:52
Compare
Choose a tag to compare

Changes

  • Stop sync actor if sender is dead.

Actix 0.5.6

17 Apr 20:09
Compare
Choose a tag to compare

Changes

  • Fix index usage during iteration for future cancellation #67

Actix 0.5.5

19 Mar 20:08
Compare
Choose a tag to compare

Changes

  • Fix polling of wrong wait future after completion

Actix 0.5.4

16 Mar 20:34
Compare
Choose a tag to compare

Changes

  • Always complete actor life-cycle (i.e. Actor::started())

Actix 0.5.3

08 Mar 18:08
Compare
Choose a tag to compare

Changes

  • Panic after cancelling stream future #58