From 5d3f96cc55170f368402796d873462056337526f Mon Sep 17 00:00:00 2001 From: Douglas Black Date: Mon, 20 Apr 2020 11:28:35 -0400 Subject: [PATCH 1/4] Add required iconv --- docs/installation/requirements.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/docs/installation/requirements.md b/docs/installation/requirements.md index a1beec2ed..cde01f0b7 100755 --- a/docs/installation/requirements.md +++ b/docs/installation/requirements.md @@ -64,6 +64,7 @@ Though the following are available in PHP by default, some hosts may have them d - [GD (or GD 2)](http://www.php.net/manual/en/ref.image.php) library - The [File Information (fileinfo)](http://php.net/manual/en/book.fileinfo.php) PHP extension +- [Iconv](https://www.php.net/manual/en/book.iconv.php) library NOTE: **Note:** If you're on MediaTemple you will need [to create a phprc file](http://wiki.dreamhost.com/PHP.ini#How_to_add_a_phprc_file) that contains the following: `extension = fileinfo.so` @@ -74,18 +75,6 @@ These are recommended, but not required. - The [Internationalization](http://php.net/manual/en/book.intl.php) extension, for full functionality of [variable modifiers](templates/variable-modifiers.md) - [Multibyte String](http://php.net/manual/en/mbstring.installation.php) handling -For full support of multibyte encodings, ask your web host or server admin to set `mbstring.func_overload` to `6` in your server configuration by editing `php.ini` as shown below: - - ; overload(replace) single byte functions by mbstring functions. - ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(), - ; etc. Possible values are 0,1,2,4 or combination of them. - ; For example, 7 for overload everything. - ; 0: No overload - ; 1: Overload mail() function - ; 2: Overload str*() functions - ; 4: Overload ereg*() functions - mbstring.func_overload = 6 - ### MySQL Privileges The MySQL user connecting to the database must have the following privileges: From 1fda0bed2f945a41e43740f2e49e8291e2d1d82c Mon Sep 17 00:00:00 2001 From: Andy McCormick Date: Tue, 21 Apr 2020 16:23:55 -0400 Subject: [PATCH 2/4] Updated changelog for 5.3.2 release --- docs/installation/changelog.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index da04fb1ff..346cdb47c 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -9,6 +9,18 @@ # ExpressionEngine v5 Change Log +## Version 5.3.2 + +Release Date: April 21, 2020 +- **Updated support for PHP 7.4** +- Fixed a bug ([#399] (https://github.com/ExpressionEngine/ExpressionEngine/issues/399)) where a user was required to enter a Pages URI when selecting a default template. +- Fixed a bug ([#404] (https://github.com/ExpressionEngine/ExpressionEngine/issues/404)) where removing a database record for a template that is used would cause an error. +- Fixed a bug where some installations on Windows OS where unable to upgrade via the 1 Click Updater. +- Fixed a bug where selecting the first checkbox in a table's row which contains multiple checkboxes, the last checkbox would also automatically be selected. +- Fixed a bug ([#406] (https://github.com/ExpressionEngine/ExpressionEngine/issues/406)) where an error was thrown if EE was installed on a server that did not have the `iconv` PHP extension installed. +- Fixed a bug where if cURL failed during a 1 Click Update, no error was thrown to let the user know what happened. + + ## Version 5.3.1 Release Date: April 9, 2020 From 9060ce61e42e0c7773655d3ec1970eab9f1a9789 Mon Sep 17 00:00:00 2001 From: Andy Mc <55093827+ops-andy@users.noreply.github.com> Date: Wed, 22 Apr 2020 15:08:30 -0400 Subject: [PATCH 3/4] updated date to current release date --- docs/installation/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 346cdb47c..9f3423f05 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -11,7 +11,7 @@ ## Version 5.3.2 -Release Date: April 21, 2020 +Release Date: April 22, 2020 - **Updated support for PHP 7.4** - Fixed a bug ([#399] (https://github.com/ExpressionEngine/ExpressionEngine/issues/399)) where a user was required to enter a Pages URI when selecting a default template. - Fixed a bug ([#404] (https://github.com/ExpressionEngine/ExpressionEngine/issues/404)) where removing a database record for a template that is used would cause an error. From a790aa8c4d233c570ee03c411beb763598a4fe40 Mon Sep 17 00:00:00 2001 From: Jace Richardson Date: Wed, 22 Apr 2020 15:29:15 -0400 Subject: [PATCH 4/4] Updated patch version --- config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yml b/config.yml index f62d5499b..d974cfb1d 100644 --- a/config.yml +++ b/config.yml @@ -6,6 +6,6 @@ outputDir: build themeDir: theme customVariables: - current_version: '5.3.1' + current_version: '5.3.2' current_year: 2020