Releases: actix/actix-net
Releases · actix/actix-net
Actix Utils 0.2.3
Changes
Added
- Add
BoxedNewService
andBoxedService
Actix Service 0.2.2
Changes
Added
-
Added
NewService
impl forRc<S> where S: NewService
-
Added
NewService
impl forArc<S> where S: NewService
Actix Utils 0.2.2
Changes
Added
-
Add
Display
impl forTimeoutError
-
Add
Display
impl forInOrderError
Actix Server 0.2.1
Changes
Changes
- Drop service response
Actix Utils 0.2.1
Changes
Added
- Add
InOrder
service. the service yields responses as they become available,
in the order that their originating requests were submitted to the service.
Changed
- Convert
Timeout
andInFlight
services to a transforms
Actix Service 0.2.1
Changes
Changed
- Generalize
.apply
combinator with Transform trait
Actix Utils 0.2.0
Changes
-
Fix framed transport error handling
-
Added Clone impl for Either service
-
Added Clone impl for Timeout service factory
-
Added Service and NewService for Stream dispatcher
-
Switch to actix-service 0.2
Actix Service 0.2.0
Changes
Changed
-
Use associated type instead of generic for Service definition.
-
Before:
impl Service<Request> for Client { type Response = Response; // ... }
-
After:
impl Service for Client { type Request = Request; type Response = Response; // ... }
-
Actix Server 0.2.0
Changes
-
Migrate to actix-service 0.2
-
Updated rustls dependency
Actix connector 0.2.0
Changes
Changes
-
Migrate to actix-service 0.2
-
Upgrade trust-dns-resolver
-
Use tokio-current-thread instead of direct actix-rt dipendency