diff --git a/build/build.xml b/build/build.xml index 17a04d1072..b799af1a99 100644 --- a/build/build.xml +++ b/build/build.xml @@ -3,7 +3,7 @@ - + diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index a7b47ab0f0..acf5a318be 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -46,6 +46,7 @@
  1. Changelog
      +
    • Changes since 3.1.3-RC1
    • Changes since 3.1.2
    • Changes since 3.1.1
    • Changes since 3.1.0
    • @@ -105,6 +106,20 @@
      +

      Changes since 3.1.3-RC1

      + +

      Bug

      +
        +
      • [PHPBB3-12933] - The search operator for partial matches does not work
      • +
      • [PHPBB3-13544] - Migrations' "permission.permission_unset" deletes all permissions instead of just the one stated
      • +
      • [PHPBB3-13556] - Translated exceptions from file_downloader are handled incorrectly
      • +
      • [PHPBB3-13557] - Migrations for 3.0.13 and PL1 are missing
      • +
      +

      Task

      +
        +
      • [PHPBB3-13553] - Controller helper needs a message handler to replace error handler
      • +
      +

      Changes since 3.1.2

      Security

      diff --git a/phpBB/phpbb/db/migration/data/v31x/v313rc2.php b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php new file mode 100644 index 0000000000..d832d6f502 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php @@ -0,0 +1,32 @@ + +* @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\v31x; + +class v313rc2 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v30x\release_3_0_13_pl1', + '\phpbb\db\migration\data\v31x\v313rc1', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.3-RC2')), + ); + } +}