From 354943b660c47f0653be49fb63f955178e077146 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Thu, 13 May 2021 19:32:43 +0100 Subject: [PATCH] Release 4.4.0 --- CHANGES.md | 5 +++++ flask_httpauth.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 96131c3..46eead8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Flask-HTTPAuth change log +**Release 4.4.0** - 2021-05-13 + +- Replace `safe_str_cmp` with `hmac.compare_digest` to avoid a deprecation warning from Werkzeug [#126](https://github.com/miguelgrinberg/Flask-HTTPAuth/issues/126) ([commit](https://github.com/miguelgrinberg/Flask-HTTPAuth/commit/79e3ebf77f4ad6a56a02996a08c4517f61151d49)) (thanks **Federico Martinez**!) +- Drop Python 2 support ([commit](https://github.com/miguelgrinberg/Flask-HTTPAuth/commit/e690ce56827de9d669718fa5d0fcda63112f8008)) + **Release 4.3.0** - 2021-05-01 - Support token auth with custom header in MultiAuth class [#125](https://github.com/miguelgrinberg/Flask-HTTPAuth/issues/125) ([commit](https://github.com/miguelgrinberg/Flask-HTTPAuth/commit/6509081c72a2f92c1500b3f09aa063441ea60031)) diff --git a/flask_httpauth.py b/flask_httpauth.py index 1f72c36..024d9c2 100644 --- a/flask_httpauth.py +++ b/flask_httpauth.py @@ -16,7 +16,7 @@ from werkzeug.datastructures import Authorization -__version__ = '4.3.1dev' +__version__ = '4.4.0' class HTTPAuth(object):