1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-13 07:15:25 +01:00

191 lines
2.7 KiB
Markdown
Raw Permalink Normal View History

2018-12-09 10:14:08 -08:00
# Changes
## [0.4.2] - 2019-08-27
### Fixed
* Check service readiness for `new_apply_cfg` combinator
2019-06-06 14:28:07 +06:00
## [0.4.1] - 2019-06-06
### Added
* Add `new_apply_cfg` function
2019-05-12 07:53:26 -07:00
## [0.4.0] - 2019-05-12
### Changed
* Use associated type for `NewService` config
* Change `apply_cfg` function
* Renamed helper functions
### Added
* Add `NewService::map_config` and `NewService::unit_config` combinators
## [0.3.6] - 2019-04-07
### Changed
* Poll boxed service call result immediately
2019-03-29 11:16:40 -07:00
## [0.3.5] - 2019-03-29
2019-03-29 10:21:17 -07:00
### Added
* Add `impl<S: Service> Service for Rc<RefCell<S>>`
2019-03-12 12:53:08 -07:00
## [0.3.4] - 2019-03-12
### Added
* Add `Transform::from_err()` combinator
2019-03-12 16:32:10 -07:00
* Add `apply_fn` helper
* Add `apply_fn_factory` helper
2019-03-12 12:53:08 -07:00
* Add `apply_transform` helper
2019-03-12 16:32:10 -07:00
* Add `apply_cfg` helper
2019-03-12 12:53:08 -07:00
2019-03-09 14:10:02 -08:00
## [0.3.3] - 2019-03-09
2019-03-04 21:24:47 -08:00
### Added
* Add `ApplyTransform` new service for transform and new service.
2019-03-09 14:10:02 -08:00
* Add `NewService::apply_cfg()` combinator, allows to use
2019-03-09 09:01:02 -08:00
nested `NewService` with different config parameter.
2019-03-04 21:35:47 -08:00
### Changed
* Revert IntoFuture change
2019-03-04 21:24:47 -08:00
2019-03-04 20:29:35 -08:00
## [0.3.2] - 2019-03-04
### Changed
* Change `NewService::Future` and `Transform::Future` to the `IntoFuture` trait.
* Export `AndThenTransform` type
2019-03-04 19:38:11 -08:00
## [0.3.1] - 2019-03-04
### Changed
* Simplify Transform trait
2019-03-02 14:22:03 -08:00
## [0.3.0] - 2019-03-02
2019-02-22 12:44:37 -08:00
## Added
* Added boxed NewService and Service.
2019-02-22 12:44:37 -08:00
## Changed
2019-03-02 14:22:03 -08:00
* Added `Config` parameter to `NewService` trait.
* Added `Config` parameter to `NewTransform` trait.
2019-02-22 12:44:37 -08:00
## [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`
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