- Fine-tune CI pipelines and RTD build requirements. [aleksihakli]
Version 6 is a breaking release. Please see the documentation for upgrade instructions.
- Deprecate Python 3.7 support. [aleksihakli]
- Deprecate
is_admin_site
API call with misleading naming. [hirotasoshu] - Add
AXES_LOCKOUT_PARAMETERS
configuration flag that will supersedeAXES_ONLY_USER_FAILURES
,AXES_LOCK_OUT_BY_COMBINATION_USER_AND_IP
,AXES_LOCK_OUT_BY_USER_OR_IP
, andAXES_USE_USER_AGENT
configurations. Add deprecation warnings for old flags. See project documentation on RTD for update instructions. [hirotasoshu] - Improve translations. [hirotasoshu]
- Use Django
cache.incr
API for atomic cached failure counting [hirotasoshu, aleksihakli] - Make
django-ipware
an optional dependency. Install it with e.g.pip install django-axes[ipware]
package and extras specifier. [aleksihakli] - Deprecate and rename old configuration flags. Old flags will be removed in or after version
6.1
. [aleksihakli] AXES_PROXY_ORDER
is nowAXES_IPWARE_PROXY_ORDER
,AXES_PROXY_COUNT
is nowAXES_IPWARE_PROXY_COUNT
,AXES_PROXY_TRUSTED_IPS
is nowAXES_IPWARE_PROXY_TRUSTED_IPS
, andAXES_META_PRECEDENCE_ORDER
is nowAXES_IPWARE_META_PRECEDENCE_ORDER
.
- Deprecate and rename old configuration flags. Old flags will be removed in or after version
- Set 429 as the default lockout response code. [hirotasoshu]
- Fix sensitive parameter logging for database handler. [stereodamage]
- Fix tests. [hirotasoshu]
- Add
AXES_CLIENT_CALLABLE
setting. [hirotasoshu] - Update Python, Django, and package versions. [hramezani]
- Fix bug in user agent request blocking. [PetrDlouhy]
- Update packages and linters for new version support. [hramezani]
- Update documentation links. [Arhell]
- Use importlib instead of setuptools for Python 3.8+. [jedie]
- Python 3.11 support. [joshuadavidthomas]
- Documentation improvements. [nsht]
- Documentation improvements. [timgates42]
- Utilize new backend class in tests to fix false negative system check warnings. [simonkern]
- Adjust changelog so release notes are correctly visible on PyPy and released package. [aleksihakli]
- Add Django 4.1 support. PyPy 3.8 has a known issue with Django 4.1 and is exempted. [hramezani]
- Add
AxesStandaloneBackend
withoutModelBackend
dependencies. [jcgiuffrida]
- Add Arabic translations. [YDA93]
- Improve German translations. [GitRon]
- Migrate MD5 cache key digests to SHA256. [aleksihakli]
- Improve and streamline startup logging. [ShaheedHaque]
- Improve module typing. [hramezani]
- Add support for float or partial hours for
AXES_COOLOFF_TIME
. [hramezani]
- Add support for persistent failure logging where failed login attempts are persisted in the database until a specific threshold is reached. [p1-gdd]
- Add support for not resetting login times when users try to login during the lockout cooloff period. [antoine-42]
- Adjust version specifiers for newer Python and other package versions.
Set package minimum Python version to 3.7.
Relax
django-ipware
version requirements to allow newer versions. [aleksihakli]
- Fix package build error in 5.29.0 to allow publishing. [aleksihakli]
- Drop Python 3.6 support. [aleksihakli]
- Drop Django < 3.2 support. [hramezani]
- Add Django 4.0 to test matrix. [hramezani]
- Fix
pkg_resources
missing for package version resolution on runtime due tosetuptools
not being a runtime dependency. [asherf] - Add Python 3.10 and Django 3.2 support. [hramezani]
- Fix
AXES_USERNAME_CALLABLE
not receivingcredentials
attribute in Axes middleware lockout response when user is locked out. [rootart]
- Fix duplicated AccessAttempts
with updated database model
unique_together
constraints and data and schema migration. [PetrDlouhy]
- Use atomic transaction for updating AccessAttempts in database handler. [okapies]
- Pass
request
as argument toAXES_CLIENT_STR_CALLABLE
. [sarahboyce]
- Improve
failures_since_start
handling by moving the counter incrementation from non-atomic Python code call to atomic database function. [okapies] - Add publicly available
request.axes_failures_since_start
attribute. [okapies]
- Add configurable lockout HTTP status code responses
with the new
AXES_HTTP_RESPONSE_CODE
setting. [phil-bell]
- Improve race condition handling in e.g. multi-process environments by using
get_or_create
for access attempt fetching and updates. [uli-klank]
- Add Polish locale. [Quadric]
- Fix
default_auto_field
warning. [zkanda]
- Fix
default_app_config
deprecation. Django 3.2 automatically detectsAppConfig
and therefore this setting is no longer required. [nikolaik]
- Add
AXES_CLIENT_STR_CALLABLE
setting. [smtydn]
- Add option to cleanse sensitive GET and POST params in database handler
with the
AXES_SENSITIVE_PARAMETERS
setting. [mcoconnor]
- Improve message formatting for lockout message and translations. [ashokdelphia]
- Remove support for Django 3.0. [hramezani]
- Add support for Django 3.2. [hramezani]
- Default
AXES_VERBOSE
toAXES_ENABLED
configuration setting, disabling verbose startup logging when Axes itself is disabled. [christianbundy] - Update documentation. [KStenK]
- Add support for resetting attempts with cache backend. [nattyg93]
- Clean up test structure and migrate tests outside the main package for a smaller wheel distributions. [aleksihakli]
- Move configuration to pyproject.toml for cleaner layout. [aleksihakli]
- Clean up test settings override configuration. [hramezani]
- Fix cache entry creations for None username. [cabarnes]
- Add lockout view CORS support with
AXES_ALLOWED_CORS_ORIGINS
configuration flag. [vladox] - Add missing
@wraps
decorator toaxes.decorators.axes_dispatch
. [aleksihakli]
- Add
DEFAULT_AUTO_FIELD
to test settings. [hramezani] - Fix documentation language. [danielquinn]
- Fix Python package version specifiers and remove redundant imports. [aleksihakli]
- Deprecate stock DRF support from 5.8.0, require users to set it up per project. Check the documentation for more information. [aleksihakli]
- Move tests to GitHub Actions [jezdez]
- Fix running Axes code in middleware when
AXES_ENABLED
isFalse
. [ashokdelphia]
- Add Python 3.9 support. [hramezani]
- Prevent
AccessAttempt
creation with database handler when username is not set andAXES_ONLY_USER_FAILURES
setting is not set. [hramezani]
- Improve Django REST Framework (DRF) integration. [Anatoly]
- Adjust settings import and handling chain for cleaner module import and invocation order. [aleksihakli]
- Adjust the use of
AXES_ENABLED
flag so that imports are always done the same way and initial log is written regardless of the setting and it only affects code that is decorated or wrapped withtoggleable
. [alekshakli]
- Deprecate
AXES_LOGGER
Axes setting and move to__name__
based logging and fully qualified Python module name log identifiers. [aleksihakli]
- Fix regression in
axes_reset_user
management command. [aleksihakli]
- Improve test dependency management and upgrade black code formatter. [smithdc1]
- Add proper development
subTest
support viapytest-subtests
package. [smithdc1] - Deprecate
django-appconf
and use plain settings for Axes. [aleksihakli]
- Update deprecating use of the
request.is_ajax
method. [smithdc1]
- Update deprecated uses of Django modules and members. [smithdc1]
- Add support for locking requests based on
username OR IP address with inclusive or
using the
LOCK_OUT_BY_USER_OR_IP
flag. [PetrDlouhy] - Deprecate Signal
providing_args
for Django 3.1 support. [coredumperror]
- Add Django 3.1 support. [hramezani]
- Add ABC or abstract base class implementation for handlers. [jorlugaqui]
- Fix code styling for linters. [aleksihakli]
- Propagate username to lockout view in URL parameters. [PetrDlouhy]
- Update CAPTCHA examples. [PetrDlouhy]
- Upgrade django-ipware to version 3. [hramezani,mnislam01]
- Restrict ipware version for version compatibility. [aleksihakli]
- Deprecate Django 1.11 LTS support. [aleksihakli]
- Fix
AXES_ONLY_ADMIN_SITE
functionality when no default admin site is defined in the URL configuration. [igor-shevchenko]
- Fix AppConf settings prefix for Fargate. [marksweb]
- Fix null byte ValueError bug in ORM. [ddimmich]
- Improve Django REST Framework compatibility. [I0x4dI]
- Add missing proxy implementation for
axes.handlers.proxy.AxesProxyHandler.get_failures
. [aleksihakli]
- Add django-reversion compatibility notes. [mark-mishyn]
- Add pluggable lockout responses and the
AXES_LOCKOUT_CALLABLE
configuration flag. [aleksihakli]
- Add a test handler. [aidanlister]
- Add pluggable user account whitelisting and the
AXES_WHITELIST_CALLABLE
configuration flag. [aleksihakli]
- Fix django-allauth compatibility issue. [hramezani]
- Improve tests for login attempt monitoring. [hramezani]
- Add reverse proxy documentation. [ckcollab]
- Update OAuth documentation examples. [aleksihakli]
- Optimize access attempt fetching in database handler. [hramezani]
- Optimize request data fetching in proxy handler. [hramezani]
- Add
cooloff_timedelta
context variable to lockout responses. [jstockwin]
- Safer string formatting for user input. [aleksihakli]
- Fix string formatting bug in logging. [zerolab]
- Add
AXES_ENABLE_ADMIN
flag. [flannelhead]
- Docs, CI pipeline, and code formatting improvements [aleksihakli]
- Python 3.8 and PyPy support. [aleksihakli]
- Migrate to
setuptools_scm
and automatic versioning. [aleksihakli]
- Support callables for
AXES_COOLOFF_TIME
setting. [DariaPlotnikova]
- Fix typo in rST formatting that prevented 5.0.10 release to PyPI. [aleksihakli]
- Refactor type checks for
axes.helpers.get_client_cache_key
for framework compatibility, fixes #471. [aleksihakli]
- Add better handling for attempt and log resets by moving them
into handlers which allows customization and more configurability.
Unimplemented handlers raise
NotImplementedError
by default. [aleksihakli] - Add Python 3.8 dev version and PyPy to the Travis test matrix. [aleksihakli]
- Add
AXES_ONLY_ADMIN_SITE
flag for only running Axes on admin site. [hramezani] - Add
axes_reset_logs
command for removing old AccessLog records. [tlebrize] - Allow
AxesBackend
subclasses to pass theaxes.W003
system check. [adamchainz]
- Fix lockout message showing when lockout is disabled
with the
AXES_LOCK_OUT_AT_FAILURE
setting. [mogzol] - Add support for callable
AXES_FAILURE_LIMIT
setting. [bbayles]
- Deprecate
AXES_DISABLE_SUCCESS_ACCESS_LOG
flag in favour ofAXES_DISABLE_ACCESS_LOG
which has mostly the same functionality. Update documentation to better reflect the behaviour of the flag. [aleksihakli]
- Change the lockout response calculation to request flagging
instead of exception throwing in the signal handler and middleware.
Move request attribute calculation from middleware to handler layer.
Deprecate
axes.request.AxesHttpRequest
object type definition. [aleksihakli] - Deprecate the old version 4.x
axes.backends.AxesModelBackend
class. [aleksihakli] - Improve documentation on attempt tracking, resets, Axes customization, project and component compatibility and integrations, and other things. [aleksihakli]
- Fix regression with OAuth2 authentication backends not having remote IP addresses set and throwing an exception in cache key calculation. [aleksihakli]
- Fix
django.contrib.auth
modulelogin
andlogout
functionality so that they work with the handlers without the anAxesHttpRequest
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]
- Add
AXES_ENABLED
setting for disabling Axes with e.g. tests that use Django test clientlogin
,logout
, andforce_login
methods, which do not supply therequest
argument to views, preventing Axes from functioning correctly in certain test setups. [aleksihakli]
- Add changelog to documentation. [aleksihakli]
- Deprecate Python 2.7, 3.4 and 3.5 support. [aleksihakli]
- Remove automatic decoration and monkey-patching of Django views and forms. Decorators are available for login function and method decoration as before. [aleksihakli]
- Use backend, middleware, and signal handlers for tracking login attempts and implementing user lockouts. [aleksihakli, jorlugaqui, joshua-s]
- Add
AxesDatabaseHandler
,AxesCacheHandler
, andAxesDummyHandler
handler backends for processing user login and logout events and failures. Handlers are configurable with theAXES_HANDLER
setting. [aleksihakli, jorlugaqui, joshua-s] - Improve management commands and separate commands for resetting
all access attempts, attempts by IP, and attempts by username.
New command names are
axes_reset
,axes_reset_ip
andaxes_reset_username
. [aleksihakli] - Add support for string import for
AXES_USERNAME_CALLABLE
that supports dotted paths in addition to the old callable type such as a function or a class method. [aleksihakli] - Deprecate one argument call signature for
AXES_USERNAME_CALLABLE
. From now on, the callable needs to accept two arguments, the HttpRequest and credentials that are supplied to the Djangoauthenticate
method in authentication backends. [aleksihakli] - Move
axes.attempts.is_already_locked
function toaxes.handlers.AxesProxyHandler.is_locked
. Various other previously undocumented methods have been deprecated and moved inside the project. The new documented public APIs can be considered as stable and can be safely utilized by other projects. [aleksihakli] - Improve documentation layouting and contents. Add public API reference section. [aleksihakli]
- Improve README and documentation [aleksihakli]
- Remove the unused
AccessAttempt.trusted
flag from models [aleksihakli] - Improve README and Travis CI setups [aleksihakli]
- Added Turkish translations [obayhan]
- Removed duplicated check that was causing issues when using APIs. [camilonova]
- Added Russian translations [lubicz-sielski]
- Improve support for custom authentication credentials using the
AXES_USERNAME_FORM_FIELD
andAXES_USERNAME_CALLABLE
settings. [mastacheata] - Updated behaviour for fetching username from request or credentials:
If no
AXES_USERNAME_CALLABLE
is configured, the optionalcredentials
that are supplied to the axes utility methods are now the default source for client username and the HTTP request POST is the fallback for fetching the user information.AXES_USERNAME_CALLABLE
implements an alternative signature with two argumentsrequest, credentials
in addition to the oldrequest
call argument signature in a backwards compatible fashion. [aleksihakli] - Add official support for the Django 2.1 version and Python 3.7. [aleksihakli]
- Improve the requirements, documentation, tests, and CI setup. [aleksihakli]
- Fix MANIFEST.in missing German translations [aleksihakli]
- Add AXES_RESET_ON_SUCCESS configuration flag [arjenzijlstra]
- fix missing migration and add check to prevent it happening again. [markddavidoff]
- Add a German translation [adonig]
- Documentation wording changes [markddavidoff]
- Use get_client_username in log_user_login_failed instead of credentials [markddavidoff]
- pin prospector to 0.12.11, and pin astroid to 1.6.5 [hsiaoyi0504]
- Added AXES_USERNAME_CALLABLE [jaadus]
- Change custom authentication backend failures from error to warning log level [aleksihakli]
- Set up strict code linting for CI pipeline that fails builds if linting does not pass [aleksihakli]
- Clean up old code base and tests based on linter errors [aleksihakli]
- Refactor and clean up code layout [aleksihakli]
- Add prospector linting and code checks to toolchain [aleksihakli]
- Clean up log message formatting and refactor type checks [EvaSDK]
- Fix faulty user locking with user agent when AXES_ONLY_USER_FAILURES is set [EvaSDK]
- Fix unicode string interpolation on Python 2.7 [aleksihakli]
- Add configuration flags for client IP resolving [aleksihakli]
- Add AxesModelBackend authentication backend [markdaviddoff]
- Add AXES_CACHE setting for configuring axes specific caching. [JWvDronkelaar]
- Add checks and tests for faulty LocMemCache usage in application setup. [aleksihakli]
- Improve Windows compatibility on Python < 3.4 by utilizing win_inet_pton [hsiaoyi0504]
- Add documentation on django-allauth integration [grucha]
- Add documentation on known AccessAttempt caching configuration problems when using axes with the django.core.cache.backends.locmem.LocMemCache [aleksihakli]
- Refactor and improve existing AccessAttempt cache reset utility [aleksihakli]
- Fixes issue when not using AXES_USERNAME_FORM_FIELD [camilonova]
- BREAKING CHANGES. AXES_BEHIND_REVERSE_PROXY AXES_REVERSE_PROXY_HEADER AXES_NUM_PROXIES were removed in order to use django-ipware to get the user ip address [camilonova]
- Added support for custom username field [kakulukia]
- Customizing Axes doc updated [pckapps]
- Remove filtering by username [camilonova]
- Fixed logging failed attempts to authenticate using a custom authentication backend. [D3X]
- Test against Python 2.7. [mbaechtold]
- Test against Python 3.4. [pope1ni]
- Added form_invalid decorator. Fixes #265 [camilonova]
- Fix DeprecationWarning for logger warning [richardowen]
- Fixes global lockout possibility [joeribekker]
- Changed the way output is handled in the management commands [ataylor32]
- BREAKING CHANGES. Support for Django >= 1.11 and signals, see issue #215. Drop support for Python < 3.6 [camilonova]
- Many tweaks and handles successful AJAX logins. [Jack Sullivan]
- Add tests for proxy number parametrization [aleksihakli]
- Add AXES_NUM_PROXIES setting [aleksihakli]
- Log failed access attempts regardless of settings [jimr]
- Updated configuration docs to include AXES_IP_WHITELIST [Minkey27]
- Add test for get_cache_key function [jorlugaqui]
- Delete cache key in reset command line [jorlugaqui]
- Add signals for setting/deleting cache keys [jorlugaqui]
- Only look for lockable users on a POST [schinckel]
- Fix and add tests for IPv4 and IPv6 parsing [aleksihakli]
- Added settings for disabling success accesslogs [Minkey27]
- Fixed illegal IP address string passed to inet_pton [samkuehn]
- Fixed
axes_reset
management command to skip "ip" prefix to command arguments. [EvaMarques] - Added
axes_reset_user
management command to reset lockouts and failed login records for given users. [vladimirnani] - Fixed Travis-PyPI release configuration. [jezdez]
- Make IP position argument optional. [aredalen]
- Added possibility to disable access log [svenhertle]
- Fix for IIS used as reverse proxy adding port number [Dmitri-Sintsov]
- Made the signal race condition safe. [Minkey27]
- Added AXES_ONLY_USER_FAILURES to support only looking at the user ID. [lip77us]
- Improve the logic when using a reverse proxy to avoid possible attacks. [camilonova]
- Add default_app_config so you can just use axes in INSTALLED_APPS [vdboor]
- Removed middleware to use app_config [camilonova]
- Lots of cleaning [camilonova]
- Improved test suite and versions [camilonova]
- Use render shortcut for rendering LOCKOUT_TEMPLATE [Radoslaw Luter]
- Added app_label for RemovedInDjango19Warning [yograterol]
- Add iso8601 translator. [mullakhmetov]
- Edit json response. Context now contains ISO 8601 formatted cooloff time [mullakhmetov]
- Add json response and iso8601 tests. [mullakhmetov]
- Fixes issue 162: UnicodeDecodeError on pip install [joeribekker]
- Added AXES_NEVER_LOCKOUT_WHITELIST option to prevent certain IPs from being locked out. [joeribekker]
- Fixes whitelist check when BEHIND_REVERSE_PROXY [Patrick Hagemeister]
- Made migrations py3 compatible [mvdwaeter]
- Fixing #126, possibly breaking compatibility with Django<=1.7 [int-ua]
- Add note for upgrading users about new migration files [kelseyq]
- Fixes #148 [camilonova]
- Decorate auth_views.login only once [teeberg]
- Set IP public/private classifier to be compliant with RFC 1918. [SilasX]
- Issue #155. Lockout response status code changed to 403. [Arthur Mullahmetov]
- BUGFIX: Missing migration [smeinel]
- Stopped using render_to_response so that other template engines work [tarkatronic]
- Improved performance & DoS prevention on query2str [tarkatronic]
- Immediately return from is_already_locked if the user is not lockable [jdunck]
- Iterate over ip addresses only once [annp89]
- added initial migration files to support django 1.7 &up. Upgrading users should run migrate --fake-initial after update [ibaguio]
- Add db indexes to CommonAccess model [Schweigi]
- Fix #_get_user_attempts to include username when filtering AccessAttempts if AXES_LOCK_OUT_BY_COMBINATION_USER_AND_IP is True [afioca]
- Send the user_locked_out signal. Fixes #94. [toabi]
- Python 3 fix (#104)
- Rename GitHub organization from django-security to django-pci to emphasize focus on providing assistance with building PCI compliant websites with Django. [aclark4life]
- Explain common issues where Axes fails silently [cericoda]
- Allow for user-defined username field for lookup in POST data [SteveByerly]
- Log out only if user was logged in [zoten]
- Support for floats in cooloff time (i.e: 0.1 == 6 minutes) [marianov]
- Limit amount of POST data logged (#73). Limiting the length of value is not enough, as there could be arbitrary number of them, or very long key names. [peterkuma]
- Improve get_ip to try for real ip address [7wonders]
- Change IPAddressField to GenericIPAddressField. When using a PostgreSQL database and the client does not pass an IP address you get an inet error. This is a known problem with PostgreSQL and the IPAddressField. https://code.djangoproject.com/ticket/5622. It can be fixed by using a GenericIPAddressField instead. [polvoblanco]
- Get first X-Forwarded-For IP [tutumcloud]
- White listing IP addresses behind reverse proxy. Allowing some IP addresses to have direct access to the app even if they are behind a reverse proxy. Those IP addresses must still be on a white list. [ericbulloch]
- Reduce logging of reverse proxy IP lookup and use configured logger. Fixes #76. Instead of logging the notice that django.axes looks for a HTTP header set by a reverse proxy on each attempt, just log it one-time on first module import. Also use the configured logger (by default axes.watch_login) for the message to be more consistent in logging. [eht16]
- Limit the length of the values logged into the database. Refs #73 [camilonova]
- Refactored tests to be more stable and faster [camilonova]
- Clean client references [camilonova]
- Fixed admin login url [camilonova]
- Added django 1.7 for testing [camilonova]
- Travis file cleanup [camilonova]
- Remove hardcoded url path [camilonova]
- Fixing tests for django 1.7 [Andrew-Crosio]
- Fix for django 1.7 exception not existing [Andrew-Crosio]
- Removed python 2.6 from testing [camilonova]
- Use django built-in six version [camilonova]
- Added six as requirement [camilonova]
- Added python 2.6 for travis testing [camilonova]
- Replaced u string literal prefixes with six.u() calls [amrhassan]
- Fixes object type issue, response is not an string [camilonova]
- Python 3 compatibility fix for db_reset [nicois]
- Added example project and helper scripts [barseghyanartur]
- Admin command to list login attemps [marianov]
- Replaced six imports with django.utils.six ones [amrhassan]
- Replaced u string literal prefixes with six.u() calls to make it compatible with Python 3.2 [amrhassan]
- Replaced assertIn`s and `assertNotIn`s with `assertContains and assertNotContains [fcurella]
- Added py3k to travis [fcurella]
- Update test cases to be python3 compatible [nicois]
- Python 3 compatibility fix for db_reset [nicois]
- Removed trash from example urls [barseghyanartur]
- Added django installer [barseghyanartur]
- Added example project and helper scripts [barseghyanartur]
- Added AttributeError in case get_profile doesn't exist [camilonova]
- Improved axes_reset command [camilonova]
- Fix an issue with __version__ loading the wrong version [graingert]
- Update README.rst for PyPI [marty, camilonova, graingert]
- Add cooloff period [visualspace]
- Added 'username' field to the Admin table [bkvirendra]
- Removed fallback logging creation since logging cames by default on django 1.4 or later, if you don't have it is because you explicitly wanted. Fixes #45 [camilonova]
- Fix an issue when a user logout [camilonova]
- Match pypi version [camilonova]
- Better User model import method [camilonova]
- Use only one place to get the version number [camilonova]
- Fixed an issue when a user on django 1.4 logout [camilonova]
- Handle exception if there is not user profile model set [camilonova]
- Made some cleanup and remove a pokemon exception handling [camilonova]
- Improved tests so it really looks for the rabbit in the hole [camilonova]
- Match pypi version [camilonova]
- Add support for Django 1.5 [camilonova]
- Bug fix: get_version() format string [csghormley]
- Add to and improve test cases [camilonova]
- Increased http accept header length [jslatts]
- Reverse proxy support [rmagee]
- Clean up README [martey]
- Remove unused import [aclark4life]
- Fix setup.py [aclark4life]
- Added ability to flag user accounts as unlockable. [kencochrane]
- Added ipaddress as a param to the user_locked_out signal. [kencochrane]
- Added a signal receiver for user_logged_out. [kencochrane]
- Added a signal for when a user gets locked out. [kencochrane]
- Added AccessLog model to log all access attempts. [kencochrane]