diff --git a/build/build.xml b/build/build.xml index f3eb2ec969..4586b2e26f 100644 --- a/build/build.xml +++ b/build/build.xml @@ -3,8 +3,8 @@ - - + + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 39d7897d5e..638bdbdf1c 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.3.13
    • Changes since 3.3.13-RC1
    • Changes since 3.3.12
    • Changes since 3.3.12-RC1
    • @@ -171,6 +172,36 @@
      +

      Changes since 3.3.13

      +

      Bug

      +
        +
      • [PHPBB-17181] - If statement to highlight Reported PMS on the view message page doesn't work.
      • +
      • [PHPBB-17383] - HELO/EHLO error while using gethostbyaddr()
      • +
      • [PHPBB-17384] - Passing E_USER_ERROR to trigger_error() is deprecated in PHP 8.4
      • +
      • [PHPBB-17385] - Version check without SSL flag for CDB extensions fails
      • +
      • [PHPBB-17386] - Incorrect trace result while tracing user-based permissions
      • +
      • [PHPBB-17387] - PHP warnings in search results
      • +
      • [PHPBB-17390] - Missing buttons for approval of new messages
      • +
      • [PHPBB-17391] - PHP warnings on attempt to create user group having name already in use
      • +
      • [PHPBB-17398] - Ajax error on deleting cookies
      • +
      • [PHPBB-17405] - Function phpbb_gmgetdate() returns incorrect result for edge cases
      • +
      • [PHPBB-17410] - UCP tabs do not work when testing out another user's permissions
      • +
      +

      Improvement

      +
        +
      • [PHPBB-16852] - Addition of a new PHP event concerning bump topics
      • +
      • [PHPBB-17359] - Distinct disabled and not installed extensions in the list
      • +
      • [PHPBB-17376] - Link reference to quote post is a poor accessibility experience
      • +
      • [PHPBB-17382] - Incorrect grammar on FAQ page regarding searching for members
      • +
      • [PHPBB-17388] - Add php event to bump_topic_allowed function
      • +
      • [PHPBB-17394] - Check mergeability of PR on GitHub Actions
      • +
      • [PHPBB-17396] - Automatically handle merges of 3.3.x into master
      • +
      • [PHPBB-17397] - Add event for forum_data query in viewforum
      • +
      • [PHPBB-17402] - Add possibility to force reparsing BBCode via CLI
      • +
      • [PHPBB-17407] - Limit mergeability check to single comment
      • +
      • [PHPBB-17411] - Add core event to search.php
      • +
      +

      Changes since 3.3.13-RC1

      Bug

        diff --git a/phpBB/phpbb/db/migration/data/v33x/v3314rc1.php b/phpBB/phpbb/db/migration/data/v33x/v3314rc1.php new file mode 100644 index 0000000000..1632a65dda --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v33x/v3314rc1.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 v3314rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return version_compare($this->config['version'], '3.3.14-RC1', '>='); + } + + public static function depends_on() + { + return [ + '\phpbb\db\migration\data\v33x\v3313', + ]; + } + + public function update_data() + { + return [ + ['config.update', ['version', '3.3.14-RC1']], + ]; + } +}