Skip to content

Releases: LeoBorai/http-auth-basic

v0.3.7

Choose a tag to compare

@github-actions github-actions released this 24 Jan 13:44

What's Changed

  • Redact password in Debug prints + some housekeeping by @Iizuki in #13
  • chore: update gh actions by @LeoBorai in #15

New Contributors

Full Changelog: v0.3.5...v0.3.7

v0.3.5

Choose a tag to compare

@github-actions github-actions released this 28 Jul 02:36
chore(bump): release `v0.3.5`

v0.3.4

Choose a tag to compare

@github-actions github-actions released this 28 Jul 02:33
chore(bump): release `v0.3.4`

v0.3.3

Choose a tag to compare

@github-actions github-actions released this 30 Mar 11:39
fix: update `Cargo.lock` accordingly

v0.3.1

Choose a tag to compare

@github-actions github-actions released this 15 Aug 23:18
[0.3.1] - 2021-08-15

Fixed
- CI workflows issues due to missing conditional publishing triggerer and out of
date `Cargo.lock` file

v0.3.0

Choose a tag to compare

@github-actions github-actions released this 15 Aug 23:12
[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)

v0.2.2

Choose a tag to compare

@github-actions github-actions released this 14 Jul 01:20
[0.2.2] - 2021-07-13

Fixed
- Fix missing author and year on Apache License

v0.2.1

Choose a tag to compare

@github-actions github-actions released this 14 Jul 00:08
[0.2.1] - 2021-07-13

Fixed
- Fix corrupted Cargo.lock file

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 14 Jul 00:01
[0.2.0] - 2021-07-13

Chore
- Update license from GPL V3 to either MIT/Apache to follow Rust ecosystem

v0.1.3

Choose a tag to compare

@github-actions github-actions released this 27 Apr 01:09
[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)