mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
2.0 KiB
2.0 KiB
Changes
Unreleased - 2020-xx-xx
0.6.0-beta.1 - 2020-04-02
- Update
actix-web
dependency to 4.0.0 beta. - Minimum supported Rust version (MSRV) is now 1.46.0.
0.5.1 - 2020-03-21
- Correct error handling when extracting auth details from request. #128
0.5.0 - 2020-09-11
- Update
actix-web
dependency to 3.0.0. - Minimum supported Rust version (MSRV) is now 1.42.0.
0.4.2 - 2020-07-08
- Update the
base64
dependency to 0.12 - AuthenticationError's status code is preserved when converting to a ResponseError
- Minimize
futures
dependency - Fix panic on
AuthenticationMiddleware
#69
0.4.1 - 2020-02-19
- Move repository to actix-extras
0.4.0 - 2020-01-14
- Depends on
actix-web = "^2.0"
,actix-service = "^1.0"
, andfutures = "^0.3"
version now (#14) - Depends on
bytes = "^0.5"
andbase64 = "^0.11"
now
0.3.2 - 2019-07-19
- Middleware accepts any
Fn
as a validator function instead ofFnMut
(#11)
0.3.1 - 2019-06-09
- Multiple calls to the middleware would result in panic
0.3.0 - 2019-06-05
- Crate edition was changed to
2018
, same asactix-web
- Depends on
actix-web = "^1.0"
version now WWWAuthenticate
header struct was renamed intoWwwAuthenticate
- Challenges and extractor configs are now operating with
Cow<'static, str>
types instead ofString
types
0.2.0 - 2019-04-26
actix-web
dependency is used without default features now (#6)base64
dependency version was bumped to0.10
0.1.0 - 2018-09-08
- Update to
actix-web = "0.7"
version
0.0.4 - 2018-07-01
- Fix possible panic at
IntoHeaderValue
implementation forheaders::authorization::Basic
- Fix possible panic at
headers::www_authenticate::challenge::bearer::Bearer::to_bytes
call