diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 05c0b947cb..4758c9c59a 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -50,6 +50,7 @@
- Changelog
+ - Changes since 3.2.4
- Changes since 3.2.4-RC1
- Changes since 3.2.3
- Changes since 3.2.3-RC2
@@ -133,6 +134,28 @@
+
Changes since 3.2.4
+
Bug
+
+ - [PHPBB3-15665] - MSSQL implementation crashes when upload directory > 2GB
+ - [PHPBB3-15858] - Unapproved User(s) appearing as Guest in Team Page.
+ - [PHPBB3-15867] - Contact form without class
+ - [PHPBB3-15871] - PHP 7.1+ warning in ACP extensions module
+ - [PHPBB3-15875] - BBCode parsing error (PHP fatal error)
+ - [PHPBB3-15881] - Login keys are not reset after password update in some cases
+
+
Improvement
+
+ - [PHPBB3-15542] - Some JS files being called without assets version
+ - [PHPBB3-15859] - Modify the topic ordering if needed
+ - [PHPBB3-15863] - Modify the topic sort ordering from the beginning
+ - [PHPBB3-15870] - Modify the forum ID to handle the correct display of viewtopic if needed
+ - [PHPBB3-15872] - Add show_user_activity to display_user_activity_modify_actives
+ - [PHPBB3-15873] - Event to add/modify MCP report details template data.
+ - [PHPBB3-15878] - Add attachment to core.ucp_pm_view_message
+ - [PHPBB3-15879] - Modify attachment's poster_id for get_submitted_attachment_data
+
+
Changes since 3.2.4-RC1
Bug
diff --git a/phpBB/phpbb/db/migration/data/v32x/v325rc1.php b/phpBB/phpbb/db/migration/data/v32x/v325rc1.php
new file mode 100644
index 0000000000..2d0de0a432
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v325rc1.php
@@ -0,0 +1,36 @@
+
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+namespace phpbb\db\migration\data\v32x;
+
+class v325rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.5-RC1', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v324',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.5-RC1')),
+ );
+ }
+}