Browse Source

Merge branch 'hotfix/v3.3.13'

hotfix/v3.3.14 v3.3.13
Prabuddha Chakraborty 9 years ago
parent
commit
5ef610d189
  1. 4
      CHANGELOG.txt
  2. 4
      ee/core/variables.py
  3. 12
      install
  4. 2
      setup.py

4
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

4
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"

12
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

2
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=[],

Loading…
Cancel
Save