From 51a3be2d7951366cc4af8d84ac56666cab9a3688 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 5 Dec 2012 22:50:36 -0500 Subject: [PATCH] Getting ready for 0.8.8 release (changelog, version boost) --- ChangeLog | 34 +++++++++++++++++++++++++++++++++- README | 6 +++--- common/version.py | 4 ++-- 3 files changed, 38 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index fd4a14ca..eabd6e81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,9 +4,41 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ================================================================================ -Fail2Ban (version 0.8.7.1) 2012/07/31 +Fail2Ban (version 0.8.8) 2012/12/06 ================================================================================ +ver. 0.8.8 (2012/12/06) - stable +---------- +- Fixes: + Alan Jenkins + * [8c38907] Removed 'POSSIBLE BREAK-IN ATTEMPT' from sshd filter to avoid + banning due to misconfigured DNS. Close gh-64 + Yaroslav Halchenko + * [83109bc] IMPORTANT: escape the content of (if used in + custom action files) since its value could contain arbitrary + symbols. Thanks for discovery go to the NBS System security + team + * [0935566,5becaf8] Various python 2.4 and 2.5 compatibility fixes. Close gh-83 + * [b159eab] do not enable pyinotify backend if pyinotify < 0.8.3 + * [37a2e59] store IP as a base, non-unicode str to avoid spurious messages + in the console. Close gh-91 +- New features: + David Engeset + * [2d672d1,6288ec2] 'unbanip' command for the client + avoidance of touching + the log file to take 'banip' or 'unbanip' in effect. Close gh-81, gh-86 + Yaroslav Halchenko +- Enhancements: + * [2d66f31] replaced uninformative "Invalid command" message with warning log + exception why command actually failed + * [958a1b0] improved failregex to "support" auth.backend = "htdigest" + * [9e7a3b7] until we make it proper module -- adjusted sys.path only if + system-wide run + * [f52ba99] downgraded "already banned" from WARN to INFO level. Closes gh-79 + * [f105379] added hints into the log on some failure return codes (e.g. 0x7f00 + for this gh-87) + * Various others: travis-ci integration, script to run tests + against all available Python versions, etc + ver. 0.8.7.1 (2012/07/31) - stable ---------- diff --git a/README b/README index bc365482..db97aa8b 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ |_| \__,_|_|_/___|_.__/\__,_|_||_| ================================================================================ -Fail2Ban (version 0.8.7) 2012/07/31 +Fail2Ban (version 0.8.8) 2012/07/31 ================================================================================ Fail2Ban scans log files like /var/log/pwdfail and bans IP that makes too many @@ -31,8 +31,8 @@ Optional: To install, just do: -> tar xvfj fail2ban-0.8.7.tar.bz2 -> cd fail2ban-0.8.7 +> tar xvfj fail2ban-0.8.8.tar.bz2 +> cd fail2ban-0.8.8 > python setup.py install This will install Fail2Ban into /usr/share/fail2ban. The executable scripts are diff --git a/common/version.py b/common/version.py index d2fefcc2..2a1c0d0b 100644 --- a/common/version.py +++ b/common/version.py @@ -21,8 +21,8 @@ # # $Revision$ -__author__ = "Cyril Jaquier" +__author__ = "Cyril Jaquier, Yaroslav Halchenko" __copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2011-2012 Yaroslav Halchenko" __license__ = "GPL" -version = "0.8.7.1" +version = "0.8.8"