mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 08:12:59 +01:00
149 lines
2.2 KiB
Markdown
149 lines
2.2 KiB
Markdown
# Changes
|
|
|
|
## [0.3.4] - 2019-03-12
|
|
|
|
### Added
|
|
|
|
* Add `Transform::from_err()` combinator
|
|
|
|
* Add `apply_fn` helper
|
|
|
|
* Add `apply_fn_factory` helper
|
|
|
|
* Add `apply_transform` helper
|
|
|
|
* Add `apply_cfg` helper
|
|
|
|
|
|
## [0.3.3] - 2019-03-09
|
|
|
|
### Added
|
|
|
|
* Add `ApplyTransform` new service for transform and new service.
|
|
|
|
* Add `NewService::apply_cfg()` combinator, allows to use
|
|
nested `NewService` with different config parameter.
|
|
|
|
### Changed
|
|
|
|
* Revert IntoFuture change
|
|
|
|
|
|
## [0.3.2] - 2019-03-04
|
|
|
|
### Changed
|
|
|
|
* Change `NewService::Future` and `Transform::Future` to the `IntoFuture` trait.
|
|
|
|
* Export `AndThenTransform` type
|
|
|
|
|
|
## [0.3.1] - 2019-03-04
|
|
|
|
### Changed
|
|
|
|
* Simplify Transform trait
|
|
|
|
|
|
## [0.3.0] - 2019-03-02
|
|
|
|
## Added
|
|
|
|
* Added boxed NewService and Service.
|
|
|
|
## Changed
|
|
|
|
* Added `Config` parameter to `NewService` trait.
|
|
|
|
* Added `Config` parameter to `NewTransform` trait.
|
|
|
|
|
|
## [0.2.2] - 2019-02-19
|
|
|
|
### Added
|
|
|
|
* Added `NewService` impl for `Rc<S> where S: NewService`
|
|
|
|
* Added `NewService` impl for `Arc<S> where S: NewService`
|
|
|
|
|
|
## [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;
|
|
// ...
|
|
}
|
|
```
|
|
|
|
|
|
## [0.1.6] - 2019-01-24
|
|
|
|
### 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>`
|
|
|
|
|
|
## [0.1.5] - 2019-01-13
|
|
|
|
### Changed
|
|
|
|
* Make `Out::Error` convertable from `T::Error` for apply combinator
|
|
|
|
|
|
## [0.1.4] - 2019-01-11
|
|
|
|
### Changed
|
|
|
|
* Use `FnMut` instead of `Fn` for `FnService`
|
|
|
|
|
|
## [0.1.3] - 2018-12-12
|
|
|
|
### Changed
|
|
|
|
* Split service combinators to separate trait
|
|
|
|
|
|
## [0.1.2] - 2018-12-12
|
|
|
|
### Fixed
|
|
|
|
* Release future early for `.and_then()` and `.then()` combinators
|
|
|
|
|
|
## [0.1.1] - 2018-12-09
|
|
|
|
### Added
|
|
|
|
* Added Service impl for Box<S: Service>
|
|
|
|
|
|
## [0.1.0] - 2018-12-09
|
|
|
|
* Initial import
|