Browse Source

Merge tag 'v3.3.4' into develop

EasyEngine v3.3.4
feature/refactor-php
Prabuddha Chakraborty 10 years ago
parent
commit
3728fff3d8
  1. 3
      CHANGELOG.txt
  2. 1
      ee/cli/templates/redis-hhvm.mustache
  3. 2
      ee/core/variables.py
  4. 13
      install
  5. 2
      setup.py

3
CHANGELOG.txt

@ -1,3 +1,6 @@
v 3.3.4 - Aug 12, 2015
- Bug Fix for https://github.com/rtCamp/easyengine/issues/598#issue-98354466
v 3.3.3 - Jul 28, 2015
- Bug Fix for https://github.com/rtCamp/easyengine/issues/593#issuecomment-125274633

1
ee/cli/templates/redis-hhvm.mustache

@ -53,5 +53,6 @@ location ~ \.php$ {
more_set_headers 'X-SRCache-Store-Status $srcache_store_status';
include fastcgi_params;
fastcgi_param HTTP_ACCEPT_ENCODING "";
fastcgi_pass hhvm;
}

2
ee/core/variables.py

@ -12,7 +12,7 @@ class EEVariables():
"""Intialization of core variables"""
# EasyEngine version
ee_version = "3.3.3"
ee_version = "3.3.4"
# EasyEngine packages versions
ee_wp_cli = "0.19.2"

13
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.3"
readonly ee_version_new="3.3.4"
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}')
@ -407,12 +407,19 @@ function ee_update_latest()
sed -i "s/X-Cache-2 /X-SRCache-Store-Status /g" /etc/nginx/common/redis.conf &>> /dev/null
fi
# Update Timeout redis-hhvm.conf
if [ -f /etc/nginx/common/redis-hhvm.conf ]; then
# Update Timeout redis-hhvm.conf
grep -0 'redis2_query expire $key 6h' /etc/nginx/common/redis-hhvm.conf &>> /dev/null
if [ $? -eq 0 ]; then
sed -i 's/redis2_query expire $key 6h/redis2_query expire $key 14400/g' /etc/nginx/common/redis-hhvm.conf &>> /dev/null
fi
#Fix for 3.3.4 redis-hhvm issue
grep -0 'HTTP_ACCEPT_ENCODING' /etc/nginx/common/redis-hhvm.conf &>> /dev/null
if [ $? -ne 0 ]; then
sed -i 's/fastcgi_params;/fastcgi_params;\n fastcgi_param HTTP_ACCEPT_ENCODING "";/g' /etc/nginx/common/redis-hhvm.conf &>> /dev/null
fi
fi
# Fix for 3.3.2 renamed nginx.conf
@ -436,6 +443,8 @@ function ee_update_latest()
fi
fi
fi
}
# Do git intialisation

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.3',
version='3.3.4',
description=long_description,
long_description=long_description,
classifiers=[],

Loading…
Cancel
Save