Releases: actix/actix-net
Releases · actix/actix-net
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
Actix Service 0.1.6
Changes
Changed
-
Use
FnMut
instead ofFn
for .apply() and .map() combinators andFnService
type -
Change
.apply()
error semantic, new service's error isFrom<Self::Error>
Actix Service 0.1.5
Changes
Changed
- Make
Out::Error
convertable fromT::Error
for apply combinator
Actix Connector 0.1.1
Changes
- Upgrade trust-dns-proto