File: CHANGELOG

package info (click to toggle)
rust-http-auth-basic 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 184 kB
  • sloc: makefile: 4
file content (58 lines) | stat: -rw-r--r-- 1,691 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2021-08-15
### Fixed
- CI workflows issues due to missing conditional publishing triggerer and out of
date `Cargo.lock` file

## [0.3.0] - 2021-08-15
### Added
- Support for `FromStr` for `Credentials` `struct` (https://github.com/EstebanBorai/http-auth-basic/pull/5)

### Improved
- Use `split_once()` instead of `split()` for faster split procedure by avoiding
unnecessary allocations (https://github.com/EstebanBorai/http-auth-basic/pull/6)

## [0.2.2] - 2021-07-13
### Fixed
- Fix missing author and year on Apache License

## [0.2.1] - 2021-07-13
### Fixed
- Fix corrupted Cargo.lock file

## [0.2.0] - 2021-07-13
### Chore
- Update license from GPL V3 to either MIT/Apache to follow Rust ecosystem

## [0.1.3] - 2021-04-26
### Fixed
- Issue where passwords containing a colon caused `AuthBasicError::InvalidAuthorizationHeader` (https://github.com/EstebanBorai/http-auth-basic/pull/3)

#### Braking Change
- Replace `InvalidUTF8Value` with `InvalidUtf8Value` to satisfy Rust conventions

### Added
- Support for RFC 2617 spec (https://github.com/EstebanBorai/http-auth-basic/pull/3)

## [0.1.2] - 2020-09-16
### Added
- Build Badge
- Clippy and Fmt Badge
- Tests Badge

## [0.1.1] - 2020-09-15
### Added
- Badges to README
- Logo to README
- Usecase description

## [0.1.0] - 2020-08-30
### Added
- `Credentials` struct
- Capability to encode and decode
- Create `Credentials` instance from `Authorization` header value