Skip to content

Releases: actix/actix-net

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

Actix Service 0.1.6

25 Jan 04:43
Compare
Choose a tag to compare

Changes

Changed

  • Use FnMut instead of Fn for .apply() and .map() combinators and FnService type

  • Change .apply() error semantic, new service's error is From<Self::Error>

Actix Service 0.1.5

14 Jan 06:59
Compare
Choose a tag to compare

Changes

Changed

  • Make Out::Error convertable from T::Error for apply combinator

Actix Connector 0.1.1

13 Jan 18:07
Compare
Choose a tag to compare

Changes

  • Upgrade trust-dns-proto