1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-19 07:14:41 +01:00

141 lines
2.1 KiB
Markdown
Raw Normal View History

2018-12-10 08:42:31 -08:00
# Changes
## [2.0.0-alpha.3] - 2020-05-08
### Fixed
* Corrected spelling of `ConnectError::Unresolverd` to `ConnectError::Unresolved`
2020-03-08 14:37:33 +09:00
## [2.0.0-alpha.2] - 2020-03-08
### Changed
2020-03-08 14:37:33 +09:00
* Update `trust-dns-proto` dependency to 0.19. [#116]
* Update `trust-dns-resolver` dependency to 0.19. [#116]
* `Address` trait is now required to have static lifetime. [#116]
* `start_resolver` and `start_default_resolver` are now `async` and may return a `ConnectError`. [#116]
[#116]: https://github.com/actix/actix-net/pull/116
2020-03-03 17:24:25 +09:00
## [2.0.0-alpha.1] - 2020-03-03
### Changed
* Update `rustls` dependency to 0.17
* Update `tokio-rustls` dependency to 0.13
2020-01-15 11:58:06 -08:00
## [1.0.2] - 2020-01-15
* Fix actix-service 1.0.3 compatibility
2019-12-15 13:04:26 +06:00
## [1.0.1] - 2019-12-15
* Fix trust-dns-resolver compilation
2019-12-11 14:56:05 +06:00
## [1.0.0] - 2019-12-11
* Release
## [1.0.0-alpha.3] - 2019-12-07
2019-12-05 16:40:24 +06:00
### Changed
* Migrate to tokio 0.2
2019-12-05 16:40:24 +06:00
2019-12-02 22:30:09 +06:00
## [1.0.0-alpha.2] - 2019-12-02
### Changed
* Migrated to `std::future`
2019-10-04 06:21:59 +09:00
## [0.3.0] - 2019-10-03
### Changed
* Update `rustls` to 0.16
* Minimum required Rust version upped to 1.37.0
2019-09-05 16:34:48 -07:00
## [0.2.5] - 2019-09-05
* Add `TcpConnectService`
## [0.2.4] - 2019-09-02
* Use arbiter's storage for default async resolver
## [0.2.3] - 2019-08-05
* Add `ConnectService` and `OpensslConnectService`
2019-07-24 11:14:26 +03:00
## [0.2.2] - 2019-07-24
* Add `rustls` support
2019-07-17 10:33:47 +06:00
## [0.2.1] - 2019-07-17
### Added
* Expose Connect addrs #30
### Changed
* Update `derive_more` to 0.15
2019-07-17 10:33:47 +06:00
2019-05-12 08:15:18 -07:00
## [0.2.0] - 2019-05-12
### Changed
* Upgrade to actix-service 0.4
2019-04-19 17:43:52 -07:00
## [0.1.5] - 2019-04-19
### Added
* `Connect::set_addr()`
### Changed
* Use trust-dns-resolver 0.11.0
## [0.1.4] - 2019-04-12
### Changed
* Do not start default resolver immediately for default connector.
## [0.1.3] - 2019-04-11
### Changed
* Start trust-dns default resolver on first use
## [0.1.2] - 2019-04-04
### Added
* Log error if dns system config could not be loaded.
### Changed
* Rename connect Connector to TcpConnector #10
2019-03-15 11:37:51 -07:00
## [0.1.1] - 2019-03-15
### Fixed
* Fix error handling for single address
2019-03-14 22:39:49 -07:00
## [0.1.0] - 2019-03-14
2019-03-02 14:47:52 -08:00
2019-03-13 14:38:33 -07:00
* Refactor resolver and connector services
2019-03-02 14:47:52 -08:00
2019-03-13 14:38:33 -07:00
* Rename crate