diff --git a/build/build.xml b/build/build.xml index 479ffb9647..2358b0e2e2 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 af9e47d5e7..c22bdb49bf 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.3.4
    • Changes since 3.3.4-RC1
    • Changes since 3.3.3
    • Changes since 3.3.2
    • @@ -156,6 +157,72 @@
      +

      Changes since 3.3.4

      +

      Bug

      +
        +
      • [PHPBB3-12075] - Language file Modules needs to be added to acp_extensions
      • +
      • [PHPBB3-13700] - Column 'field_show_on_pm' not created before migration profilefield_interests
      • +
      • [PHPBB3-16292] - Database errors during conversion not propagated
      • +
      • [PHPBB3-16570] - Automatic updater no longer handles merge conflicts
      • +
      • [PHPBB3-16657] - Encoded characters inserted from live search for usernames
      • +
      • [PHPBB3-16729] - Unknown named parameter $log_data in phpbb/log/log.php
      • +
      • [PHPBB3-16730] - Build changelog throwing PHP warnings on no changes in version
      • +
      • [PHPBB3-16749] - SQL error on installation
      • +
      • [PHPBB3-16757] - RTL problem in random question text in ACP
      • +
      • [PHPBB3-16765] - contact_admin_acp_module migration lacks effectively_installed check
      • +
      • [PHPBB3-16766] - Updater only shows truncated error messages
      • +
      • [PHPBB3-16767] - Migrator shows wrong migration as missing if unfulfillable
      • +
      • [PHPBB3-16770] - Invalid position of static qualifier in 3.3.4 migration
      • +
      • [PHPBB3-16772] - Emoji not supported in email signature
      • +
      • [PHPBB3-16773] - PostgreSQL backups are missing constraint declarations
      • +
      • [PHPBB3-16784] - Ignore .vscode files in git
      • +
      • [PHPBB3-16785] - Latest release missing from previous versions in build.xml
      • +
      • [PHPBB3-16787] - Error message when "fsockopen" is deactivated
      • +
      • [PHPBB3-16789] - user_delete documentation incorrect
      • +
      • [PHPBB3-16793] - PHP Warning when checking topic/post attachment visibility in PHP 8
      • +
      • [PHPBB3-16799] - OAuth external account linking triggers fatal error on PHP 8
      • +
      • [PHPBB3-16808] - Container used before initialization causes error in PHP8
      • +
      • [PHPBB3-16810] - The no closing tag in Custom BBCodes is still shown onclick
      • +
      • [PHPBB3-16812] - login_body.html missing dt tag for autologin
      • +
      • [PHPBB3-16823] - Datetime class incorrectly handles edge yesterday/today/tomorrow cases
      • +
      • [PHPBB3-16832] - Wrong singular language shown in UCP attachments
      • +
      • [PHPBB3-16865] - Update IRC + discord links in composer and documentation and update docs
      • +
      • [PHPBB3-16870] - Setting float config value can fail with CLI db:migrate
      • +
      +

      Improvement

      +
        +
      • [PHPBB3-15729] - Don't unnecessarily encode email headers in Base64
      • +
      • [PHPBB3-15925] - Add core events for sync and mcp functions
      • +
      • [PHPBB3-16138] - Eliminate redundant f= and t= parameters from board urls
      • +
      • [PHPBB3-16736] - Enforce placement of visibility qualifiers after static
      • +
      • [PHPBB3-16748] - Update coding guidelines to place static after visibility qualifiers
      • +
      • [PHPBB3-16752] - Create event exporter to restructured text
      • +
      • [PHPBB3-16754] - Update doctum
      • +
      • [PHPBB3-16771] - Add core events to MCP
      • +
      • [PHPBB3-16783] - Remove structure only backup
      • +
      • [PHPBB3-16788] - Update s9e/text-formatter to latest
      • +
      • [PHPBB3-16795] - Add template events around signature in viewtopic
      • +
      • [PHPBB3-16798] - Scale down phpBB logo in readme
      • +
      • [PHPBB3-16804] - Extend bbcode help line tooltip
      • +
      • [PHPBB3-16809] - Reset UCP preferences at end of test
      • +
      • [PHPBB3-16816] - acp style html validation fixes
      • +
      • [PHPBB3-16822] - Replace patchwork/utf8 with symfony/polyfill
      • +
      • [PHPBB3-16829] - Add forumtitle and lastsubject text decoration hover
      • +
      • [PHPBB3-16831] - fix tabs missing delimiters and remove old commented classes
      • +
      • [PHPBB3-16850] - Update webfont.js to latest
      • +
      • [PHPBB3-16851] - Add Amazonbot, AhrefsBot and SemrushBot
      • +
      • [PHPBB3-16858] - Update to the latest version of jQuery 3.6.0
      • +
      • [PHPBB3-16867] - Update symfony and text-formatter to latest versions
      • +
      +

      New Feature

      +
        +
      • [PHPBB3-16856] - Add lang_js() function to twig as replacement for LA_
      • +
      +

      Task

      + +

      Changes since 3.3.4-RC1

      Bug

        diff --git a/phpBB/phpbb/db/migration/data/v33x/v335rc1.php b/phpBB/phpbb/db/migration/data/v33x/v335rc1.php new file mode 100644 index 0000000000..803b6fe9ec --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v33x/v335rc1.php @@ -0,0 +1,38 @@ + + * @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 v335rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return version_compare($this->config['version'], '3.3.5-RC1', '>='); + } + + public static function depends_on() + { + return [ + '\phpbb\db\migration\data\v33x\extend_bbcode_tooltip', + '\phpbb\db\migration\data\v33x\bot_update_v2', + '\phpbb\db\migration\data\v33x\jquery_update_v2', + ]; + } + + public function update_data() + { + return [ + ['config.update', ['version', '3.3.5-RC1']], + ]; + } +}