mirror of https://github.com/fail2ban/fail2ban
Merge branch 'master' into 0.10
commit
94c793ff89
|
@ -16,8 +16,9 @@ python:
|
||||||
# - pypy3
|
# - pypy3
|
||||||
- pypy3.3-5.2-alpha1
|
- pypy3.3-5.2-alpha1
|
||||||
before_install:
|
before_install:
|
||||||
- if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then export F2B_PY_2=true && echo "Set F2B_PY_2"; fi
|
- echo "running under $TRAVIS_PYTHON_VERSION"
|
||||||
- if [[ $TRAVIS_PYTHON_VERSION == 3* || $TRAVIS_PYTHON_VERSION == 'pypy3' ]]; then export F2B_PY_3=true && echo "Set F2B_PY_3"; fi
|
- if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == pypy* && $TRAVIS_PYTHON_VERSION != pypy3* ]]; then export F2B_PY_2=true && echo "Set F2B_PY_2"; fi
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == 3* || $TRAVIS_PYTHON_VERSION == pypy3* ]]; then export F2B_PY_3=true && echo "Set F2B_PY_3"; fi
|
||||||
- travis_retry sudo apt-get update -qq
|
- travis_retry sudo apt-get update -qq
|
||||||
# Set this so sudo executes the correct python binary
|
# Set this so sudo executes the correct python binary
|
||||||
# Anything not using sudo will already have the correct environment
|
# Anything not using sudo will already have the correct environment
|
||||||
|
|
16
ChangeLog
16
ChangeLog
|
@ -292,13 +292,25 @@ fail2ban-client set loglevel INFO
|
||||||
- new `with_foreground_server_thread` decorator to test several client/server commands
|
- new `with_foreground_server_thread` decorator to test several client/server commands
|
||||||
|
|
||||||
|
|
||||||
ver. 0.9.x (2016/??/??) - wanna-be-released
|
ver. 0.9.8 (2016/XX/XXX) - wanna-be-released
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
0.9.x line is no longer heavily developed. If you are interested in
|
0.9.x line is no longer heavily developed. If you are interested in
|
||||||
new features (e.g. IPv6 support), please consider 0.10 branch and its
|
new features (e.g. IPv6 support), please consider 0.10 branch and its
|
||||||
releases.
|
releases.
|
||||||
|
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ver. 0.9.7 (2017/05/11) - awaiting-victory
|
||||||
|
-----------
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
* Fixed a systemd-journal handling in fail2ban-regex (gh-1657)
|
* Fixed a systemd-journal handling in fail2ban-regex (gh-1657)
|
||||||
* filter.d/sshd.conf
|
* filter.d/sshd.conf
|
||||||
|
@ -325,7 +337,7 @@ releases.
|
||||||
* filter.d/cyrus-imap.conf
|
* filter.d/cyrus-imap.conf
|
||||||
- accept entries without login-info resp. hostname before IP address (gh-1707)
|
- accept entries without login-info resp. hostname before IP address (gh-1707)
|
||||||
* Filter tests extended with check of all config-regexp, that contains greedy catch-all
|
* Filter tests extended with check of all config-regexp, that contains greedy catch-all
|
||||||
before `<HOST>`, that is hard-anchored at end or precise sub expression after `<HOST>`
|
before `<HOST>`, that is hard-anchored at end or precise sub expression after `<HOST>`
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
* New Actions:
|
* New Actions:
|
||||||
|
|
Loading…
Reference in New Issue