diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index c3b242cca9..11091ca5c5 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -50,6 +50,7 @@
- Changelog
+ - Changes since 3.3.3
- Changes since 3.3.2
- Changes since 3.3.1
- Changes since 3.3.1-RC1
@@ -154,6 +155,43 @@
+
Changes since 3.3.3
+
Bug
+
+ - [PHPBB3-16655] - Suppress "you now also have to pass the CAPTCHA test" message for invisible CAPTCHAs
+ - [PHPBB3-16685] - SQL error in ACP if database name contains a dash
+ - [PHPBB3-16690] - Changing default argument in htmlspecialchars* functions causes test fail
+ - [PHPBB3-16691] - Illegal string offset 'username' on MCP PM report pages
+ - [PHPBB3-16696] - Unsupported operand types in viewforum.php - PHP8
+ - [PHPBB3-16697] - Unable to login after conversion from phpBB2
+ - [PHPBB3-16698] - Check for default char set in includes/acp_main.php checks only for 'UTF-8'
+ - [PHPBB3-16705] - File upload fails with PHP 8 - Error parsing server response
+ - [PHPBB3-16706] - Undefined array key when user is banned
+ - [PHPBB3-16707] - Disable unstable PHP 8.1 builds on Github Actions
+ - [PHPBB3-16719] - PHP notice/warning on installation
+
+
Improvement
+
+ - [PHPBB3-15392] - Change dirname(__FILE__) to __DIR__ everywhere
+ - [PHPBB3-16589] - Change wording of e-mail templates to decrease word count
+ - [PHPBB3-16620] - Output short array syntax in dev:migration-tips
+ - [PHPBB3-16660] - Remove or Rename "Reset" Button in "Reset Password" Dialogue
+ - [PHPBB3-16681] - Replace action icons with font icons
+ - [PHPBB3-16684] - GitHub Actions should run on newly created tag and release branches
+ - [PHPBB3-16686] - Simplify get_database_size() SQL query for PostgreSQL
+ - [PHPBB3-16689] - Bitly oauth SQL error if identifier is null
+ - [PHPBB3-16709] - Update s9e/text-formatter to latest release
+ - [PHPBB3-16710] - Allow WEBP images in attachments
+ - [PHPBB3-16712] - Implement thumbnails for WEBP images in attachments
+ - [PHPBB3-16724] - Add some template events
+ - [PHPBB3-16725] - Add MCP core event
+ - [PHPBB3-16728] - Add search result template event
+
+
Task
+
+ - [PHPBB3-16726] - Update composer packages to latest versions
+
+
Changes since 3.3.2
Bug
diff --git a/phpBB/phpbb/db/migration/data/v33x/v334rc1.php b/phpBB/phpbb/db/migration/data/v33x/v334rc1.php
new file mode 100644
index 0000000000..d4bc92cacf
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v33x/v334rc1.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 v334rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return version_compare($this->config['version'], '3.3.4-RC1', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return [
+ '\phpbb\db\migration\data\v33x\v333',
+ ];
+ }
+
+ public function update_data()
+ {
+ return [
+ ['config.update', ['version', '3.3.4-RC1']],
+ ];
+ }
+}