Skip to content

Commit

Permalink
Added change log
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Mar 13, 2016
1 parent 29edb19 commit 8b427b9
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 1 deletion.
80 changes: 80 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Flask-HTTPAuth Change Log

## Unreleased

- Added additional test for token authentication

## Release 3.0.2 - 2016-03-11

- Invoke `verify_password` callback with no authentication when the provided authentication does not match the scheme

## Release 3.0.1 - 2016-03-09

- Prevented crash when client sends an invalid authorization header for token auth

## Release 3.0.0 - 2016-03-06

- Added token authentication support
- Switch Travis CI builds to use tox
- Refactored tests into separate test packages for each authentication method
- Added explicit Python 2 and 3 classifiers to setup script

## Release 2.7.1 - 2016-02-07

- Correctly obtain nonce and opaque values in `authenticate_header` function
- Documentation updates

## Release 2.7.0 - 2015-09-19

- Support custom authentication scheme and realm

## Release 2.6.0 - 2015-08-22

- Added callbacks for custom digest auth nonce/opaque generation
- Documentation updates
- Travis CI builds

## Release 2.5.0 - 2015-04-25

- In digest auth, support the client providing a pre-generated "ha1" instead of plain text password
- Add "ha1" generation helper function for digest auth
- Documentation updates

## Release 2.4.0 - 2015-03-01

- Support anonymous users in `verify_password` callback
- Unit test fixes

## Release 2.3.0 - 2014-09-23

- Corrections to `hash_password` and `verify_password` decorators
- Bypass authentication for `OPTIONS` requests
- Pep8 compliance

## Release 2.2.1 - 2014-03-16

- Fixed documentation examples
- Corrections to `get_password` decorator implementation

## Release 2.2.0 - 2013-11-25

- Build fixes

## Release 2.1.0 - 2013-09-27

- Support optionally passing the username to the hash password callback

## Release 2.0.0 - 2013-09-26

- Changed `auth.username` property to a `auth.username()` function
- Documentation updates

## Release 1.1.0 - 2013-08-30

- Python 3 support
- Documentation updates

## Release 1.0.0 - 2013-07-27

- First official release

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ Resources

- [Documentation](http://pythonhosted.org/Flask-HTTPAuth)
- [pypi](https://pypi.python.org/pypi/Flask-HTTPAuth)

- [Change log](https://github.com/miguelgrinberg/Flask-HTTPAuth/blob/master/CHANGELOG.md)

0 comments on commit 8b427b9

Please sign in to comment.