mirror of https://github.com/fafhrd91/actix-web
update changelog
This commit is contained in:
parent
6bdfcf4a1d
commit
a5a0e9a95a
|
@ -2,10 +2,9 @@
|
|||
|
||||
## Unreleased - 2021-xx-xx
|
||||
### Added
|
||||
* Re-export actix-http `Request` and `Response` in `dev` module. [#????]
|
||||
* Re-export actix-service `ServiceFactory` in `dev` module. [#????]
|
||||
* Re-export actix-service `ServiceFactory` in `dev` module. [#2325]
|
||||
|
||||
[#????]: https://github.com/actix/actix-web/pull/????
|
||||
[#2325]: https://github.com/actix/actix-web/pull/2325
|
||||
|
||||
|
||||
## 4.0.0-beta.8 - 2021-06-26
|
||||
|
|
|
@ -59,7 +59,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
/// An HTTP request wrapper.
|
||||
/// A service level request wrapper.
|
||||
///
|
||||
/// Allows mutable access to request's internal structures.
|
||||
pub struct ServiceRequest {
|
||||
|
@ -325,7 +325,7 @@ impl fmt::Debug for ServiceRequest {
|
|||
}
|
||||
}
|
||||
|
||||
/// An HTTP response wrapper.
|
||||
/// A service level response wrapper.
|
||||
pub struct ServiceResponse<B = AnyBody> {
|
||||
request: HttpRequest,
|
||||
response: HttpResponse<B>,
|
||||
|
|
Loading…
Reference in New Issue