We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b3f6856 + 2612d55 commit 5b44272Copy full SHA for 5b44272
CHANGELOG.txt
@@ -1,3 +1,6 @@
1
+v3.5.1 - Feb 25, 2016
2
+- Fixed #680
3
+
4
v3.5.0 - Feb 24, 2016
5
- Added PHP 7.0 support for Ubuntu(Trusty)
6
- Dual support for PHP 5.6 + PHP 7.0
ee/core/variables.py
@@ -12,7 +12,7 @@ class EEVariables():
12
"""Intialization of core variables"""
13
14
# EasyEngine version
15
- ee_version = "3.5.0"
+ ee_version = "3.5.1"
16
17
18
# EasyEngine packages versions
@@ -122,10 +122,10 @@ class EEVariables():
122
ee_php_repo = "ppa:ondrej/php"
123
ee_php5_6 = ["php5.6-fpm", "php5.6-curl", "php5.6-gd", "php5.6-imap",
124
"php5.6-mcrypt", "php5.6-readline", "php5.6-common",
125
- "php5.6-mysql", "php5.6-cli"]
+ "php5.6-mysql", "php5.6-cli", "php5.6-zip", "php5.6-xml"]
126
ee_php7_0 = ["php7.0-fpm", "php7.0-curl", "php7.0-gd", "php7.0-imap",
127
"php7.0-mcrypt", "php7.0-readline", "php7.0-common",
128
- "php7.0-mysql", "php7.0-cli"]
+ "php7.0-mysql", "php7.0-cli", "php7.0-zip", "php7.0-xml"]
129
ee_php_extra = ["php-memcached", "php-imagick", "memcached",
130
"graphviz", "php-pear", "php-xdebug", "php-msgpack"]
131
elif ee_platform_distro == 'debian':
install
@@ -48,7 +48,7 @@ fi
48
# Define variables for later use
49
ee_branch=$1
50
readonly ee_version_old="2.2.3"
51
-readonly ee_version_new="3.5.0"
+readonly ee_version_new="3.5.1"
52
readonly ee_log_dir=/var/log/ee/
53
readonly ee_install_log=/var/log/ee/install.log
54
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')
@@ -304,7 +304,7 @@ function ee_upgrade_php(){
304
add-apt-repository -y 'ppa:ondrej/php'
305
ee_lib_echo "Upgrading required packages, please wait..."
306
apt-get update &>> /dev/null
307
- apt-get -y install php5.6-fpm php5.6-curl php5.6-gd php5.6-imap php5.6-mcrypt php5.6-readline php5.6-mysql php5.6-cli php5.6-common php-memcached php-imagick memcached graphviz php-pear php-xdebug php-msgpack || ee_lib_error "Unable to install PHP 5.6 packages, exit status " 1
+ apt-get -y install php5.6-fpm php5.6-curl php5.6-gd php5.6-imap php5.6-mcrypt php5.6-readline php5.6-mysql php5.6-cli php5.6-common php-memcached php-imagick memcached graphviz php-pear php-xdebug php-msgpack php5.6-zip php5.6-xml || ee_lib_error "Unable to install PHP 5.6 packages, exit status " 1
308
if [ -e /etc/php5/fpm/pool.d/www.conf -a -e /etc/php5/fpm/pool.d/debug.conf -a -e /etc/php5/fpm/php.ini -a -e /etc/php5/fpm/php-fpm.conf ]; then
309
cp -f /etc/php5/fpm/pool.d/www.conf /etc/php/5.6/fpm/pool.d/www.conf &>> /dev/null
310
cp -f /etc/php5/fpm/pool.d/debug.conf /etc/php/5.6/fpm/pool.d/debug.conf &>> /dev/null
@@ -324,6 +324,9 @@ function ee_upgrade_php(){
324
service php5.6-fpm restart &>> /dev/null
325
rm -f /etc/apt/sources.list.d/ondrej-php5-5_6-trusty.list &>> /dev/null
326
apt-get remove -y php5-fpm php5-curl php5-gd php5-imap php5-mcrypt php5-common php5-readline php5-mysql php5-cli php5-memcache php5-imagick memcached graphviz php-pear
327
328
+ elif [ -f /etc/apt/sources.list.d/ondrej-php-trusty.list ]; then
329
+ apt-get -y install php5.6-zip php5.6-xml || ee_lib_error "Unable to install PHP 5.6 packages, exit status " 1
330
fi
331
332
setup.py
@@ -58,7 +58,7 @@
58
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
59
60
setup(name='ee',
61
- version='3.5.0',
+ version='3.5.1',
62
description=long_description,
63
long_description=long_description,
64
classifiers=[],
0 commit comments