mirror of https://github.com/fafhrd91/actix-web
chore: update changelog and fix docs for CI
This commit is contained in:
parent
176ea5da77
commit
acd7c58097
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- Add `resources-introspection` feature for retrieving configured route paths and HTTP methods.
|
||||||
- Implement `Responder` for `Result<(), E: Into<Error>>`. Returning `Ok(())` responds with HTTP 204 No Content.
|
- Implement `Responder` for `Result<(), E: Into<Error>>`. Returning `Ok(())` responds with HTTP 204 No Content.
|
||||||
- On Windows, an error is now returned from `HttpServer::bind()` (or TLS variants) when binding to a socket that's already in use.
|
- On Windows, an error is now returned from `HttpServer::bind()` (or TLS variants) when binding to a socket that's already in use.
|
||||||
- Update `brotli` dependency to `7`.
|
- Update `brotli` dependency to `7`.
|
||||||
|
|
|
@ -196,7 +196,7 @@ pub fn Any<F: Guard + 'static>(guard: F) -> AnyGuard {
|
||||||
///
|
///
|
||||||
/// That is, only one contained guard needs to match in order for the aggregate guard to match.
|
/// That is, only one contained guard needs to match in order for the aggregate guard to match.
|
||||||
///
|
///
|
||||||
/// Construct an `AnyGuard` using [`Any`].
|
/// Construct an `AnyGuard` using [`Any()`].
|
||||||
pub struct AnyGuard {
|
pub struct AnyGuard {
|
||||||
guards: Vec<Box<dyn Guard>>,
|
guards: Vec<Box<dyn Guard>>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue