1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-13 17:35:26 +01:00

82 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2018-12-09 10:14:08 -08:00
# Changes
2019-02-03 13:32:51 -08:00
## [0.2.1] - 2019-02-03
### Changed
* Generalize `.apply` combinator with Transform trait
## [0.2.0] - 2019-02-01
### Changed
* Use associated type instead of generic for Service definition.
* Before:
```rust
impl Service<Request> for Client {
type Response = Response;
// ...
}
```
* After:
```rust
impl Service for Client {
type Request = Request;
type Response = Response;
// ...
}
```
2019-01-24 20:42:30 -08:00
## [0.1.6] - 2019-01-24
2019-01-15 19:25:49 -08:00
2019-01-16 15:33:33 -08:00
### Changed
* Use `FnMut` instead of `Fn` for .apply() and .map() combinators and `FnService` type
2019-01-15 19:25:49 -08:00
2019-01-24 19:19:44 -08:00
* Change `.apply()` error semantic, new service's error is `From<Self::Error>`
## [0.1.5] - 2019-01-13
### Changed
* Make `Out::Error` convertable from `T::Error` for apply combinator
2019-01-11 21:39:58 -08:00
## [0.1.4] - 2019-01-11
2019-01-11 21:42:13 -08:00
### Changed
2019-01-11 21:39:58 -08:00
* Use `FnMut` instead of `Fn` for `FnService`
2018-12-12 18:32:19 -08:00
## [0.1.3] - 2018-12-12
2019-01-11 21:42:13 -08:00
### Changed
2018-12-12 18:32:19 -08:00
* Split service combinators to separate trait
## [0.1.2] - 2018-12-12
### Fixed
* Release future early for `.and_then()` and `.then()` combinators
2018-12-09 10:14:08 -08:00
## [0.1.1] - 2018-12-09
### Added
* Added Service impl for Box<S: Service>
## [0.1.0] - 2018-12-09
* Initial import