diff --git a/build/build.xml b/build/build.xml index 07f3b2a350..511aef8a83 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 09a3b8dff5..37710b30a6 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -50,6 +50,7 @@
  1. Changelog
      +
    • Changes since 3.2.5
    • Changes since 3.2.5-RC1
    • Changes since 3.2.4
    • Changes since 3.2.4-RC1
    • @@ -135,6 +136,70 @@
      +

      Changes since 3.2.5

      +

      Bug

      +
        +
      • [PHPBB3-15509] - Update database: info message is to scary
      • +
      • [PHPBB3-15869] - Cookies Problem with domains with special chars
      • +
      • [PHPBB3-15876] - Mysql 5.7 support Q&A plugin
      • +
      • [PHPBB3-15883] - No error for invalid usernames on bulk add to usergroup
      • +
      • [PHPBB3-15904] - PHP warning when accessing modules in ACP System tab
      • +
      • [PHPBB3-15917] - Unapproved posts count towards forum post count
      • +
      • [PHPBB3-15918] - Ban reason messages show backslash (\) before apostrophe -- ex. (don\'t).
      • +
      • [PHPBB3-15919] - Lint test throws PHP warnings due to node modules folder
      • +
      • [PHPBB3-15931] - Issues in PM report emails
      • +
      • [PHPBB3-15954] - Some calls to include() don't have a safeguard
      • +
      • [PHPBB3-15957] - User preferences show notification method "both" with disabled Jabber in ACP
      • +
      • [PHPBB3-15959] - Travis Network Test is Failing for news.cnet.com
      • +
      • [PHPBB3-15965] - Console command to handle thumbnails have files directory hardcoded
      • +
      • [PHPBB3-15975] - Delete or prune an user doesn't remove its entries in the user_notifications table
      • +
      • [PHPBB3-15986] - Add missing language key for posting.php
      • +
      • [PHPBB3-15996] - Invalid data provider function name in migrator_tool_permission_test
      • +
      • [PHPBB3-16006] - Duplicate form IDs in UCP oauth form
      • +
      +

      Improvement

      +
        +
      • [PHPBB3-15884] - Add memberlist_body_* events
      • +
      • [PHPBB3-15889] - Add core.memberlist_modify_memberrow_sql
      • +
      • [PHPBB3-15890] - Add core.memberlist_modify_viewprofile_sql
      • +
      • [PHPBB3-15891] - Add core.memberlist_modify_view_profile_template_vars
      • +
      • [PHPBB3-15898] - Add core.ucp_pm_compose_template
      • +
      • [PHPBB3-15899] - Add core.modify_attachment_sql_ary_on_* events
      • +
      • [PHPBB3-15901] - Add mcp_post_* template events
      • +
      • [PHPBB3-15910] - Pass object arguments by reference implicitly
      • +
      • [PHPBB3-15914] - Add core.modify_memberlist_viewprofile_group_sql and core.modify_memberlist_viewprofile_group_data
      • +
      • [PHPBB3-15915] - Add template events to posting_attach_body.html
      • +
      • [PHPBB3-15924] - Move from precise to trusty builds
      • +
      • [PHPBB3-15926] - Deny installs on PHP >= 7.3@dev - Increase min. req. to 5.4.7
      • +
      • [PHPBB3-15928] - Remove support for backup download
      • +
      • [PHPBB3-15939] - Pagination docblocks
      • +
      • [PHPBB3-15941] - Replace MAX SQL in functions_posting.php
      • +
      • [PHPBB3-15942] - Array to string conversion when permanently deleting a post
      • +
      • [PHPBB3-15948] - Add core.mcp_change_topic_type_after/before
      • +
      • [PHPBB3-15949] - [Template] - ucp_profile_signature_posting_editor_options_prepend
      • +
      • [PHPBB3-15950] - Add SQL transactions to mcp_main.php
      • +
      • [PHPBB3-15960] - Add SQL transactions to functions_admin.php
      • +
      • [PHPBB3-15970] - Add core.message_admin_form_submit_before
      • +
      • [PHPBB3-15972] - Add core.markread_after
      • +
      • [PHPBB3-15992] - Fix breadcrumb schema
      • +
      • [PHPBB3-15995] - Add core.memberlist_modify_sort_pagination_params
      • +
      • [PHPBB3-15997] - Increase webdriver timeout for UI tests
      • +
      • [PHPBB3-16001] - Append data to the OAuth's redirect URL
      • +
      • [PHPBB3-16009] - Display OAuth login's buttons in a row.
      • +
      • [PHPBB3-16010] - Automatically check order of events in events.md file
      • +
      • [PHPBB3-16018] - Update composer and dependencies for 3.2.6
      • +
      • [PHPBB3-16020] - Fix placement of event viewforum_body_topic_author_username_append
      • +
      +

      New Feature

      +
        +
      • [PHPBB3-15944] - Add core.posting_modify_quote_attributes
      • +
      +

      Task

      + +

      Changes since 3.2.5-RC1

      Bug

        diff --git a/phpBB/phpbb/db/migration/data/v32x/v326rc1.php b/phpBB/phpbb/db/migration/data/v32x/v326rc1.php new file mode 100644 index 0000000000..092700d3db --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v326rc1.php @@ -0,0 +1,37 @@ + +* @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 v326rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.6-RC1', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v325', + ); + + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.6-RC1')), + ); + } +}