diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 4674867ecd..06cd3c9316 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -50,6 +50,7 @@
- Changelog
+ - Changes since 3.3.14
- Changes since 3.3.14-RC1
- Changes since 3.3.13
- Changes since 3.3.13-RC1
@@ -173,6 +174,32 @@
+
Changes since 3.3.14
+
Bug
+
+ - [PHPBB-17227] - Member list sorting bug - repeating users on several pages
+ - [PHPBB-17381] - 'topic_views' column overflow blocks access to the topic
+ - [PHPBB-17417] - Day selection not visible when no results
+ - [PHPBB-17422] - Ascending posts pagination
+ - [PHPBB-17436] - PHP fatal error while converting from phpBB 2.0 with Attachment MOD
+ - [PHPBB-17455] - PHP warning on MySQLi connection failure
+ - [PHPBB-17463] - Extra & in unread posts search pagination
+ - [PHPBB-17468] - Reset password feature is not restricted to email
+ - [PHPBB-17470] - Enable feeds setting not enforced
+
+
Improvement
+
+ - [PHPBB-17429] - Adding event before users have been added to a group
+ - [PHPBB-17431] - Add more vars to memberlist event
+ - [PHPBB-17433] - Unclear instructions in ACP, Server settings
+ - [PHPBB-17443] - Various Guzzle client issues for version checks
+ - [PHPBB-17446] - Add acp_account_activation_edit_add event
+ - [PHPBB-17461] - Add php events for ACP main actions
+ - [PHPBB-17467] - Add TLS v.1.3 support to email messenger connection
+ - [PHPBB-17471] - Forum feed link in forumlist_body does not return the correct URL
+ - [PHPBB-17478] - Add security policy to repository
+
+
Changes since 3.3.14-RC1
Improvement
diff --git a/phpBB/phpbb/db/migration/data/v33x/v3315rc1.php b/phpBB/phpbb/db/migration/data/v33x/v3315rc1.php
new file mode 100644
index 0000000000..71ab26c908
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v33x/v3315rc1.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\v33x;
+
+class v3315rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return version_compare($this->config['version'], '3.3.15-RC1', '>=');
+ }
+
+ public static function depends_on()
+ {
+ return [
+ '\phpbb\db\migration\data\v33x\topic_views_update',
+ ];
+ }
+
+ public function update_data()
+ {
+ return [
+ ['config.update', ['version', '3.3.15-RC1']],
+ ];
+ }
+}