-
0.7.0 Stable
released this
2023-10-08 22:47:24 +08:00 | 5 commits to main since this release- Removed the test client. You should use httpx instead of Flask-Testing when writing automatic tests. Flask-Testing is not maintained for more than 3 years, and is not compatible with Flask 3 now.
- Revised to skip the tests when Flask-Login is not compatible with Werkzeug.
-
0.6.2 Stable
released this
2023-06-10 16:28:28 +08:00 | 11 commits to main since this release- Changed logging from STDERR to the Flask logger.
- Test case updates:
- Added missing documentation.
- Changed properties from public to private.
- Disabled logging.
-
0.6.1 Stable
released this
2023-05-03 07:02:00 +08:00 | 16 commits to main since this release- Revised the code for the upcoming Werkzeug 2.4.
-
0.6.0 Stable
released this
2023-04-27 09:08:46 +08:00 | 21 commits to main since this release- Updated the minimal Python version to 3.8.
- Switched from setup.cfg to pyproject.toml.
- Added the change log.
- Simplified README.rst.
-
0.5.0 Stable
released this
2023-01-06 00:21:35 +08:00 | 30 commits to main since this release- Added the DIGEST_AUTH_REALM configuration variable as the recommended way to set the authentication realm.
- Changed the default realm from an empty string to "Login Required".
-
0.4.0 Stable
released this
2023-01-04 21:30:04 +08:00 | 34 commits to main since this release- Changed the package name from flask-digest-auth to Flask-DigestAuth, according to the Flask recommended extension guidelines https://flask.palletsprojects.com/en/latest/extensiondev/ .
- Replaced app.digest_auth with app.extensions["digest-auth"] to store the DigestAuth instance.
- Replaced auth.app with current_app, to prevent circular imports.
-
0.3.1 Stable
released this
2022-12-29 23:50:52 +08:00 | 40 commits to main since this releaseFixed the missing authentication state with disabled users.
-
0.3.0 Stable
released this
2022-12-07 00:00:06 +08:00 | 52 commits to main since this releaseChanged the visibility of several methods and properties of the DigestAuth class that should be private to private.
-
0.2.4 Stable
released this
2022-12-06 22:48:30 +08:00 | 60 commits to main since this releaseFixed the pytest example in the documentation.