Skip to content

Release/5.3.2 #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ outputDir: build
themeDir: theme

customVariables:
current_version: '5.3.1'
current_version: '5.3.2'
current_year: 2020

12 changes: 12 additions & 0 deletions docs/installation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@

# ExpressionEngine v5 Change Log

## Version 5.3.2

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.
- 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
Expand Down
13 changes: 1 addition & 12 deletions docs/installation/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand All @@ -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:
Expand Down