Branch: refs/heads/master
Home: https://github.com/phpmyadmin/sql-parser
Commit: 958fc0c00a95ad44cef4a62c63e87d91195ba26f
https://github.com/phpmyadmin/sql-parser/commit/958fc0c00a95ad44cef4a62c63e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-16 (Tue, 01 January 2024) -03:00
Changed paths:
M phpcs.xml.dist
M phpstan-baseline.neon
M psalm-baseline.xml
M src/Components/AlterOperation.php
M src/Components/Array2d.php
M src/Components/ArrayObj.php
M src/Components/CaseExpression.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/ExpressionArray.php
M src/Components/FunctionCall.php
M src/Components/GroupKeyword.php
M src/Components/IndexHint.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/OrderKeyword.php
M src/Components/ParameterDefinition.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Lexer.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/DeleteStatement.php
M src/Statements/ExplainStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/LockStatement.php
M src/Statements/PurgeStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/WithStatement.php
M src/Tools/TestGenerator.php
M src/Utils/BufferedQuery.php
M src/Utils/Formatter.php
M src/Utils/Query.php
Log Message:
-----------
Remove invalid var annotations
Most of them are obvious or wrong.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e55fadfce79e06e62cd11e902d1ec3a15566a3bb
https://github.com/phpmyadmin/sql-parser/commit/e55fadfce79e06e62cd11e902d1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-16 (Tue, 01 January 2024) -03:00
Changed paths:
M phpcs.xml.dist
M phpstan-baseline.neon
M psalm-baseline.xml
M src/Components/AlterOperation.php
M src/Components/Array2d.php
M src/Components/ArrayObj.php
M src/Components/CaseExpression.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/ExpressionArray.php
M src/Components/FunctionCall.php
M src/Components/GroupKeyword.php
M src/Components/IndexHint.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/OrderKeyword.php
M src/Components/ParameterDefinition.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Lexer.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/DeleteStatement.php
M src/Statements/ExplainStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/LockStatement.php
M src/Statements/PurgeStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/WithStatement.php
M src/Tools/TestGenerator.php
M src/Utils/BufferedQuery.php
M src/Utils/Formatter.php
M src/Utils/Query.php
Log Message:
-----------
Merge pull request #536 from MauricioFauth/invalid-var
Remove invalid var annotations
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/sql-parser
Commit: 9dcb6b06276a9f272075c657f73b70a8e19d131a
https://github.com/phpmyadmin/sql-parser/commit/9dcb6b06276a9f272075c657f73…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-15 (Mon, 01 January 2024) -03:00
Changed paths:
M phpcs.xml.dist
M psalm-baseline.xml
M src/Components/AlterOperation.php
M src/Components/Array2d.php
M src/Components/ArrayObj.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/ExpressionArray.php
M src/Components/GroupKeyword.php
M src/Components/IndexHint.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/OrderKeyword.php
M src/Components/ParameterDefinition.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Components/UnionKeyword.php
M src/Context.php
M src/Exceptions/LexerException.php
M src/Exceptions/ParserException.php
M src/Lexer.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/MaintenanceStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/WithStatement.php
M src/Token.php
M src/TokensList.php
M src/Tools/ContextGenerator.php
M src/Tools/CustomJsonSerializer.php
M src/Tools/TestGenerator.php
M src/Translator.php
M src/UtfString.php
M src/Utils/BufferedQuery.php
M src/Utils/CLI.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Query.php
M tests/Builder/AlterStatementTest.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/ExplainStatementTest.php
M tests/Builder/InsertStatementTest.php
M tests/Builder/LoadStatementTest.php
M tests/Builder/RenameStatementTest.php
M tests/Builder/ReplaceStatementTest.php
M tests/Builder/SelectStatementTest.php
M tests/Builder/SetStatementTest.php
M tests/Builder/StatementTest.php
M tests/Builder/TransactionStatementTest.php
M tests/Builder/UpdateStatementTest.php
M tests/Components/Array2dTest.php
M tests/Components/ArrayObjTest.php
M tests/Components/CaseExpressionTest.php
M tests/Components/ConditionTest.php
M tests/Components/CreateDefinitionTest.php
M tests/Components/ExpressionArrayTest.php
M tests/Components/ExpressionTest.php
M tests/Components/GroupKeywordTest.php
M tests/Components/JoinKeywordTest.php
M tests/Components/KeyTest.php
M tests/Components/LimitTest.php
M tests/Components/LockExpressionTest.php
M tests/Components/OptionsArrayTest.php
M tests/Components/OrderKeywordTest.php
M tests/Components/ParameterDefinitionTest.php
M tests/Components/PartitionDefinitionTest.php
M tests/Lexer/ContextTest.php
M tests/Lexer/IsMethodsTest.php
M tests/Lexer/LexerTest.php
M tests/Lexer/TokensListTest.php
M tests/Misc/BugsTest.php
M tests/Misc/ParameterTest.php
M tests/Parser/AlterStatementTest.php
M tests/Parser/AnalyzeStatementTest.php
M tests/Parser/CallStatementTest.php
M tests/Parser/CreateStatementTest.php
M tests/Parser/DeleteStatementTest.php
M tests/Parser/DropStatementTest.php
M tests/Parser/ExplainStatementTest.php
M tests/Parser/InsertStatementTest.php
M tests/Parser/LoadStatementTest.php
M tests/Parser/LockStatementTest.php
M tests/Parser/ParserLongExportsTest.php
M tests/Parser/ParserTest.php
M tests/Parser/PurgeStatementTest.php
M tests/Parser/RenameStatementTest.php
M tests/Parser/ReplaceStatementTest.php
M tests/Parser/RestoreStatementTest.php
M tests/Parser/SelectStatementTest.php
M tests/Parser/SetStatementTest.php
M tests/Parser/TransactionStatementTest.php
M tests/Parser/UpdateStatementTest.php
M tests/Parser/WithStatementTest.php
M tests/TestCase.php
M tests/Utils/BufferedQueryTest.php
M tests/Utils/CLITest.php
M tests/Utils/ErrorTest.php
M tests/Utils/FormatterTest.php
M tests/Utils/QueryTest.php
M tests/Utils/RoutineTest.php
Log Message:
-----------
Fix some coding standard issues
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 94f2db2fd7dded6ba251bf15e4645b5d19b10a35
https://github.com/phpmyadmin/sql-parser/commit/94f2db2fd7dded6ba251bf15e46…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-15 (Mon, 01 January 2024) -03:00
Changed paths:
M phpcs.xml.dist
M psalm-baseline.xml
M src/Components/AlterOperation.php
M src/Components/Array2d.php
M src/Components/ArrayObj.php
M src/Components/Condition.php
M src/Components/CreateDefinition.php
M src/Components/DataType.php
M src/Components/Expression.php
M src/Components/ExpressionArray.php
M src/Components/GroupKeyword.php
M src/Components/IndexHint.php
M src/Components/IntoKeyword.php
M src/Components/JoinKeyword.php
M src/Components/Key.php
M src/Components/LockExpression.php
M src/Components/OptionsArray.php
M src/Components/OrderKeyword.php
M src/Components/ParameterDefinition.php
M src/Components/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Components/UnionKeyword.php
M src/Context.php
M src/Exceptions/LexerException.php
M src/Exceptions/ParserException.php
M src/Lexer.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/MaintenanceStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/WithStatement.php
M src/Token.php
M src/TokensList.php
M src/Tools/ContextGenerator.php
M src/Tools/CustomJsonSerializer.php
M src/Tools/TestGenerator.php
M src/Translator.php
M src/UtfString.php
M src/Utils/BufferedQuery.php
M src/Utils/CLI.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Query.php
M tests/Builder/AlterStatementTest.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/ExplainStatementTest.php
M tests/Builder/InsertStatementTest.php
M tests/Builder/LoadStatementTest.php
M tests/Builder/RenameStatementTest.php
M tests/Builder/ReplaceStatementTest.php
M tests/Builder/SelectStatementTest.php
M tests/Builder/SetStatementTest.php
M tests/Builder/StatementTest.php
M tests/Builder/TransactionStatementTest.php
M tests/Builder/UpdateStatementTest.php
M tests/Components/Array2dTest.php
M tests/Components/ArrayObjTest.php
M tests/Components/CaseExpressionTest.php
M tests/Components/ConditionTest.php
M tests/Components/CreateDefinitionTest.php
M tests/Components/ExpressionArrayTest.php
M tests/Components/ExpressionTest.php
M tests/Components/GroupKeywordTest.php
M tests/Components/JoinKeywordTest.php
M tests/Components/KeyTest.php
M tests/Components/LimitTest.php
M tests/Components/LockExpressionTest.php
M tests/Components/OptionsArrayTest.php
M tests/Components/OrderKeywordTest.php
M tests/Components/ParameterDefinitionTest.php
M tests/Components/PartitionDefinitionTest.php
M tests/Lexer/ContextTest.php
M tests/Lexer/IsMethodsTest.php
M tests/Lexer/LexerTest.php
M tests/Lexer/TokensListTest.php
M tests/Misc/BugsTest.php
M tests/Misc/ParameterTest.php
M tests/Parser/AlterStatementTest.php
M tests/Parser/AnalyzeStatementTest.php
M tests/Parser/CallStatementTest.php
M tests/Parser/CreateStatementTest.php
M tests/Parser/DeleteStatementTest.php
M tests/Parser/DropStatementTest.php
M tests/Parser/ExplainStatementTest.php
M tests/Parser/InsertStatementTest.php
M tests/Parser/LoadStatementTest.php
M tests/Parser/LockStatementTest.php
M tests/Parser/ParserLongExportsTest.php
M tests/Parser/ParserTest.php
M tests/Parser/PurgeStatementTest.php
M tests/Parser/RenameStatementTest.php
M tests/Parser/ReplaceStatementTest.php
M tests/Parser/RestoreStatementTest.php
M tests/Parser/SelectStatementTest.php
M tests/Parser/SetStatementTest.php
M tests/Parser/TransactionStatementTest.php
M tests/Parser/UpdateStatementTest.php
M tests/Parser/WithStatementTest.php
M tests/TestCase.php
M tests/Utils/BufferedQueryTest.php
M tests/Utils/CLITest.php
M tests/Utils/ErrorTest.php
M tests/Utils/FormatterTest.php
M tests/Utils/QueryTest.php
M tests/Utils/RoutineTest.php
Log Message:
-----------
Merge pull request #523 from MauricioFauth/phpcs
Fix some coding standard issues
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 4fefea40c7bc40d59f2d055aba7a8ff924bfcc23
https://github.com/phpmyadmin/phpmyadmin/commit/4fefea40c7bc40d59f2d055aba7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-05 (Fri, 01 January 2024) -03:00
Changed paths:
A src/UserPrivileges.php
M phpstan-baseline.neon
M psalm-baseline.xml
M psalm.xml
M src/CheckUserPrivileges.php
M src/Controllers/Database/RoutinesController.php
M src/Controllers/Operations/DatabaseController.php
M src/Controllers/Operations/TableController.php
M src/Controllers/Server/DatabasesController.php
M src/Controllers/Table/Structure/SaveController.php
M src/Database/Routines.php
M src/ListDatabase.php
M src/Navigation/NavigationTree.php
M src/Navigation/Nodes/Node.php
M src/Navigation/Nodes/NodeDatabaseContainer.php
M src/Normalization.php
M src/Operations.php
M src/Server/Privileges.php
M src/Table/ColumnsDefinition.php
M tests/classes/AbstractTestCase.php
M tests/classes/CheckUserPrivilegesTest.php
M tests/classes/Controllers/Normalization/AddNewPrimaryControllerTest.php
M tests/classes/Controllers/Normalization/CreateNewColumnControllerTest.php
M tests/classes/Controllers/Server/DatabasesControllerTest.php
M tests/classes/Database/RoutinesTest.php
M tests/classes/Navigation/Nodes/NodeTest.php
M tests/classes/NormalizationTest.php
M tests/classes/Server/PrivilegesTest.php
M tests/classes/Table/ColumnsDefinitionTest.php
Log Message:
-----------
Extract privileges globals to static props of UserPrivileges class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d1a594542b4663f4bed27dab8491b3dfa75dc19c
https://github.com/phpmyadmin/phpmyadmin/commit/d1a594542b4663f4bed27dab849…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-06 (Sat, 01 January 2024) -03:00
Changed paths:
A src/UserPrivileges.php
M phpstan-baseline.neon
M psalm-baseline.xml
M psalm.xml
M src/CheckUserPrivileges.php
M src/Controllers/Database/RoutinesController.php
M src/Controllers/Operations/DatabaseController.php
M src/Controllers/Operations/TableController.php
M src/Controllers/Server/DatabasesController.php
M src/Controllers/Table/Structure/SaveController.php
M src/Database/Routines.php
M src/ListDatabase.php
M src/Navigation/NavigationTree.php
M src/Navigation/Nodes/Node.php
M src/Navigation/Nodes/NodeDatabaseContainer.php
M src/Normalization.php
M src/Operations.php
M src/Server/Privileges.php
M src/Table/ColumnsDefinition.php
M tests/classes/AbstractTestCase.php
M tests/classes/CheckUserPrivilegesTest.php
M tests/classes/Controllers/Normalization/AddNewPrimaryControllerTest.php
M tests/classes/Controllers/Normalization/CreateNewColumnControllerTest.php
M tests/classes/Controllers/Server/DatabasesControllerTest.php
M tests/classes/Database/RoutinesTest.php
M tests/classes/Navigation/Nodes/NodeTest.php
M tests/classes/NormalizationTest.php
M tests/classes/Server/PrivilegesTest.php
M tests/classes/Table/ColumnsDefinitionTest.php
Log Message:
-----------
Merge pull request #18882 from MauricioFauth/user-privs-globals
Extract privileges globals to static props of UserPrivileges class
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: a858f08fec34317fa3bde2968c276f98e884b063
https://github.com/phpmyadmin/phpmyadmin/commit/a858f08fec34317fa3bde2968c2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-05 (Fri, 01 January 2024) -03:00
Changed paths:
A src/Error/Error.php
A src/Error/ErrorHandler.php
A src/Error/ErrorReport.php
A tests/classes/Error/ErrorHandlerTest.php
A tests/classes/Error/ErrorReportTest.php
A tests/classes/Error/ErrorTest.php
M app/services.php
M phpstan-baseline.neon
M psalm-baseline.xml
M src/Application.php
M src/Controllers/ErrorReportController.php
M src/Core.php
M src/DatabaseInterface.php
M src/Footer.php
M src/Http/Middleware/ErrorHandling.php
M src/Http/Middleware/SessionHandling.php
M src/Plugins/Auth/AuthenticationConfig.php
M src/Plugins/Auth/AuthenticationCookie.php
M src/Query/Utilities.php
M src/ResponseRenderer.php
M src/Session.php
M tests/classes/ApplicationTest.php
M tests/classes/Plugins/Auth/AuthenticationCookieTest.php
D src/Error.php
D src/ErrorHandler.php
D src/ErrorReport.php
D tests/classes/ErrorHandlerTest.php
D tests/classes/ErrorReportTest.php
D tests/classes/ErrorTest.php
Log Message:
-----------
Move error related classes to the Error namespace
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: be1be3a0f1fe74c17da9e04f446c681a4138ab30
https://github.com/phpmyadmin/phpmyadmin/commit/be1be3a0f1fe74c17da9e04f446…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-06 (Sat, 01 January 2024) -03:00
Changed paths:
A src/Error/Error.php
A src/Error/ErrorHandler.php
A src/Error/ErrorReport.php
A tests/classes/Error/ErrorHandlerTest.php
A tests/classes/Error/ErrorReportTest.php
A tests/classes/Error/ErrorTest.php
M app/services.php
M phpstan-baseline.neon
M psalm-baseline.xml
M src/Application.php
M src/Controllers/ErrorReportController.php
M src/Core.php
M src/DatabaseInterface.php
M src/Footer.php
M src/Http/Middleware/ErrorHandling.php
M src/Http/Middleware/SessionHandling.php
M src/Plugins/Auth/AuthenticationConfig.php
M src/Plugins/Auth/AuthenticationCookie.php
M src/Query/Utilities.php
M src/ResponseRenderer.php
M src/Session.php
M tests/classes/ApplicationTest.php
M tests/classes/Plugins/Auth/AuthenticationCookieTest.php
D src/Error.php
D src/ErrorHandler.php
D src/ErrorReport.php
D tests/classes/ErrorHandlerTest.php
D tests/classes/ErrorReportTest.php
D tests/classes/ErrorTest.php
Log Message:
-----------
Merge pull request #18881 from MauricioFauth/error-namespace
Move error related classes to the Error namespace
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: f78781d949f5dfe1553eb3e1234cc330be391089
https://github.com/phpmyadmin/phpmyadmin/commit/f78781d949f5dfe1553eb3e1234…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-05 (Fri, 01 January 2024) -03:00
Changed paths:
A tests/classes/Controllers/DatabaseControllerTest.php
M app/services_controllers.php
M psalm-baseline.xml
M src/Controllers/DatabaseController.php
Log Message:
-----------
Add unit test for DatabaseController
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5ce96dadb6fdf780700418c7604dd4cb2d0a7f4e
https://github.com/phpmyadmin/phpmyadmin/commit/5ce96dadb6fdf780700418c7604…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2024-01-06 (Sat, 01 January 2024) -03:00
Changed paths:
A tests/classes/Controllers/DatabaseControllerTest.php
M app/services_controllers.php
M psalm-baseline.xml
M src/Controllers/DatabaseController.php
Log Message:
-----------
Merge pull request #18880 from MauricioFauth/database-controller-test
Add unit test for DatabaseController