mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
Released version 0.5.4
Signed-off-by: Ken Cochrane <KenCochrane@gmail.com>
This commit is contained in:
parent
066dd238c8
commit
825afb3209
3 changed files with 14 additions and 2 deletions
6
CHANGES
6
CHANGES
|
|
@ -1,3 +1,9 @@
|
|||
0.5.4
|
||||
=====
|
||||
- Added 2 new setting variables for more granular failure limit control [@williamboman]
|
||||
- Added ssl option when instantiating StrictRedis [@mjrimrie]
|
||||
- Send signals when blocking username or ip [@williamboman]
|
||||
|
||||
0.5.3
|
||||
=====
|
||||
- Remove mockredis as install requirement, make only test requirement [@blueyed]
|
||||
|
|
|
|||
|
|
@ -24,6 +24,11 @@ If you are using defender on your site, submit a PR to add to the list.
|
|||
|
||||
Versions
|
||||
========
|
||||
- 0.5.4
|
||||
- Added 2 new setting variables for more granular failure limit control [@williamboman]
|
||||
- Added ssl option when instantiating StrictRedis [@mjrimrie]
|
||||
- Send signals when blocking username or ip [@williamboman]
|
||||
|
||||
- 0.5.3
|
||||
- Remove mockredis as install requirement, make only test requirement [@blueyed]
|
||||
|
||||
|
|
@ -97,7 +102,8 @@ Features
|
|||
- list of blocked usernames and ip's
|
||||
- ability to unblock people
|
||||
- list of recent login attempts
|
||||
- Can be easly adapted to custom authentication method.
|
||||
- Can be easily adapted to custom authentication method.
|
||||
- Signals are sent when blocking username or IP
|
||||
|
||||
Long term goals
|
||||
===============
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -9,7 +9,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
|
||||
version = '0.5.3'
|
||||
version = '0.5.4'
|
||||
|
||||
|
||||
def get_packages(package):
|
||||
|
|
|
|||
Loading…
Reference in a new issue