Version 5.0.3

This commit is contained in:
Aleksi Häkli 2019-05-08 14:01:32 +03:00
parent 83d2391250
commit a5a15dffaa
No known key found for this signature in database
GPG key ID: 3E7146964D726BBE
2 changed files with 17 additions and 1 deletions

View file

@ -3,6 +3,22 @@ Changes
=======
5.0.3 (2019-05-08)
------------------
- Fix ``django.contrib.auth`` module ``login`` and ``logout`` functionality
so that they work with the handlers without the an ``AxesHttpRequest``
to improve cross compatibility with other Django applications.
[aleksihakli]
- Change IP address resolution to allow empty or missing addresses.
[aleksihakli]
- Add error logging for missing request attributes in the handler layer
so that users get better indicators of misconfigured applications.
[aleksihakli]
5.0.2 (2019-05-07)
------------------

View file

@ -1,4 +1,4 @@
__version__ = '5.0.2'
__version__ = '5.0.3'
default_app_config = 'axes.apps.AppConfig'