Skip to content

Releases: actix/actix-net

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

Actix Service 0.1.4

12 Jan 05:41
Compare
Choose a tag to compare

Changes

Changed

  • Use FnMut instead of Fn for FnService

Actix net 0.2.6

21 Dec 18:44
Compare
Choose a tag to compare

Changes

Fixed

  • Fix back-pressure handling for concurrent connections

Actix Server 0.1.3

21 Dec 18:38
Compare
Choose a tag to compare

Changes

Fixed

  • Fix max concurrent connections handling

Actix net 0.2.5

13 Dec 03:03
Compare
Choose a tag to compare

Changes

Fixed

  • Fix back-pressure for concurrent ssl handshakes

  • Drop completed future for .then and .and_then combinators