Skip to content

Commit 7a1ed4d

Browse files
committed
Version changed
1 parent e47d4a7 commit 7a1ed4d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v3.5.6 - May 5, 2016
2+
- Patch for ImageMagick vulnerability - https://imagetragick.com/
3+
4+
15
v3.5.5 - Apr 13, 2016
26
- WP-CLI support for wordpress v4.5, PR #701
37
- PR #686

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.5.5"
15+
ee_version = "3.5.6"
1616

1717

1818
# EasyEngine packages versions

install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fi
4848
# Define variables for later use
4949
ee_branch=$1
5050
readonly ee_version_old="2.2.3"
51-
readonly ee_version_new="3.5.5"
51+
readonly ee_version_new="3.5.6"
5252
readonly ee_log_dir=/var/log/ee/
5353
readonly ee_install_log=/var/log/ee/install.log
5454
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')
@@ -87,7 +87,6 @@ fi
8787
# Generate Locale
8888
function ee_install_dep()
8989
{
90-
ee_lib_echo "Installing required packages, please wait..."
9190
if [ "$ee_linux_distro" == "Ubuntu" ]; then
9291
apt-get -y install gcc curl gzip python3 python3-apt python3-setuptools python3-dev sqlite3 git tar python-software-properties software-properties-common || ee_lib_error "Unable to install pre depedencies, exit status " 1
9392
elif [ "$ee_linux_distro" == "Debian" ]; then
@@ -368,6 +367,7 @@ function ee_update_latest()
368367
if [ -f /etc/ImageMagick/policy.xml ]
369368
then
370369
if [ ! -f /etc/ImageMagick/patch.txt ]
370+
then
371371
echo -e "\t<policy domain="coder" rights="none" pattern="EPHEMERAL" />\n\t<policy domain="coder" rights="none" pattern="URL" />\n\t<policy domain="coder" rights="none" pattern="HTTPS" />\n\t<policy domain="coder" rights="none" pattern="MVG" />\n\t<policy domain="coder" rights="none" pattern="MSL" />" >> /etc/ImageMagick/patch.txt
372372
sed -i '/<policymap>/r /etc/ImageMagick/patch.txt' /etc/ImageMagick/policy.xml
373373
fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
shutil.copy2(os.path.expanduser("~")+'/.gitconfig', '/root/.gitconfig')
5959

6060
setup(name='ee',
61-
version='3.5.5',
61+
version='3.5.6',
6262
description=long_description,
6363
long_description=long_description,
6464
classifiers=[],

0 commit comments

Comments
 (0)