diff --git a/build/build.xml b/build/build.xml index cc3a8f8a22..db3803c32b 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 ab65c70d1f..69847603dc 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.3.9
    • Changes since 3.3.9-RC1
    • Changes since 3.3.8
    • Changes since 3.3.7
    • @@ -164,6 +165,34 @@
      +

      Changes since 3.3.9

      +

      Bug

      +
        +
      • [PHPBB3-16938] - Unexistent css property in inline style
      • +
      • [PHPBB3-17039] - Group name not colored in manage groups due to typo
      • +
      • [PHPBB3-17056] - PHP 8.2 Deprecation warning about ${var} syntax
      • +
      • [PHPBB3-17065] - Emoji characters in MCP add feedback cause SQL error
      • +
      • [PHPBB3-17074] - Condition to avoid creation of roles with same name is broken
      • +
      • [PHPBB3-17081] - Invalid accept attribute in the post editor
      • +
      • [PHPBB3-17082] - Ability to warn Anonymous
      • +
      +

      Improvement

      +
        +
      • [PHPBB3-13291] - Close notification drop down after clicking "mark all read"
      • +
      • [PHPBB3-16105] - Use "global" reCAPTCHA domain to circumvent blocking in some countries
      • +
      • [PHPBB3-17068] - ALLOW_CDN_EXPLAIN: Incomplete and imprecise description
      • +
      • [PHPBB3-17075] - Add template events to ACP footer after SCRIPTS
      • +
      +

      Task

      +
        +
      • [PHPBB3-17066] - Update GitHub Actions configuration to resolve deprecations
      • +
      • [PHPBB3-17071] - Update the emoji CDN
      • +
      +

      Hardening

      +
        +
      • [SECURITY-275] - Improve handling of exceptions in cron redirect
      • +
      +

      Changes since 3.3.9-RC1

      Bug

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