2018-07-01 15:52:10 +02:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
|
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
|
|
|
2020-01-09 21:57:42 +01:00
|
|
|
## [0.4.0] - 2020-01
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
- Depends on `actix-web = "^2.0"`, `actix-service = "^1.0"`, and `futures = "^0.3"` version now ([#14])
|
|
|
|
- Depends on `bytes = "^0.5"` and `base64 = "^0.11"` now
|
|
|
|
|
|
|
|
[#14]: https://github.com/actix/actix-web-httpauth/pull/14
|
|
|
|
|
2019-07-19 17:43:36 +02:00
|
|
|
## [0.3.2] - 2019-07-19
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2019-07-19 17:43:36 +02:00
|
|
|
### Changed
|
2020-01-09 21:57:42 +01:00
|
|
|
- Middleware accepts any `Fn` as a validator function instead of `FnMut` ([#11](https://github.com/actix/actix-web-httpauth/pull/11))
|
2019-07-19 17:43:36 +02:00
|
|
|
|
|
|
|
## [0.3.1] - 2019-06-09
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2019-07-19 17:43:36 +02:00
|
|
|
### Fixed
|
2020-01-09 21:57:42 +01:00
|
|
|
- Multiple calls to the middleware would result in panic
|
2019-07-19 17:43:36 +02:00
|
|
|
|
|
|
|
## [0.3.0] - 2019-06-05
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2019-07-19 17:43:36 +02:00
|
|
|
### Changed
|
2020-01-09 21:57:42 +01:00
|
|
|
- Crate edition was changed to `2018`, same as `actix-web`
|
|
|
|
- Depends on `actix-web = "^1.0"` version now
|
|
|
|
- `WWWAuthenticate` header struct was renamed into `WwwAuthenticate`
|
|
|
|
- Challenges and extractor configs are now operating with `Cow<'static, str>` types instead of `String` types
|
2019-05-15 16:38:55 +02:00
|
|
|
|
2019-04-26 20:56:17 +02:00
|
|
|
## [0.2.0] - 2019-04-26
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2019-04-26 20:56:17 +02:00
|
|
|
### Changed
|
2020-01-09 21:57:42 +01:00
|
|
|
- `actix-web` dependency is used without default features now ([#6](https://github.com/actix/actix-web-httpauth/pull/6))
|
|
|
|
- `base64` dependency version was bumped to `0.10`
|
2019-04-26 20:56:17 +02:00
|
|
|
|
2018-09-08 09:44:39 +02:00
|
|
|
## [0.1.0] - 2018-09-08
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2018-09-08 09:44:39 +02:00
|
|
|
### Changed
|
2020-01-09 21:57:42 +01:00
|
|
|
- Update to `actix-web = "0.7"` version
|
2018-09-08 09:44:39 +02:00
|
|
|
|
|
|
|
## [0.0.4] - 2018-07-01
|
2020-01-09 21:57:42 +01:00
|
|
|
|
2018-07-01 15:52:10 +02:00
|
|
|
### Fixed
|
2020-01-09 21:57:42 +01:00
|
|
|
- Fix possible panic at `IntoHeaderValue` implementation for `headers::authorization::Basic`
|
|
|
|
- Fix possible panic at `headers::www_authenticate::challenge::bearer::Bearer::to_bytes` call
|