diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 018ce4d3..1c32306e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +v 3.3.13 - Nov 10, 2015 +- Security Fix in redis.conf +- Update wp-cli version + v 3.3.12 - Nov 3, 2015 - Fix #637 - Updated wp-cli version diff --git a/ee/core/variables.py b/ee/core/variables.py index 9fc00085..3a7d2a8e 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -12,11 +12,11 @@ class EEVariables(): """Intialization of core variables""" # EasyEngine version - ee_version = "3.3.12" + ee_version = "3.3.13" # EasyEngine packages versions - ee_wp_cli = "0.20.3" + ee_wp_cli = "0.21.0" ee_adminer = "4.2.1" ee_roundcube = "1.1.3" ee_vimbadmin = "3.0.12" diff --git a/install b/install index 1def9d51..c4919713 100644 --- a/install +++ b/install @@ -48,7 +48,7 @@ fi # Define variables for later use ee_branch=$1 readonly ee_version_old="2.2.3" -readonly ee_version_new="3.3.12" +readonly ee_version_new="3.3.13" readonly ee_log_dir=/var/log/ee/ readonly ee_install_log=/var/log/ee/install.log readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}') @@ -462,6 +462,16 @@ function ee_update_latest() fi fi + #Fix Redis-server security issue + #http://redis.io/topics/security + if [ -f /etc/redis/redis.conf ]; then + grep -0 -v "#" /etc/redis/redis.conf | grep 'bind' &>> /dev/null + if [ $? -ne 0 ]; then + sed -i '$ a bind 127.0.0.1' /etc/redis/redis.conf &>> /dev/null + service redis-server restart &>> /dev/null + fi + fi + # Fix for 3.3.2 renamed nginx.conf nginx -V 2>&1 &>>/dev/null if [[ $? -eq 0 ]]; then diff --git a/setup.py b/setup.py index ab5ac2cd..f06b35b5 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ except Exception as e: os.system("git config --global user.email {0}".format(ee_email)) setup(name='ee', - version='3.3.12', + version='3.3.13', description=long_description, long_description=long_description, classifiers=[],