actix v0.7.5 Release Notes

Release Date: 2018-10-10 // over 5 years ago
  • โž• Added

    • ๐Ÿคก Introduce the clock module to allow overriding and mocking the system clock based on tokio_timer.

    • ๐Ÿ— System now has System::builder() which allows overriding the system clock with a custom instance. Arbiter::builder() can now also override the system clock. The default is to inherit from the system.

    • ๐Ÿ†• New utility classes TimerFunc and IntervalFunc in the utils module.

    • Implement failure::Fail for SendError.

    • Implement Debug for multiple public types: AddressSender, Addr, Arbiter, Context, ContextParts, ContextFut, Response, ActorResponse, Mailbox, SystemRegistry, Supervisor, System, SystemRunner, SystemArbiter. #135

    ๐Ÿ”„ Changed

    • ๐Ÿ‘ฏ No longer perform unnecessary clone of Addr in SystemRegistry::set.

    • Set min trust-dns version

    ๐Ÿ›  Fixed

    • ๐Ÿ›  fix infinite loop in ContextFut::poll() caused by late cancel_future() #147