diff --git a/build/build.xml b/build/build.xml index 5630a679b5..a4dcf45e80 100644 --- a/build/build.xml +++ b/build/build.xml @@ -4,7 +4,7 @@ - + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 1d89d0ace6..872368d200 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -55,6 +55,7 @@
  • Changes since 3.3.0-b2
  • Changes since 3.3.0-b1
  • Changes since 3.2.x
  • +
  • Changes since 3.2.10-RC2
  • Changes since 3.2.10-RC1
  • Changes since 3.2.9
  • Changes since 3.2.9-RC1
  • @@ -512,6 +513,28 @@
  • [PHPBB3-16185] - Use Xenial build environment on travis-ci
  • +

    Changes since 3.2.10-RC2

    +

    Bug

    +
      +
    • [PHPBB3-16417] - SQL fatal error while updating database from older versions via CLI
    • +
    • [PHPBB3-16524] - General error (SQL ERROR) on adding emoji character to the profile field
    • +
    • [PHPBB3-16534] - Passwords converted from phpBB2 can have invalid hash
    • +
    • [PHPBB3-16539] - General error (SQL error) on posting page in smilies mode
    • +
    • [PHPBB3-16550] - compact(): Undefined variable: url - in PMs
    • +
    +

    Improvement

    +
      +
    • [PHPBB3-16554] - Align all .htaccess files to support Apache 2.4 mod_authz_core directives
    • +
    +

    Security Issue

    +
      +
    • [SECURITY-259] - Server-Side Request Forgery via FastImageSize in s9e textformatter
    • +
    +

    Hardening

    +
      +
    • [SECURITY-257] - Potential RCE via Phar Deserialization through Legacy BBCode Parser
    • +
    +

    Changes since 3.2.10-RC1

    Bug

      diff --git a/phpBB/phpbb/db/migration/data/v32x/v3210.php b/phpBB/phpbb/db/migration/data/v32x/v3210.php new file mode 100644 index 0000000000..2817158639 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v3210.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\v32x; + +class v3210 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.10', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v3210rc2', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.10')), + ); + } +}