diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 8eb9639db3..557fca202f 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -53,6 +53,7 @@
Changes since 3.3.0-b2
Changes since 3.3.0-b1
Changes since 3.2.x
+ Changes since 3.2.8
Changes since 3.2.8-RC1
Changes since 3.2.7
Changes since 3.2.6
@@ -305,6 +306,61 @@
[PHPBB3-16185] - Use Xenial build environment on travis-ci
+ Changes since 3.2.8
+ Bug
+
+ - [PHPBB3-14815] - The facebook page link is not displayed properly in memberlist.php
+ - [PHPBB3-15643] - $phpbb_filesystem->resolve_path() may trigger open_basedir restriction
+ - [PHPBB3-15902] - Out of range error with Sphinx search
+ - [PHPBB3-16056] - JPEG dimensions undetectable for some kind of jpeg files
+ - [PHPBB3-16076] - Limit attachment size by extension group
+ - [PHPBB3-16141] - plupload chunk_size calculation incorrect when one or more settings are 'unlimited'
+ - [PHPBB3-16150] - Post title link urls not reliable when shared
+ - [PHPBB3-16156] - Bots see both register and logout links in the navbar
+ - [PHPBB3-16157] - Incorrect FORM_INVALID error message while sending email form
+ - [PHPBB3-16181] - OAuth provider id needs to be quoted
+ - [PHPBB3-16184] - Mark read button only works once
+ - [PHPBB3-16199] - Guest posting CAPTCHA is being generated with no guest posting auth
+ - [PHPBB3-16209] - Nginx example configuration file blocks an image in the ACP
+ - [PHPBB3-16210] - Terms of use should not be skippable
+ - [PHPBB3-16211] - COPPA should not be skippable
+ - [PHPBB3-16216] - Disable xdebug in travis builds
+ - [PHPBB3-16217] - Enable opcache in travis CI builds
+ - [PHPBB3-16228] - BBCode definitions with an optional attribute and a non-TEXT content are not merged correctly
+ - [PHPBB3-16242] - Redirect loop when install folder doesn't exist
+ - [PHPBB3-16252] - Ignore non-BBCodes when looking for unauthorized markup
+ - [PHPBB3-16257] - Typo in Email Settings section
+ - [PHPBB3-16258] - Sample Sphinx configuration file causes delta index to only include the most recent post
+
+ Improvement
+
+ - [PHPBB3-16084] - Pointless radio button for database backup in 3.2.7
+ - [PHPBB3-16139] - Add core.viewtopic_modify_quick_reply_template_vars
+ - [PHPBB3-16140] - Add new event to UCP Edit Profile Page
+ - [PHPBB3-16143] - Add core events for move topics
+ - [PHPBB3-16144] - NO_STYLE_DATA - Provide extra fallback to board's default style for $user.
+ - [PHPBB3-16146] - Add core event for after move the forum
+ - [PHPBB3-16148] - Add template events to acp_groups.html
+ - [PHPBB3-16151] - Enable Emojis and rich text in forum name
+ - [PHPBB3-16153] - Enable Emojis and rich text in topic title
+ - [PHPBB3-16159] - Wrap post times in html time tag
+ - [PHPBB3-16174] - Event for disabling cookie creation
+ - [PHPBB3-16182] - Add core.generate_smilies_modify_rowset
+ - [PHPBB3-16183] - Add core.generate_smilies_count_sql_before
+ - [PHPBB3-16203] - Enable Emojis and rich text in sent Emails
+ - [PHPBB3-16247] - Quote PM has no identifier
+ - [PHPBB3-16251] - Shortened link text shouldn't override custom plugins
+
+ Task
+
+ - [PHPBB3-15422] - Remove the unnecessary helpline function and help_line variable
+ - [PHPBB3-16147] - Updated tokens legend in BBCodes ACP
+ - [PHPBB3-16160] - Add script for generating package json file
+ - [PHPBB3-16172] - Add "Rank:" or "Group rank:" in the memberlist
+ - [PHPBB3-16224] - Update composer dependencies
+ - [PHPBB3-16246] - Prettify and update README Automated Testing section
+
+
Changes since 3.2.8-RC1
Bug
diff --git a/phpBB/phpbb/db/migration/data/v32x/v329rc1.php b/phpBB/phpbb/db/migration/data/v32x/v329rc1.php
new file mode 100644
index 0000000000..271bf62859
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v329rc1.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 v329rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.9-RC1', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v328',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.9-RC1')),
+ );
+ }
+}