Releases: actix/actix
Releases · actix/actix
actix_derive: v0.6.2
- Fix compile failures when using quoted rtype (i.e.,
#[rtype("()")]
) form.
actix: v0.13.5
- Add
Registry::try_get()
method. - Add
Registry::get_or_start_default()
method. - Deprecate
Registry::get()
method. - Relax
A: ArbiterService
bound onRegistry::query()
. - Relax
A: ArbiterService
bound onRegistry::set()
.
actix: v0.13.4
- Add
AsyncContext::run_interval_at()
method.
actix: v0.13.3
- No significant changes since
0.13.2
.
actix: v0.13.2
- Expose
ContextFut::restart
. - Unquoted types are now allowed in the
#[rtype(result = TYPE)]
position when type is a path.
actix_derive: v0.6.1
- Update
syn
dependency to2
.
actix: v0.13.1
Added
- Add
SyncArbiter::start_with_thread_builder()
. - Derive
PartialEq
andEq
forMailboxError
. - Minimum supported Rust version (MSRV) is now 1.68.
Fixed
- Fix
SinkWrite
sometimes not sending all messages in its buffer.
actix-broker: v0.4.3
- Fix at-least-once delivery guarantee for
IssueAsync
. #536
actix-broker: v0.4.2
- Add support for
actix
v0.13.
actix: v0.13.0
Added
- Implement
Clone
forWeakRecipient
. #518 - Implement
From<Recipient>
forWeakRecipient
. #518 - Add
Recipient::downgrade
method for obtaining aWeakRecipient
. #518 - Extend
Sender
trait with adowngrade
method. #518
Changed
- Make
WeakSender
trait public rather than crate-public. #518 - Updated
tokio-util
dependency to0.7
. #??? - Updated minimum supported Rust version to 1.49.
Removed
- Remove
Resolver
actor. #451