Skip to content

Releases: actix/actix-net

Actix Utils 0.2.3

21 Feb 18:46
Compare
Choose a tag to compare

Changes

Added

  • Add BoxedNewService and BoxedService

Actix Service 0.2.2

19 Feb 19:33
Compare
Choose a tag to compare

Changes

Added

  • Added NewService impl for Rc<S> where S: NewService

  • Added NewService impl for Arc<S> where S: NewService

Actix Utils 0.2.2

11 Feb 16:40
Compare
Choose a tag to compare

Changes

Added

  • Add Display impl for TimeoutError

  • Add Display impl for InOrderError

Actix Server 0.2.1

10 Feb 05:40
Compare
Choose a tag to compare

Changes

Changes

  • Drop service response

Actix Utils 0.2.1

06 Feb 19:41
Compare
Choose a tag to compare

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 and InFlight services to a transforms

Actix Service 0.2.1

03 Feb 21:33
Compare
Choose a tag to compare

Changes

Changed

  • Generalize .apply combinator with Transform trait

Actix Utils 0.2.0

02 Feb 04:01
Compare
Choose a tag to compare

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

02 Feb 03:54
Compare
Choose a tag to compare

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

02 Feb 04:04
Compare
Choose a tag to compare

Changes

  • Migrate to actix-service 0.2

  • Updated rustls dependency

Actix connector 0.2.0

02 Feb 04:08
Compare
Choose a tag to compare

Changes

Changes

  • Migrate to actix-service 0.2

  • Upgrade trust-dns-resolver

  • Use tokio-current-thread instead of direct actix-rt dipendency