| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
# By Nathan Guse (28) and others
# Via Andreas Fischer (9) and others
* 'develop' of https://github.com/phpbb/phpbb3: (90 commits)
[ticket/11350] Do not pass $db by reference; typehint phpbb_db_driver
[feature/migrations] Remove default values from necessary parameters
[ticket/11201] Revert WLM dropping because it is still used in China.
[ticket/11220] Improvement to the info pop-up from "list="
[feature/migrations] Revert unrelated changes to functions.php
[ticket/11233] prohibit selecting anonymous user as a PM recipient
[ticket/11343] Remove spare parentheses.
[ticket/11343] Remove spare space.
[ticket/11343] Use === when checking stored user_actkey against user input.
[ticket/11295] Correct cases: replace postgres with phpbb_db_driver_postgres.
[ticket/10050] removing prosilver edits
[ticket/9737] Fix some comments
[ticket/11337] Abort setup-webserver.sh script when an error occurs.
[ticket/11337] Only run functional tests on 5.3.19 or higher. No FPM otherwise.
[ticket/11337] Silence nginx config file writing.
[ticket/11337] php-fpm.conf is no longer owned by root.
[ticket/11337] Run functional tests on travis using nginx and php-fpm.
[ticket/11338] Travis CI: Install PHP extension for redis key-value store.
[ticket/10050] adding .topicrow to template condition
[ticket/9737] Fix a few minor things in migrations
...
Conflicts:
phpBB/config/services.yml
phpBB/config/tables.yml
|
| |\
| | |
| | |
| | |
| | | |
* exreaction/ticket/11350:
[ticket/11350] Do not pass $db by reference; typehint phpbb_db_driver
|
| | |
| | |
| | |
| | | |
PHPBB3-11350
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* EXreaction/feature/migrations: (48 commits)
[feature/migrations] Remove default values from necessary parameters
[feature/migrations] Revert unrelated changes to functions.php
[ticket/9737] Fix some comments
[ticket/9737] Fix a few minor things in migrations
[feature/migrations] Make sure migration data not done before running data step
[feature/migrations] Function to populate the migrations table (for install)
[feature/migrations] Function effectively_installed() in migrations
[feature/migrations] Make load_migrations recursive (optionally)
[feature/migrations] Make the test depends_on methods static
[feature/migrations] Make depends_on static to call it without dependencies
[feature/migrations] install/database_update_migrations.php
[feature/migrations] Move test.php -> install/database_update_migrations.php
[feature/migrations] Store depends on in the database (serialized)
[feature/migrations] Revert method completed
[feature/migrations] Basic reverting test
[feature/migrations] Test for calling a step multiple times
[feature/migrations] Creating revert method to attempt reverting a migration
[feature/migrations] Some comments in db_tools
[feature/migrations] Reverse data functionality
[feature/migrations] Comment
...
Conflicts:
phpBB/install/schemas/firebird_schema.sql
phpBB/install/schemas/mssql_schema.sql
phpBB/install/schemas/mysql_40_schema.sql
phpBB/install/schemas/mysql_41_schema.sql
phpBB/install/schemas/oracle_schema.sql
phpBB/install/schemas/postgres_schema.sql
phpBB/install/schemas/sqlite_schema.sql
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Clean up some comments
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Allows you to check if the migration is effectively installed
(entirely optionall)
This function is intended to help moving to migrations from a
previous database updater, where some migrations may have been
installed already even though they are not yet listed in the
migrations table.
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-11318
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-11318
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Actually, this does not belong in the main PR, moving to the data PR.
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This should be used as a basis for the database updater using migrations.
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is required so that when migrations are reverted we can check through
all installed migrations and make sure that all dependencies are handled
properly and so that we are only required to load the migrations files
that could be dependent on the ones installed.
I believe in normal proper use the old way might have worked, but in case
something happens and an unrelated migration file is installed, but cannot
be loaded, this makes sure we do not stop everything unless we absolutely
must (one of those files is dependent on something we want to revert).
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is used when a long-running process is needed during an update. For
example, iterating over all posts and applying some transformation. This
allows the process to be broken apart into multiple shorter steps to prevent
hitting the time limit.
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This code is in progress
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
If data step fails, attempt to roll back any previous calls from the
migration that failed.
Fix some failing tests
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Prevent a lot++ of errors
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fix return on module add
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Lots of comments and some other miscellaneous fixes.
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This should be removed by the data branch
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Version numbers
3.1 updates
Restore database_update.php file to what it was in develop
Get first forum to place global announcements in
PHPBB3-9737
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-9737
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Returning the set of schema changes allows potentially aggregating to generate
the overall install schema automatically from a set of migrations
PHPBB3-9737
|