Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: c8dd8660a0f0bbceac9a205ebed5fee0dc273eb5
https://github.com/phpmyadmin/phpmyadmin/commit/c8dd8660a0f0bbceac9a205ebed…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-31 (Fri, 05 May 2019) -03:00
Changed paths:
M js/makegrid.js
M js/sql.js
M js/tbl_select.js
M js/tbl_zoom_plot_jqplot.js
M libraries/classes/ErrorHandler.php
M templates/display/import/javascript.twig
Log Message:
-----------
Replace jQuery .bind() with .on()
As of jQuery 3.0, .bind() has been deprecated.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/sql-parser
Commit: 724b2330dc4cb6247aa1649cc1f49fce496f2e3c
https://github.com/phpmyadmin/sql-parser/commit/724b2330dc4cb6247aa1649cc1f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M .travis.yml
M composer.json
M phpunit.xml.dist
Log Message:
-----------
Partial revert "Bump minimum version to PHP 7.1"
This reverts commit 2941ff6b8b9c4d50362f3bc9bb79f086376c4acc.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5d5089a259d0195c4a1e4aa3588c31c839954067
https://github.com/phpmyadmin/sql-parser/commit/5d5089a259d0195c4a1e4aa3588…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M src/Component.php
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/Limit.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/Core.php
M src/Parser.php
M src/Statement.php
M src/Statements/AlterStatement.php
M src/Statements/CreateStatement.php
M src/Statements/LockStatement.php
M src/Statements/NotImplementedStatement.php
M src/Statements/SelectStatement.php
M src/TokensList.php
M src/Utils/BufferedQuery.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Misc.php
M src/Utils/Query.php
M src/Utils/Routine.php
M src/Utils/Table.php
M src/Utils/Tokens.php
M tests/TestCase.php
M tests/Utils/BufferedQueryTest.php
M tests/Utils/FormatterTest.php
M tools/ContextGenerator.php
M tools/TestGenerator.php
Log Message:
-----------
Revert array syntax
See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 930a860bc7f0684c45babd012070f88a9505d427
https://github.com/phpmyadmin/sql-parser/commit/930a860bc7f0684c45babd01207…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M src/Components/AlterOperation.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/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/PartitionDefinition.php
M src/Components/Reference.php
M src/Components/RenameOperation.php
M src/Components/SetOperation.php
M src/Context.php
M src/Contexts/ContextMariaDb100000.php
M src/Contexts/ContextMariaDb100100.php
M src/Contexts/ContextMariaDb100200.php
M src/Contexts/ContextMariaDb100300.php
M src/Contexts/ContextMySql50000.php
M src/Contexts/ContextMySql50100.php
M src/Contexts/ContextMySql50500.php
M src/Contexts/ContextMySql50600.php
M src/Contexts/ContextMySql50700.php
M src/Contexts/ContextMySql80000.php
M src/Lexer.php
M src/Parser.php
M src/Statements/AlterStatement.php
M src/Statements/AnalyzeStatement.php
M src/Statements/BackupStatement.php
M src/Statements/CheckStatement.php
M src/Statements/ChecksumStatement.php
M src/Statements/CreateStatement.php
M src/Statements/DeleteStatement.php
M src/Statements/DropStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/OptimizeStatement.php
M src/Statements/PurgeStatement.php
M src/Statements/RepairStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/RestoreStatement.php
M src/Statements/SelectStatement.php
M src/Statements/SetStatement.php
M src/Statements/ShowStatement.php
M src/Statements/TransactionStatement.php
M src/Statements/TruncateStatement.php
M src/Statements/UpdateStatement.php
M src/Token.php
M src/Utils/BufferedQuery.php
M src/Utils/CLI.php
M src/Utils/Error.php
M src/Utils/Formatter.php
M src/Utils/Misc.php
M src/Utils/Query.php
M src/Utils/Routine.php
M src/Utils/Table.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/InsertStatementTest.php
M tests/Components/Array2dTest.php
M tests/Components/ArrayObjTest.php
M tests/Components/ExpressionArrayTest.php
M tests/Components/ExpressionTest.php
M tests/Components/FunctionCallTest.php
M tests/Components/GroupKeywordTest.php
M tests/Components/JoinKeywordTest.php
M tests/Components/LimitTest.php
M tests/Components/LockExpressionTest.php
M tests/Components/OptionsArrayTest.php
M tests/Components/OrderKeywordTest.php
M tests/Components/ReferenceTest.php
M tests/Lexer/ContextTest.php
M tests/Lexer/LexerTest.php
M tests/Lexer/TokensListTest.php
M tests/Misc/BugsTest.php
M tests/Misc/ParameterTest.php
M tests/Misc/UtfStringTest.php
M tests/Parser/AlterStatementTest.php
M tests/Parser/CallStatementTest.php
M tests/Parser/CreateStatementTest.php
M tests/Parser/DeleteStatementTest.php
M tests/Parser/ExplainStatementTest.php
M tests/Parser/InsertStatementTest.php
M tests/Parser/LoadStatementTest.php
M tests/Parser/LockStatementTest.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/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/MiscTest.php
M tests/Utils/QueryTest.php
M tests/Utils/RoutineTest.php
M tests/Utils/TableTest.php
M tests/Utils/TokensTest.php
M tools/ContextGenerator.php
M tools/TestGenerator.php
Log Message:
-----------
revert of new array syntax
See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b988a6ae833e0f01627f57d6b48a2cdfeaebc5e1
https://github.com/phpmyadmin/sql-parser/commit/b988a6ae833e0f01627f57d6b48…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M composer.json
M phpcs.xml.dist
Log Message:
-----------
remove phpmyadmin/coding-standard and add squizlabs/php_codesniffer
See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a5b955658e642652e7b5fc4ae368a6f74ef85411
https://github.com/phpmyadmin/sql-parser/commit/a5b955658e642652e7b5fc4ae36…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M bin/highlight-query
M bin/lint-query
M bin/tokenize-query
M src/Component.php
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/Limit.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/Contexts/ContextMariaDb100000.php
M src/Contexts/ContextMariaDb100100.php
M src/Contexts/ContextMariaDb100200.php
M src/Contexts/ContextMariaDb100300.php
M src/Contexts/ContextMySql50000.php
M src/Contexts/ContextMySql50100.php
M src/Contexts/ContextMySql50500.php
M src/Contexts/ContextMySql50600.php
M src/Contexts/ContextMySql50700.php
M src/Contexts/ContextMySql80000.php
M src/Core.php
M src/Exceptions/LexerException.php
M src/Exceptions/LoaderException.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/AnalyzeStatement.php
M src/Statements/BackupStatement.php
M src/Statements/CallStatement.php
M src/Statements/CheckStatement.php
M src/Statements/ChecksumStatement.php
M src/Statements/CreateStatement.php
M src/Statements/DeleteStatement.php
M src/Statements/DropStatement.php
M src/Statements/ExplainStatement.php
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Statements/LockStatement.php
M src/Statements/MaintenanceStatement.php
M src/Statements/NotImplementedStatement.php
M src/Statements/OptimizeStatement.php
M src/Statements/PurgeStatement.php
M src/Statements/RenameStatement.php
M src/Statements/RepairStatement.php
M src/Statements/ReplaceStatement.php
M src/Statements/RestoreStatement.php
M src/Statements/SelectStatement.php
M src/Statements/SetStatement.php
M src/Statements/ShowStatement.php
M src/Statements/TransactionStatement.php
M src/Statements/TruncateStatement.php
M src/Statements/UpdateStatement.php
M src/Token.php
M src/TokensList.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/Misc.php
M src/Utils/Query.php
M src/Utils/Routine.php
M src/Utils/Table.php
M src/Utils/Tokens.php
M tests/Builder/AlterStatementTest.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/DeleteStatementTest.php
M tests/Builder/ExplainStatementTest.php
M tests/Builder/InsertStatementTest.php
M tests/Builder/LoadStatementTest.php
M tests/Builder/LockStatementTest.php
M tests/Builder/PurgeStatementTest.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/Components/Array2dTest.php
M tests/Components/ArrayObjTest.php
M tests/Components/CaseExpressionTest.php
M tests/Components/ComponentTest.php
M tests/Components/ConditionTest.php
M tests/Components/CreateDefinitionTest.php
M tests/Components/ExpressionArrayTest.php
M tests/Components/ExpressionTest.php
M tests/Components/FunctionCallTest.php
M tests/Components/GroupKeywordTest.php
M tests/Components/IntoKeywordTest.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/Components/ReferenceTest.php
M tests/Components/RenameOperationTest.php
M tests/Lexer/ContextTest.php
M tests/Lexer/IsMethodsTest.php
M tests/Lexer/LexerTest.php
M tests/Lexer/TokenTest.php
M tests/Lexer/TokensListTest.php
M tests/Misc/BugsTest.php
M tests/Misc/ParameterTest.php
M tests/Misc/UtfStringTest.php
M tests/Parser/AlterStatementTest.php
M tests/Parser/CallStatementTest.php
M tests/Parser/CreateStatementTest.php
M tests/Parser/DeleteStatementTest.php
M tests/Parser/ExplainStatementTest.php
M tests/Parser/InsertStatementTest.php
M tests/Parser/LoadStatementTest.php
M tests/Parser/LockStatementTest.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/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/MiscTest.php
M tests/Utils/QueryTest.php
M tests/Utils/RoutineTest.php
M tests/Utils/TableTest.php
M tests/Utils/TokensTest.php
M tools/ContextGenerator.php
M tools/TestGenerator.php
Log Message:
-----------
Revert "Enable strict mode on PHP files"
This reverts commit 17da8a34b81442524a8e01fead7b5968fa1cc39d.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 82cfdff6e6166cbcca797075c1895cad2e403a24
https://github.com/phpmyadmin/sql-parser/commit/82cfdff6e6166cbcca797075c18…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M CHANGELOG.md
Log Message:
-----------
Edit CHANGELOG.md
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bb6a2b0435ad64c02bd26768f0fddddd2fb27ffe
https://github.com/phpmyadmin/sql-parser/commit/bb6a2b0435ad64c02bd26768f0f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M composer.json
Log Message:
-----------
Downgrade phpcs from 3.4 to to 2.9.x
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 92e97d6234645e65bfafcf4b53d98838e57f2d44
https://github.com/phpmyadmin/sql-parser/commit/92e97d6234645e65bfafcf4b53d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-29 (Wed, 05 May 2019) +02:00
Changed paths:
M src/Statements/InsertStatement.php
M src/Statements/LoadStatement.php
M src/Utils/CLI.php
M tests/Builder/CreateStatementTest.php
M tests/Builder/StatementTest.php
M tests/Components/FunctionCallTest.php
M tests/Components/OptionsArrayTest.php
M tests/Lexer/ContextTest.php
M tests/Utils/CLITest.php
M tests/Utils/ErrorTest.php
M tests/Utils/FormatterTest.php
M tools/TestGenerator.php
Log Message:
-----------
revert usage of new array syntax []
See: 86c5baebda24c1721fb6881df8671a3c7df60e8b
Related-to: 930a860bc7f0684c45babd012070f88a9505d427, 5d5089a259d0195c4a1e4aa3588c31c839954067
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ad831332f9a236bf966f40272e126ab89cc8d29b
https://github.com/phpmyadmin/sql-parser/commit/ad831332f9a236bf966f40272e1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-29 (Wed, 05 May 2019) +02:00
Changed paths:
M tests/Utils/CLITest.php
Log Message:
-----------
Fix CLITest
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8e01c27dd9f3e16fdcae25faacf2b875fe6160f1
https://github.com/phpmyadmin/sql-parser/commit/8e01c27dd9f3e16fdcae25faacf…
Author: Tyson Andre <tysonandre775(a)hotmail.com>
Date: 2019-05-31 (Fri, 05 May 2019) +02:00
Changed paths:
M CHANGELOG.md
Log Message:
-----------
Fix typos in changelog
Commit: 930444b7bbd3e7ab00ab6c8823875f00ea8039b0
https://github.com/phpmyadmin/sql-parser/commit/930444b7bbd3e7ab00ab6c88238…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-31 (Fri, 05 May 2019) +02:00
Changed paths:
M CHANGELOG.md
Log Message:
-----------
Merge #248 'fix-typo-changelog' into QA
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: faebd4d732c77c0ad42937ab53e08f8c64a59088
https://github.com/phpmyadmin/sql-parser/commit/faebd4d732c77c0ad42937ab53e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-31 (Fri, 05 May 2019) +02:00
Changed paths:
M CHANGELOG.md
Log Message:
-----------
Merge branch 'QA'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: db3a59b6f117af5fef5989eb5254f889c1e54a7b
https://github.com/phpmyadmin/phpmyadmin/commit/db3a59b6f117af5fef5989eb525…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/shortcuts_handler.js
M js/sql.js
M js/tbl_change.js
M js/tbl_chart.js
M js/tbl_gis_visualization.js
M js/tbl_select.js
M js/tbl_structure.js
M js/u2f.js
Log Message:
-----------
Fix undefined variables in some JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>