Patch |
File delta |
Description |
debian.patch | (download) |
libraries/vendor_config.php |
12 6 + 6 - 0 !
1 file changed, 6 insertions(+), 6 deletions(-) |
adjust phpmyadmin vendor configuration to match debian needs -
configuration is in /etc/phpmyadmin - documentation is in /usr/share/doc -
config file consists of several included files,
so we skip mtime check - tempdir is in /var/lib/phpmyadmin/tmp
|
Fix ImportOdsTest mbstring.patch | (download) |
test/classes/Plugins/Import/ImportOdsTest.php |
18 15 + 3 - 0 !
1 file changed, 15 insertions(+), 3 deletions(-) |
adjust to mb_string length test data
Seems like something (probably the polyfill) is making the mbstring length vary
|
Fix FileListingTest and ErrorTest_testSetFile tests.patch | (download) |
test/classes/ErrorTest.php |
5 2 + 3 - 0 !
1 file changed, 2 insertions(+), 3 deletions(-) |
fix filelistingtest and errortest::testsetfile depending on the
filesystem path
|
Fix openlayers node_modules dir.patch | (download) |
js/config/ol/webpack.config.js |
3 3 + 0 - 0 !
1 file changed, 3 insertions(+) |
change node_modules dir for openlayers config
|
Update documentation for 2FA packages.patch | (download) |
doc/two_factor.rst |
4 2 + 2 - 0 !
libraries/classes/TwoFactor.php |
6 3 + 3 - 0 !
templates/preferences/two_factor/main.twig |
2 1 + 1 - 0 !
3 files changed, 6 insertions(+), 6 deletions(-) |
update documentation to add missing packages for 2fa
|
update settings test with debian values.patch | (download) |
test/classes/Config/SettingsTest.php |
4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-) |
update tests with default values for debian
|
Drop depends on paragonie sodium_compat since PHP 7.2 is required.patch | (download) |
composer.json |
1 0 + 1 - 0 !
1 file changed, 1 deletion(-) |
drop depends on paragonie/sodium_compat since php 7.2 is the minimum
|
Skip part of RoutingTest testGetDispatcher.patch | (download) |
test/classes/RoutingTest.php |
6 6 + 0 - 0 !
1 file changed, 6 insertions(+) |
skip part of routingtest as it writes the tree
|
Allow symfony 6.patch | (download) |
composer.json |
6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-) |
allow symfony 6
|
Remove withConsecutive for phpunit 10.patch | (download) |
test/classes/AbstractNetworkTestCase.php |
1 0 + 1 - 0 !
test/classes/AbstractTestCase.php |
8 8 + 0 - 0 !
test/classes/Command/TwigLintCommandTest.php |
4 0 + 4 - 0 !
test/classes/Command/WriteGitRevisionCommandTest.php |
6 0 + 6 - 0 !
test/classes/ConfigStorage/RelationCleanupTest.php |
98 4 + 94 - 0 !
test/classes/ConfigStorage/UserGroupsTest.php |
3 1 + 2 - 0 !
test/classes/Plugins/Export/ExportSqlTest.php |
10 0 + 10 - 0 !
test/classes/Server/Privileges/AccountLockingTest.php |
4 0 + 4 - 0 !
test/classes/Server/PrivilegesTest.php |
4 0 + 4 - 0 !
test/classes/TrackerTest.php |
5 0 + 5 - 0 !
test/classes/UtilTest.php |
54 0 + 54 - 0 !
test/classes/VersionInformationTest.php |
22 0 + 22 - 0 !
12 files changed, 13 insertions(+), 206 deletions(-) |
remove withconsecutive for phpunit 10
|
Fix tests for phpunit 10.patch | (download) |
test/classes/ConfigTest.php |
13 11 + 2 - 0 !
test/classes/ErrorTest.php |
9 9 + 0 - 0 !
test/classes/Navigation/NodeFactoryTest.php |
25 21 + 4 - 0 !
test/classes/Plugins/Export/ExportOdsTest.php |
13 10 + 3 - 0 !
test/classes/Plugins/Export/ExportOdtTest.php |
13 10 + 3 - 0 !
5 files changed, 61 insertions(+), 12 deletions(-) |
fix tests for phpunit 10
Ref: https://github.com/sebastianbergmann/phpunit/issues/5062#issuecomment-1446620312
|
Fix import path for bootstrap.patch | (download) |
themes/bootstrap/scss/_bootstrap.scss |
76 38 + 38 - 0 !
1 file changed, 38 insertions(+), 38 deletions(-) |
fix import path for bootstrap
|
Require PHP 8.0.patch | (download) |
composer.json |
1 0 + 1 - 0 !
index.php |
9 7 + 2 - 0 !
js/messages.php |
9 7 + 2 - 0 !
setup/lib/common.inc.php |
9 7 + 2 - 0 !
url.php |
9 7 + 2 - 0 !
5 files changed, 28 insertions(+), 9 deletions(-) |
require php >= 8.0
Due to the delta carried in the Ubuntu PSR stack, phpmyadmin does not run with
PHP versions < 8. This patch makes it fail gracefully instead of allowing
phpmyadmin to abruptly crash, allowing us to provide useful error messages so
users understand what their next steps should be towards getting a functional
phpmyadmin deployment.
Bug: https://github.com/phpmyadmin/phpmyadmin/issues/17503
Bug: https://github.com/phpmyadmin/phpmyadmin/issues/19092
Bug-Ubuntu: https://bugs.launchpad.net/bugs/2016016
|
Require PHP 8.2.patch | (download) |
index.php |
6 3 + 3 - 0 !
js/messages.php |
6 3 + 3 - 0 !
setup/lib/common.inc.php |
6 3 + 3 - 0 !
url.php |
6 3 + 3 - 0 !
4 files changed, 12 insertions(+), 12 deletions(-) |
require php >= 8.2
Due to packaging complexities, PHP 8.2 is required.
Bug: https://github.com/phpmyadmin/phpmyadmin/issues/19092
|
Remove suggest of not existing webauthn lib.patch | (download) |
composer.json |
3 1 + 2 - 0 !
1 file changed, 1 insertion(+), 2 deletions(-) |
remove suggest of not existing webauthn lib
|
Patch phpunit deprecations for annotations.patch | (download) |
test/classes/AdvisorTest.php |
3 3 + 0 - 0 !
test/classes/BookmarkTest.php |
1 1 + 0 - 0 !
test/classes/BrowseForeignersTest.php |
1 1 + 0 - 0 !
test/classes/CacheTest.php |
7 7 + 0 - 0 !
test/classes/Charsets/CharsetTest.php |
1 1 + 0 - 0 !
test/classes/Charsets/CollationTest.php |
2 2 + 0 - 0 !
test/classes/CharsetsTest.php |
1 1 + 0 - 0 !
test/classes/CheckUserPrivilegesTest.php |
1 1 + 0 - 0 !
test/classes/Command/SetVersionCommandTest.php |
3 3 + 0 - 0 !
test/classes/Command/TwigLintCommandTest.php |
2 2 + 0 - 0 !
test/classes/Command/WriteGitRevisionCommandTest.php |
2 2 + 0 - 0 !
test/classes/CommonTest.php |
2 2 + 0 - 0 !
test/classes/Config/ConfigFileTest.php |
2 2 + 0 - 0 !
test/classes/Config/DescriptionTest.php |
2 2 + 0 - 0 !
test/classes/Config/FormDisplayTemplateTest.php |
1 1 + 0 - 0 !
test/classes/Config/FormDisplayTest.php |
3 3 + 0 - 0 !
test/classes/Config/FormTest.php |
2 2 + 0 - 0 !
test/classes/Config/Forms/FormListTest.php |
5 5 + 0 - 0 !
test/classes/Config/PageSettingsTest.php |
1 1 + 0 - 0 !
test/classes/Config/ServerConfigChecksTest.php |
1 1 + 0 - 0 !
test/classes/Config/Settings/ConsoleTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/DebugTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/ExportTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/ImportTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/SchemaTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/ServerTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/SqlQueryBoxTest.php |
2 2 + 0 - 0 !
test/classes/Config/Settings/TransformationsTest.php |
2 2 + 0 - 0 !
test/classes/Config/SettingsTest.php |
10 10 + 0 - 0 !
test/classes/ConfigStorage/RelationCleanupTest.php |
5 5 + 0 - 0 !
test/classes/ConfigStorage/RelationParametersTest.php |
20 20 + 0 - 0 !
test/classes/ConfigStorage/RelationTest.php |
3 3 + 0 - 0 !
test/classes/ConfigStorage/UserGroupsTest.php |
3 3 + 0 - 0 !
test/classes/ConfigTest.php |
18 18 + 0 - 0 !
test/classes/ConsoleTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/CheckRelationsControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/EventsControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/Database/MultiTableQuery/TablesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/PrivilegesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/RoutinesControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/Database/Structure/FavoriteTableControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/Structure/RealRowCountControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/StructureControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Database/TriggersControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/Export/ExportControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Export/Template/CreateControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Export/Template/DeleteControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Export/Template/LoadControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Export/Template/UpdateControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/GisDataEditorControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/Import/ImportControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Import/SimulateDmlControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/JavaScriptMessagesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/NavigationControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/NormalizationControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/BinlogControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/CollationsControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Databases/CreateControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Databases/DestroyControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/DatabasesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/EnginesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/PluginsControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Privileges/AccountLockControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Privileges/AccountUnlockControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/PrivilegesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/ShowEngineControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/AdvisorControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/Monitor/GeneralLogControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/Monitor/LogVarsControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/Monitor/QueryAnalyzerControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/Monitor/SlowLogControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/MonitorControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/Processes/RefreshControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/ProcessesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/QueriesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/StatusControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/Status/VariablesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Server/VariablesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Sql/EnumValuesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Sql/SetValuesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/FindReplaceControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/IndexRenameControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/IndexesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/OperationsControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/PrivilegesControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/RelationControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/ReplaceControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/SearchControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/Structure/ChangeControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Table/Structure/MoveColumnsControllerTest.php |
2 2 + 0 - 0 !
test/classes/Controllers/Table/Structure/SaveControllerTest.php |
1 1 + 0 - 0 !
test/classes/Controllers/Transformation/OverviewControllerTest.php |
1 1 + 0 - 0 !
test/classes/CoreTest.php |
15 15 + 0 - 0 !
test/classes/CreateAddFieldTest.php |
5 5 + 0 - 0 !
test/classes/Crypto/CryptoTest.php |
1 1 + 0 - 0 !
test/classes/Database/CentralColumnsTest.php |
1 1 + 0 - 0 !
test/classes/Database/Designer/CommonTest.php |
1 1 + 0 - 0 !
test/classes/Database/DesignerTest.php |
1 1 + 0 - 0 !
test/classes/Database/EventsTest.php |
6 6 + 0 - 0 !
test/classes/Database/QbeTest.php |
1 1 + 0 - 0 !
test/classes/Database/RoutinesTest.php |
17 17 + 0 - 0 !
test/classes/Database/SearchTest.php |
2 2 + 0 - 0 !
test/classes/Database/TriggersTest.php |
8 8 + 0 - 0 !
test/classes/DatabaseInterfaceTest.php |
8 8 + 0 - 0 !
test/classes/Dbal/DatabaseNameTest.php |
2 2 + 0 - 0 !
test/classes/Dbal/DbiDummyTest.php |
3 3 + 0 - 0 !
test/classes/Dbal/DbiMysqliTest.php |
1 1 + 0 - 0 !
test/classes/Dbal/MysqliResultTest.php |
1 1 + 0 - 0 !
test/classes/Dbal/TableNameTest.php |
2 2 + 0 - 0 !
test/classes/Dbal/WarningTest.php |
2 2 + 0 - 0 !
test/classes/Display/ResultsTest.php |
11 11 + 0 - 0 !
test/classes/EncodingTest.php |
5 5 + 0 - 0 !
test/classes/Engines/BdbTest.php |
1 1 + 0 - 0 !
test/classes/Engines/BinlogTest.php |
1 1 + 0 - 0 !
test/classes/Engines/InnodbTest.php |
1 1 + 0 - 0 !
test/classes/Engines/MemoryTest.php |
1 1 + 0 - 0 !
test/classes/Engines/MrgMyisamTest.php |
1 1 + 0 - 0 !
test/classes/Engines/MyisamTest.php |
1 1 + 0 - 0 !
test/classes/Engines/NdbclusterTest.php |
1 1 + 0 - 0 !
test/classes/Engines/PbxtTest.php |
2 2 + 0 - 0 !
test/classes/Engines/PerformanceSchemaTest.php |
1 1 + 0 - 0 !
test/classes/EnvironmentTest.php |
1 1 + 0 - 0 !
test/classes/ErrorHandlerTest.php |
7 7 + 0 - 0 !
test/classes/ErrorReportTest.php |
2 2 + 0 - 0 !
test/classes/ErrorTest.php |
5 5 + 0 - 0 !
test/classes/Export/OptionsTest.php |
1 1 + 0 - 0 !
test/classes/ExportTest.php |
2 2 + 0 - 0 !
test/classes/FieldMetadataTest.php |
1 1 + 0 - 0 !
test/classes/FileListingTest.php |
4 3 + 1 - 0 !
test/classes/FileTest.php |
8 7 + 1 - 0 !
test/classes/FlashMessagesTest.php |
1 1 + 0 - 0 !
test/classes/FontTest.php |
1 1 + 0 - 0 !
test/classes/FooterTest.php |
3 3 + 0 - 0 !
test/classes/Gis/GisFactoryTest.php |
2 2 + 0 - 0 !
test/classes/Gis/GisGeomTestCase.php |
2 2 + 0 - 0 !
test/classes/Gis/GisGeometryCollectionTest.php |
8 8 + 0 - 0 !
test/classes/Gis/GisGeometryTest.php |
6 6 + 0 - 0 !
test/classes/Gis/GisLineStringTest.php |
5 5 + 0 - 0 !
test/classes/Gis/GisMultiLineStringTest.php |
5 5 + 0 - 0 !
test/classes/Gis/GisMultiPointTest.php |
5 5 + 0 - 0 !
test/classes/Gis/GisMultiPolygonTest.php |
6 6 + 0 - 0 !
test/classes/Gis/GisPointTest.php |
6 6 + 0 - 0 !
test/classes/Gis/GisPolygonTest.php |
9 9 + 0 - 0 !
test/classes/Gis/GisVisualizationTest.php |
1 1 + 0 - 0 !
test/classes/GitTest.php |
7 7 + 0 - 0 !
test/classes/HeaderTest.php |
3 3 + 0 - 0 !
test/classes/Html/GeneratorTest.php |
5 5 + 0 - 0 !
test/classes/Html/MySQLDocumentationTest.php |
1 1 + 0 - 0 !
test/classes/Html/SecurityTest.php |
1 1 + 0 - 0 !
test/classes/Http/Factory/ServerRequestFactoryTest.php |
4 4 + 0 - 0 !
test/classes/Import/AjaxTest.php |
1 1 + 0 - 0 !
test/classes/ImportTest.php |
8 8 + 0 - 0 !
test/classes/IndexColumnTest.php |
1 1 + 0 - 0 !
test/classes/IndexTest.php |
1 1 + 0 - 0 !
test/classes/InsertEditTest.php |
4 4 + 0 - 0 !
test/classes/InternalRelationsTest.php |
1 1 + 0 - 0 !
test/classes/IpAllowDenyTest.php |
2 2 + 0 - 0 !
test/classes/LanguageTest.php |
4 4 + 0 - 0 !
test/classes/LinterTest.php |
2 2 + 0 - 0 !
test/classes/ListDatabaseTest.php |
1 1 + 0 - 0 !
test/classes/LoggingTest.php |
1 1 + 0 - 0 !
test/classes/MenuTest.php |
1 1 + 0 - 0 !
test/classes/MessageTest.php |
5 5 + 0 - 0 !
test/classes/MimeTest.php |
2 2 + 0 - 0 !
test/classes/Navigation/NavigationTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/NavigationTreeTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/NodeFactoryTest.php |
5 5 + 0 - 0 !
test/classes/Navigation/Nodes/NodeColumnContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeColumnTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeDatabaseChildTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeDatabaseTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeEventContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeEventTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeFunctionContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeFunctionTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeIndexContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeIndexTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeProcedureContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeProcedureTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeTableContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeTableTest.php |
2 2 + 0 - 0 !
test/classes/Navigation/Nodes/NodeTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeTriggerContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeTriggerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeViewContainerTest.php |
1 1 + 0 - 0 !
test/classes/Navigation/Nodes/NodeViewTest.php |
1 1 + 0 - 0 !
test/classes/NormalizationTest.php |
1 1 + 0 - 0 !
test/classes/OpenDocumentTest.php |
1 1 + 0 - 0 !
test/classes/OperationsTest.php |
2 2 + 0 - 0 !
test/classes/Partitioning/PartitionTest.php |
1 1 + 0 - 0 !
test/classes/Partitioning/SubPartitionTest.php |
1 1 + 0 - 0 !
test/classes/Partitioning/TablePartitionDefinitionTest.php |
3 3 + 0 - 0 !
test/classes/PdfTest.php |
4 4 + 0 - 0 !
test/classes/Plugins/Auth/AuthenticationConfigTest.php |
1 1 + 0 - 0 !
test/classes/Plugins/Auth/AuthenticationCookieTest.php |
12 12 + 0 - 0 !
test/classes/Plugins/Auth/AuthenticationHttpTest.php |
7 7 + 0 - 0 !
test/classes/Plugins/Auth/AuthenticationSignonTest.php |
1 1 + 0 - 0 !
test/classes/Plugins/Export/ExportCodegenTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportCsvTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportExcelTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportHtmlwordTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportJsonTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportLatexTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportMediawikiTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportOdsTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportOdtTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportPdfTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportPhparrayTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportSqlTest.php |
9 9 + 0 - 0 !
test/classes/Plugins/Export/ExportTexytextTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/ExportXmlTest.php |
4 4 + 0 - 0 !
test/classes/Plugins/Export/ExportYamlTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Export/Helpers/TablePropertyTest.php |
5 5 + 0 - 0 !
test/classes/Plugins/Import/ImportCsvTest.php |
8 8 + 0 - 0 !
test/classes/Plugins/Import/ImportLdiTest.php |
6 6 + 0 - 0 !
test/classes/Plugins/Import/ImportMediawikiTest.php |
4 4 + 0 - 0 !
test/classes/Plugins/Import/ImportOdsTest.php |
5 5 + 0 - 0 !
test/classes/Plugins/Import/ImportShpTest.php |
4 4 + 0 - 0 !
test/classes/Plugins/Import/ImportSqlTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Import/ImportXmlTest.php |
5 5 + 0 - 0 !
test/classes/Plugins/Schema/DiaRelationSchemaTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Schema/EpsRelationSchemaTest.php |
3 3 + 0 - 0 !
test/classes/Plugins/Schema/ExportRelationSchemaTest.php |
8 8 + 0 - 0 !
test/classes/Plugins/Schema/PdfRelationSchemaTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Schema/SvgRelationSchemaTest.php |
2 2 + 0 - 0 !
test/classes/Plugins/Transformations/TransformationPluginsTest.php |
23 23 + 0 - 0 !
test/classes/Plugins/TwoFactor/KeyTest.php |
1 1 + 0 - 0 !
test/classes/Plugins/TwoFactor/WebAuthnTest.php |
3 3 + 0 - 0 !
test/classes/PluginsTest.php |
2 2 + 0 - 0 !
test/classes/ProfilingTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/Groups/OptionsPropertyMainGroupTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/Groups/OptionsPropertyRootGroupTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/Groups/OptionsPropertySubgroupTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/Items/PropertyItemsTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/OptionsPropertyGroupTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/OptionsPropertyItemTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Options/OptionsPropertyOneItemTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Plugins/ExportPluginPropertiesTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Plugins/ImportPluginPropertiesTest.php |
1 1 + 0 - 0 !
test/classes/Properties/Plugins/PluginPropertyItemTest.php |
1 1 + 0 - 0 !
test/classes/Properties/PropertyItemTest.php |
1 1 + 0 - 0 !
test/classes/Query/CompatibilityTest.php |
4 4 + 0 - 0 !
test/classes/Query/GeneratorTest.php |
1 1 + 0 - 0 !
test/classes/ReplicationGuiTest.php |
2 2 + 0 - 0 !
test/classes/ResponseRendererTest.php |
3 3 + 0 - 0 !
test/classes/RoutingTest.php |
1 1 + 0 - 0 !
test/classes/SanitizeTest.php |
5 5 + 0 - 0 !
test/classes/ScriptsTest.php |
1 1 + 0 - 0 !
test/classes/Server/PluginTest.php |
2 2 + 0 - 0 !
test/classes/Server/PluginsTest.php |
1 1 + 0 - 0 !
test/classes/Server/Privileges/AccountLockingTest.php |
5 5 + 0 - 0 !
test/classes/Server/PrivilegesTest.php |
4 4 + 0 - 0 !
test/classes/Server/SelectTest.php |
2 2 + 0 - 0 !
test/classes/Server/SysInfo/SysInfoTest.php |
2 2 + 0 - 0 !
test/classes/Setup/ConfigGeneratorTest.php |
2 2 + 0 - 0 !
test/classes/Setup/FormProcessingTest.php |
2 2 + 0 - 0 !
test/classes/Setup/IndexTest.php |
1 1 + 0 - 0 !
test/classes/SqlQueryFormTest.php |
1 1 + 0 - 0 !
test/classes/SqlTest.php |
2 2 + 0 - 0 !
test/classes/StorageEngineTest.php |
2 2 + 0 - 0 !
test/classes/SystemDatabaseTest.php |
1 1 + 0 - 0 !
test/classes/Table/ColumnsDefinitionTest.php |
2 2 + 0 - 0 !
test/classes/Table/IndexesTest.php |
1 1 + 0 - 0 !
test/classes/Table/Maintenance/MessageTest.php |
2 2 + 0 - 0 !
test/classes/Table/SearchTest.php |
1 1 + 0 - 0 !
test/classes/TableTest.php |
2 2 + 0 - 0 !
test/classes/TemplateTest.php |
5 5 + 0 - 0 !
test/classes/ThemeManagerTest.php |
1 1 + 0 - 0 !
test/classes/ThemeTest.php |
4 4 + 0 - 0 !
test/classes/TrackerTest.php |
5 5 + 0 - 0 !
test/classes/TrackingTest.php |
1 1 + 0 - 0 !
test/classes/TransformationsTest.php |
5 5 + 0 - 0 !
test/classes/TwoFactorTest.php |
3 3 + 0 - 0 !
test/classes/TypesByDatabaseVersionTest.php |
5 5 + 0 - 0 !
test/classes/TypesTest.php |
6 6 + 0 - 0 !
test/classes/UrlTest.php |
2 2 + 0 - 0 !
test/classes/UserPasswordTest.php |
2 2 + 0 - 0 !
test/classes/UserPreferencesTest.php |
1 1 + 0 - 0 !
test/classes/UtilTest.php |
34 34 + 0 - 0 !
test/classes/Utils/ForeignKeyTest.php |
5 5 + 0 - 0 !
test/classes/Utils/FormatConverterTest.php |
5 5 + 0 - 0 !
test/classes/Utils/GisTest.php |
2 2 + 0 - 0 !
test/classes/Utils/HttpRequestTest.php |
20 20 + 0 - 0 !
test/classes/Utils/SessionCacheTest.php |
1 1 + 0 - 0 !
test/classes/VersionInformationTest.php |
7 7 + 0 - 0 !
test/classes/VersionTest.php |
1 1 + 0 - 0 !
test/classes/WebAuthn/CBORDecoderTest.php |
4 4 + 0 - 0 !
test/classes/WebAuthn/CustomServerTest.php |
3 3 + 0 - 0 !
test/classes/WebAuthn/WebauthnLibServerTest.php |
2 2 + 0 - 0 !
test/classes/ZipExtensionTest.php |
3 3 + 0 - 0 !
test/selenium/ChangePasswordTest.php |
2 2 + 0 - 0 !
test/selenium/CreateDropDatabaseTest.php |
2 2 + 0 - 0 !
test/selenium/CreateRemoveUserTest.php |
2 2 + 0 - 0 !
test/selenium/Database/EventsTest.php |
6 6 + 0 - 0 !
test/selenium/Database/OperationsTest.php |
4 4 + 0 - 0 !
test/selenium/Database/ProceduresTest.php |
4 4 + 0 - 0 !
test/selenium/Database/QueryByExampleTest.php |
1 1 + 0 - 0 !
test/selenium/Database/StructureTest.php |
3 3 + 0 - 0 !
test/selenium/Database/TriggersTest.php |
4 4 + 0 - 0 !
test/selenium/ExportTest.php |
4 4 + 0 - 0 !
test/selenium/ImportTest.php |
4 4 + 0 - 0 !
test/selenium/LoginTest.php |
3 3 + 0 - 0 !
test/selenium/NormalizationTest.php |
2 2 + 0 - 0 !
test/selenium/ServerSettingsTest.php |
4 4 + 0 - 0 !
test/selenium/SqlQueryTest.php |
1 1 + 0 - 0 !
test/selenium/Table/BrowseTest.php |
7 7 + 0 - 0 !
test/selenium/Table/CreateTest.php |
2 2 + 0 - 0 !
test/selenium/Table/InsertTest.php |
2 2 + 0 - 0 !
test/selenium/Table/OperationsTest.php |
7 7 + 0 - 0 !
test/selenium/Table/StructureTest.php |
4 4 + 0 - 0 !
test/selenium/TrackingTest.php |
5 5 + 0 - 0 !
test/selenium/XssTest.php |
2 2 + 0 - 0 !
312 files changed, 880 insertions(+), 2 deletions(-) |
patch phpunit deprecations for annotations
I did the patch upstream and deleted it.
It belongs in Debian.
|
Add more phpunit settings.patch | (download) |
phpunit.xml.dist |
5 5 + 0 - 0 !
1 file changed, 5 insertions(+) |
add more phpunit settings
|
Allow twig i18n extension 5.patch | (download) |
composer.json |
2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-) |
allow twig i18n extension 5.0
|
Fix tests for phpunit 12.patch | (download) |
test/classes/AbstractNetworkTestCase.php |
2 1 + 1 - 0 !
test/classes/CharsetsTest.php |
2 1 + 1 - 0 !
test/classes/Config/FormDisplayTest.php |
2 1 + 1 - 0 !
test/classes/ConfigStorage/RelationTest.php |
9 4 + 5 - 0 !
test/classes/ConfigStorage/UserGroupsTest.php |
14 7 + 7 - 0 !
test/classes/Controllers/Database/Structure/FavoriteTableControllerTest.php |
3 1 + 2 - 0 !
test/classes/Controllers/Database/StructureControllerTest.php |
6 3 + 3 - 0 !
test/classes/Controllers/Server/PluginsControllerTest.php |
5 2 + 3 - 0 !
test/classes/Controllers/Server/VariablesControllerTest.php |
2 1 + 1 - 0 !
test/classes/Controllers/Table/FindReplaceControllerTest.php |
6 3 + 3 - 0 !
test/classes/Controllers/Table/IndexesControllerTest.php |
10 5 + 5 - 0 !
test/classes/Controllers/Table/RelationControllerTest.php |
22 11 + 11 - 0 !
test/classes/Controllers/Table/SearchControllerTest.php |
8 4 + 4 - 0 !
test/classes/Database/CentralColumnsTest.php |
80 39 + 41 - 0 !
test/classes/Database/Designer/CommonTest.php |
22 11 + 11 - 0 !
test/classes/Database/DesignerTest.php |
4 2 + 2 - 0 !
test/classes/Database/EventsTest.php |
2 1 + 1 - 0 !
test/classes/Database/QbeTest.php |
4 2 + 2 - 0 !
test/classes/Database/RoutinesTest.php |
36 17 + 19 - 0 !
test/classes/Database/SearchTest.php |
6 3 + 3 - 0 !
test/classes/DatabaseInterfaceTest.php |
6 3 + 3 - 0 !
test/classes/Export/OptionsTest.php |
6 3 + 3 - 0 !
test/classes/Gis/GisGeometryTest.php |
2 1 + 1 - 0 !
test/classes/InsertEditTest.php |
62 28 + 34 - 0 !
test/classes/Navigation/NavigationTest.php |
4 2 + 2 - 0 !
test/classes/Navigation/Nodes/NodeDatabaseChildTest.php |
11 6 + 5 - 0 !
test/classes/Navigation/Nodes/NodeTest.php |
16 8 + 8 - 0 !
test/classes/NormalizationTest.php |
24 11 + 13 - 0 !
test/classes/Plugins/Auth/AuthenticationCookieTest.php |
32 16 + 16 - 0 !
test/classes/Plugins/Auth/AuthenticationHttpTest.php |
7 3 + 4 - 0 !
test/classes/Plugins/Auth/AuthenticationSignonTest.php |
4 2 + 2 - 0 !
test/classes/Plugins/Export/ExportHtmlwordTest.php |
40 20 + 20 - 0 !
test/classes/Plugins/Export/ExportLatexTest.php |
24 12 + 12 - 0 !
test/classes/Plugins/Export/ExportMediawikiTest.php |
2 1 + 1 - 0 !
test/classes/Plugins/Export/ExportOdsTest.php |
22 11 + 11 - 0 !
test/classes/Plugins/Export/ExportOdtTest.php |
42 21 + 21 - 0 !
test/classes/Plugins/Export/ExportSqlTest.php |
188 90 + 98 - 0 !
test/classes/Plugins/Export/ExportTexytextTest.php |
14 6 + 8 - 0 !
test/classes/Plugins/Export/ExportXmlTest.php |
20 9 + 11 - 0 !
test/classes/Plugins/Import/ImportLdiTest.php |
10 5 + 5 - 0 !
test/classes/Properties/Options/OptionsPropertyGroupTest.php |
2 1 + 1 - 0 !
test/classes/Properties/Options/OptionsPropertyItemTest.php |
2 1 + 1 - 0 !
test/classes/Properties/Options/OptionsPropertyOneItemTest.php |
2 1 + 1 - 0 !
test/classes/Properties/Plugins/PluginPropertyItemTest.php |
2 1 + 1 - 0 !
test/classes/Properties/PropertyItemTest.php |
2 1 + 1 - 0 !
test/classes/Server/PrivilegesTest.php |
88 39 + 49 - 0 !
test/classes/Setup/FormProcessingTest.php |
10 5 + 5 - 0 !
test/classes/StorageEngineTest.php |
20 8 + 12 - 0 !
test/classes/SystemDatabaseTest.php |
22 10 + 12 - 0 !
test/classes/Table/IndexesTest.php |
6 3 + 3 - 0 !
test/classes/TableTest.php |
46 22 + 24 - 0 !
test/classes/ThemeManagerTest.php |
2 1 + 1 - 0 !
test/classes/TrackerTest.php |
82 39 + 43 - 0 !
test/classes/TransformationsTest.php |
2 1 + 1 - 0 !
test/classes/UserPreferencesTest.php |
28 13 + 15 - 0 !
test/classes/UtilTest.php |
22 11 + 11 - 0 !
test/classes/Utils/ForeignKeyTest.php |
10 5 + 5 - 0 !
test/classes/Utils/GisTest.php |
6 3 + 3 - 0 !
test/classes/VersionInformationTest.php |
2 1 + 1 - 0 !
59 files changed, 543 insertions(+), 594 deletions(-) |
fix tests for phpunit 12
And PHPUnit 13 for testGetCollationsMariaDB
|