From a5a15dffaa47975ebe9e5111448a1de57be6b732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20H=C3=A4kli?= Date: Wed, 8 May 2019 14:01:32 +0300 Subject: [PATCH] Version 5.0.3 --- CHANGES.rst | 16 ++++++++++++++++ axes/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1780d71..dd8d533 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------ diff --git a/axes/__init__.py b/axes/__init__.py index 5eea5c6..5007281 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.0.2' +__version__ = '5.0.3' default_app_config = 'axes.apps.AppConfig'