Branch: refs/heads/STABLE
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 3e1b935df6de57e15850bdd39c0b9a0446e41e1c
https://github.com/phpmyadmin/phpmyadmin/commit/3e1b935df6de57e15850bdd39c0…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M test/classes/UserPreferencesTest.php
Log Message:
-----------
Replace assertEquals() with assertEqualsWithDelta()
The optional $delta parameter of assertEquals() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertEqualsWithDelta() instead.
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 39141e7c686e21f1b434358c960b6e87cff53b56
https://github.com/phpmyadmin/phpmyadmin/commit/39141e7c686e21f1b434358c960…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M test/classes/NormalizationTest.php
Log Message:
-----------
Replace assertInternalType() with assertIsArray()
assertInternalType() is deprecated and will be removed in PHPUnit 9. Refactor your test to use assertIsArray(), assertIsBool(), assertIsFloat(), assertIsInt(), assertIsNumeric(), assertIsObject(), assertIsResource(), assertIsString(), assertIsScalar(), assertIsCallable(), or assertIsIterable() instead.
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 74105ab85ca40aad536c7a17eca33996de786fe6
https://github.com/phpmyadmin/phpmyadmin/commit/74105ab85ca40aad536c7a17eca…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M test/classes/Config/FormDisplayTest.php
M test/classes/ConfigTest.php
M test/classes/HeaderTest.php
M test/classes/ScriptsTest.php
M test/classes/TrackerTest.php
Log Message:
-----------
Replace readAttribute() and assertAttributeEquals()
assertAttributeEquals() is deprecated and will be removed in PHPUnit 9.
readAttribute() is deprecated and will be removed in PHPUnit 9.
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 6bd2dbd5f2b43a1f1b90e0795a85ac6a6bee55a1
https://github.com/phpmyadmin/phpmyadmin/commit/6bd2dbd5f2b43a1f1b90e0795a8…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M .gitignore
M composer.json
M test/selenium/TestBase.php
Log Message:
-----------
Add support for PHPUnit 8
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 84d9e722d87671143c63d82c0d184c6706e34541
https://github.com/phpmyadmin/phpmyadmin/commit/84d9e722d87671143c63d82c0d1…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M test/selenium/Database/QueryByExampleTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: d9a57cab32b34f33a3ccff33aa3057c20187d1be
https://github.com/phpmyadmin/phpmyadmin/commit/d9a57cab32b34f33a3ccff33aa3…
Author: Pörös Dávid <davidporos92(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Add iconv to composer.json as requirement (#14645)
Signed-off-by: Pörös Dávid <davidporos92(a)gmail.com>
Commit: d4617e6cc75075d011b4f83b158255f952e88f58
https://github.com/phpmyadmin/phpmyadmin/commit/d4617e6cc75075d011b4f83b158…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Remove ext-iconv as suggested package
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 02c16b0accaef4a42473de005304c641c05f2245
https://github.com/phpmyadmin/phpmyadmin/commit/02c16b0accaef4a42473de00530…
Author: Rob Ratcliffe <rlr(a)tcliffe.codes>
Date: 2019-02-24 (Sun, 02 February 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M setup/frames/config.inc.php
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Removing inline styles from php files and adding class to css
Closes #14696
Signed-off-by: Rob Ratcliffe <rlr(a)tcliffe.codes>
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: e149a6188f53c7d40103a420f7dbaf2f364f1c00
https://github.com/phpmyadmin/phpmyadmin/commit/e149a6188f53c7d40103a420f7d…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-25 (Mon, 02 February 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Server/Status/QueriesController.php
A templates/server/status/queries/index.twig
A test/classes/Controllers/Server/Status/QueriesControllerTest.php
M server_status_queries.php
D libraries/classes/Server/Status/Queries.php
D test/classes/Server/Status/QueriesTest.php
Log Message:
-----------
Create Server\Status\QueriesController
Extracts server_status_queries.php and Server\Status\Queries logic to
the controller.
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 2074be7eab5dfc0ae0557d2407aeb5c48b390ae2
https://github.com/phpmyadmin/phpmyadmin/commit/2074be7eab5dfc0ae0557d2407a…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-25 (Mon, 02 February 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Server/Status/VariablesController.php
A templates/server/status/variables/index.twig
A test/classes/Controllers/Server/Status/VariablesControllerTest.php
M libraries/classes/Twig/UtilExtension.php
M server_status_variables.php
D libraries/classes/Server/Status/Variables.php
D test/classes/Server/Status/VariablesTest.php
Log Message:
-----------
Create Server\Status\VariablesController
Extracts server_status_variables.php and Server\Status\Variables logic
to the controller.
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 3ac708ab326d8091a6256d6c2f26ca5c86403312
https://github.com/phpmyadmin/phpmyadmin/commit/3ac708ab326d8091a6256d6c2f2…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-25 (Mon, 02 February 2019) -03:00
Changed paths:
M libraries/classes/Server/Status/Data.php
D test/classes/Server/Status/DataTest.php
Log Message:
-----------
Remove PhpMyAdmin\Server\Status\Data::getMenuHtml()
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 7c828f73272c5bf0a39c7099568a2d6dff89302f
https://github.com/phpmyadmin/phpmyadmin/commit/7c828f73272c5bf0a39c7099568…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-25 (Mon, 02 February 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Server/Status/MonitorController.php
M libraries/classes/Controllers/Server/Status/ProcessesController.php
M libraries/classes/Server/Status/Data.php
M templates/server/status/monitor/index.twig
M templates/server/status/processes/index.twig
Log Message:
-----------
Remove PhpMyAdmin\Server\Status\Data::getHtmlForRefreshList()
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 9d12039264ac4489fda7b1ac30742cdb4a93329e
https://github.com/phpmyadmin/phpmyadmin/commit/9d12039264ac4489fda7b1ac307…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-25 (Mon, 02 February 2019) -03:00
Changed paths:
M test/classes/Controllers/Server/Status/ProcessesControllerTest.php
Log Message:
-----------
Fix ProcessesControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 37ee6792511d9c6c8a41d671210981ff3300b3a9
https://github.com/phpmyadmin/phpmyadmin/commit/37ee6792511d9c6c8a41d671210…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-02-26 (Tue, 02 February 2019) +01:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.0% (3282 of 3314 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
Commit: 3d43286c1bacc197dfb955242e4712248611777e
https://github.com/phpmyadmin/phpmyadmin/commit/3d43286c1bacc197dfb955242e4…
Author: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Date: 2019-02-27 (Wed, 02 February 2019) +05:30
Changed paths:
M js/server_status_monitor.js
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Removed inline styles from js/server_status_monitor
Refer:https://github.com/phpmyadmin/phpmyadmin/issues/12262
Signed-off-by: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Commit: d5a669cf95f960bf4a752e4c2d13421914630d0f
https://github.com/phpmyadmin/phpmyadmin/commit/d5a669cf95f960bf4a752e4c2d1…
Author: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Date: 2019-02-27 (Wed, 02 February 2019) +05:30
Changed paths:
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Space fixes
Signed-off-by: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Commit: 87bf7c397f4513a17b3bff9dc643f7442367146b
https://github.com/phpmyadmin/phpmyadmin/commit/87bf7c397f4513a17b3bff9dc64…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
M ChangeLog
M js/db_multi_table_query.js
M js/messages.php
M libraries/classes/Menu.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: c74f124bf926c2dc0333bc13085484104b01a0aa
https://github.com/phpmyadmin/phpmyadmin/commit/c74f124bf926c2dc0333bc13085…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
M js/console.js
Log Message:
-----------
Merge pull request #14726 from Bakke/feature/console-hotkeys
Console: ctrl+l clear line and ctrl+u clear console
Commit: d050a157ecce55fb929e2c94c9a5da0f8fc016c6
https://github.com/phpmyadmin/phpmyadmin/commit/d050a157ecce55fb929e2c94c9a…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14725
[ci skip]
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 75af893e88e3c61c6d2b3aac7fc371f48c8aff9e
https://github.com/phpmyadmin/phpmyadmin/commit/75af893e88e3c61c6d2b3aac7fc…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
A po/en_US(a)rude.po
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 1f157d25a61d4eb956c85bd20d8c4969753f7ef0
https://github.com/phpmyadmin/phpmyadmin/commit/1f157d25a61d4eb956c85bd20d8…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/en_US(a)rude.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 872f254aa66a11d8e17b1a89ae26addab50666f3
https://github.com/phpmyadmin/phpmyadmin/commit/872f254aa66a11d8e17b1a89ae2…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) +01:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.0% (3282 of 3314 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
Commit: eec350bfe0f317dab12cc7fae580f629948f191f
https://github.com/phpmyadmin/phpmyadmin/commit/eec350bfe0f317dab12cc7fae58…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
Log Message:
-----------
Merge remote-tracking branch 'weblate/master'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: f22039894f3e9da6e49769e57cd2d6795f8c4d8c
https://github.com/phpmyadmin/phpmyadmin/commit/f22039894f3e9da6e49769e57cd…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.0% (3282 of 3314 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
(cherry picked from commit 872f254aa66a11d8e17b1a89ae26addab50666f3)
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 0953af3e80200e7ed6816aab3334e785680b8e11
https://github.com/phpmyadmin/phpmyadmin/commit/0953af3e80200e7ed6816aab333…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-28 (Thu, 02 February 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3313 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 4c93203904038aceb52fea86cf24465ec4a55aa5
https://github.com/phpmyadmin/phpmyadmin/commit/4c93203904038aceb52fea86cf2…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-02-27 (Wed, 02 February 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/Controller.php
A libraries/classes/Controllers/Table/Controller.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/IndexesController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/StructureController.php
D libraries/classes/Controllers/DatabaseController.php
D libraries/classes/Controllers/TableController.php
Log Message:
-----------
Rename DatabaseController and TableController
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: bccf73d6eda38c2db257611c632e96d11d0d78aa
https://github.com/phpmyadmin/phpmyadmin/commit/bccf73d6eda38c2db257611c632…
Author: Kartik Kathuria <kathuriakartik0(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) +05:30
Changed paths:
M js/export.js
Log Message:
-----------
charset as windows-1252 when format is MS Excel
Signed-off-by: Kartik Kathuria <kathuriakartik0(a)gmail.com>
Commit: e22a943ef5c090ec2e34fe4752cedee9aa6b860b
https://github.com/phpmyadmin/phpmyadmin/commit/e22a943ef5c090ec2e34fe4752c…
Author: Kartik Kathuria <kathuriakartik0(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) +05:30
Changed paths:
M js/export.js
Log Message:
-----------
Removed Trailing Whitespace
Signed-off-by: Kartik Kathuria <kathuriakartik0(a)gmail.com>
Commit: 382da0378535bed509859e8ad257e85ac50d4248
https://github.com/phpmyadmin/phpmyadmin/commit/382da0378535bed509859e8ad25…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-01 (Fri, 03 March 2019) +01:00
Changed paths:
M js/export.js
Log Message:
-----------
Fix trailing spaces and code style
Fix trailing spaces and code style
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4b855c9a47e99bc1a070ff9183626da5a15b913c
https://github.com/phpmyadmin/phpmyadmin/commit/4b855c9a47e99bc1a070ff91836…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-01 (Fri, 03 March 2019) +01:00
Changed paths:
M js/export.js
Log Message:
-----------
Fix code style
Fix code style
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: cfeb5db5d8d32d26cdb1c8eac9d61db5740e8240
https://github.com/phpmyadmin/phpmyadmin/commit/cfeb5db5d8d32d26cdb1c8eac9d…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-03-01 (Fri, 03 March 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3313 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 42e1a333a39fa7bcbcae519ef8910e2291b556f8
https://github.com/phpmyadmin/phpmyadmin/commit/42e1a333a39fa7bcbcae519ef89…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M doc/config.rst
M js/indexes.js
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Plugins/Export/ExportJson.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c85283a4f3b7d0bb251b64d847dadfd62b5d44a9
https://github.com/phpmyadmin/phpmyadmin/commit/c85283a4f3b7d0bb251b64d847d…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3313 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: 35fafd773a3aae1633ac3ad5c6dc3d81136f2456
https://github.com/phpmyadmin/phpmyadmin/commit/35fafd773a3aae1633ac3ad5c6d…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-01 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/DataDictionaryController.php
A templates/database/data_dictionary/index.twig
M db_datadict.php
M libraries/classes/Util.php
M templates/database/structure/print_view_data_dictionary_link.twig
Log Message:
-----------
Create Controllers\Database\DataDictionaryController
- Extracts db_datadict.php logic to the controller
- Extracts HTML to database/data_dictionary/index template
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 4ac4cd44aa3c2d6d98ad0305599302a71b5257ad
https://github.com/phpmyadmin/phpmyadmin/commit/4ac4cd44aa3c2d6d98ad0305599…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3313 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 4fac0c4e7f8f32ba8f261980c8c47b329bdbad8a
https://github.com/phpmyadmin/phpmyadmin/commit/4fac0c4e7f8f32ba8f261980c8c…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3313 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: d93bda07858499d627999c82d1f2b60eef0532a6
https://github.com/phpmyadmin/phpmyadmin/commit/d93bda07858499d627999c82d1f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M js/export.js
Log Message:
-----------
Fix: #14837 - Use charset 'windows-1252' when format is MS Excel
Fixes: #14837
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9a12b3175981cc1023ea9161446753dd7bfe25c2
https://github.com/phpmyadmin/phpmyadmin/commit/9a12b3175981cc1023ea9161446…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14837
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f3d034c45a75ef14f4857722ef66c4d9de93d8c8
https://github.com/phpmyadmin/phpmyadmin/commit/f3d034c45a75ef14f4857722ef6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/indexes.js
M libraries/classes/Message.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6845dc41e99430183fb03c87be82db46e1d679b3
https://github.com/phpmyadmin/phpmyadmin/commit/6845dc41e99430183fb03c87be8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M libraries/classes/Util.php
Log Message:
-----------
Avoid duplicate test
Closes: https://github.com/phpmyadmin/phpmyadmin/pull/14874
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c112ba4da8c5235f67fbf35cf8fca74f9a56f9a0
https://github.com/phpmyadmin/phpmyadmin/commit/c112ba4da8c5235f67fbf35cf8f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/sql.js
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
Closes: https://github.com/phpmyadmin/phpmyadmin/pull/14876
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f0374250d3c8b238adecc9f6872df0fff33e2d15
https://github.com/phpmyadmin/phpmyadmin/commit/f0374250d3c8b238adecc9f6872…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/makegrid.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c3e79158b260811b519aee74f2f297941712c986
https://github.com/phpmyadmin/phpmyadmin/commit/c3e79158b260811b519aee74f2f…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) -05:00
Changed paths:
D po/en_US(a)rude.po
Log Message:
-----------
Fix merge conflicts.
Remove en_US(a)rude.po. This seems to have been created by mistake.
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 12f61ded1ceaf489be692819de6ec3fb6c5d1b0c
https://github.com/phpmyadmin/phpmyadmin/commit/12f61ded1ceaf489be692819de6…
Author: ssantos <ssantos(a)web.de>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 99.9% (3312 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: e784064b94d151e67e1b19ea3d30557a907d4ad7
https://github.com/phpmyadmin/phpmyadmin/commit/e784064b94d151e67e1b19ea3d3…
Author: André A. Peixoto <alfonso.peixoto(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 99.9% (3312 of 3313 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: André A. Peixoto <alfonso.peixoto(a)gmail.com>
Commit: ec12e5559d81de9759001cf3b19f34e13c0e6fa0
https://github.com/phpmyadmin/phpmyadmin/commit/ec12e5559d81de9759001cf3b19…
Author: Hosted Weblate <hosted(a)weblate.org>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Merge branch 'origin/master' into Weblate.
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL:
Commit: 90878630c9b43a2ef340f2a0e295451cded4c7cb
https://github.com/phpmyadmin/phpmyadmin/commit/90878630c9b43a2ef340f2a0e29…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) -03:00
Changed paths:
M templates/server/status/monitor/index.twig
M templates/server/status/processes/index.twig
Log Message:
-----------
Fix failing tests in translations
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 714676be54a389327b21ff084bcdac45038a8951
https://github.com/phpmyadmin/phpmyadmin/commit/714676be54a389327b21ff084bc…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 1ee4074de8af1f435862950dbb0423ba435170e7
https://github.com/phpmyadmin/phpmyadmin/commit/1ee4074de8af1f435862950dbb0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/ZipExtension.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0d435e6e3f13cfb0e385773689af6627346a8cdf
https://github.com/phpmyadmin/phpmyadmin/commit/0d435e6e3f13cfb0e385773689a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-02 (Sat, 03 March 2019) +01:00
Changed paths:
M js/makegrid.js
M libraries/classes/Export.php
Log Message:
-----------
Fix lint error and missed merge
See: 348f1fbd2e93d8579f84d35329a48d10e27d600d
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b0a777de5020f7e2c23ee9aa43d1ab1df956631c
https://github.com/phpmyadmin/phpmyadmin/commit/b0a777de5020f7e2c23ee9aa43d…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Export.php
Log Message:
-----------
Fix coding standard error on PhpMyAdmin\Export
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: b4f4ca17502b5bca311573469d92d27586673ee1
https://github.com/phpmyadmin/phpmyadmin/commit/b4f4ca17502b5bca311573469d9…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-02 (Sat, 03 March 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: ed35a476fefab55d451d272fec6b5d9e5aabcd93
https://github.com/phpmyadmin/phpmyadmin/commit/ed35a476fefab55d451d272fec6…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-03-03 (Sun, 03 March 2019) +01:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: a5e13d6ded36f74beed047fcd1c1e92230f1c0c8
https://github.com/phpmyadmin/phpmyadmin/commit/a5e13d6ded36f74beed047fcd1c…
Author: Giovanni Sora <g.sora(a)tiscali.it>
Date: 2019-03-03 (Sun, 03 March 2019) +01:00
Changed paths:
M po/ia.po
Log Message:
-----------
Translated using Weblate (Interlingua)
Currently translated at 75.4% (2499 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ia/
Signed-off-by: Giovanni Sora <g.sora(a)tiscali.it>
Commit: e7007606858f5f4ff0aa8a0e303482f3f62ba12c
https://github.com/phpmyadmin/phpmyadmin/commit/e7007606858f5f4ff0aa8a0e303…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-03 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/database/structure/index.twig
M db_structure.php
M libraries/classes/Controllers/Database/StructureController.php
M test/classes/Controllers/Database/StructureControllerTest.php
D templates/database/structure/print_view_data_dictionary_link.twig
Log Message:
-----------
Refactor Controllers\Database\StructureController
Move request and response handling to db_structure.php
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: e15f45d880346695cc242380a9126f79afd1002a
https://github.com/phpmyadmin/phpmyadmin/commit/e15f45d880346695cc242380a91…
Author: dingo thirteen <dingo13(a)gmail.com>
Date: 2019-03-04 (Mon, 03 March 2019) +01:00
Changed paths:
M po/nl.po
Log Message:
-----------
Translated using Weblate (Dutch)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nl/
Signed-off-by: dingo thirteen <dingo13(a)gmail.com>
Commit: a385942c61a22663c87a25bf6568e6d7bea6a17f
https://github.com/phpmyadmin/phpmyadmin/commit/a385942c61a22663c87a25bf656…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-03-04 (Mon, 03 March 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: b313b49c358e329a14ab550ae4475a35c3269725
https://github.com/phpmyadmin/phpmyadmin/commit/b313b49c358e329a14ab550ae44…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-03-04 (Mon, 03 March 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: e571b1bc490141f3c5499438f29d6cf98f1edd49
https://github.com/phpmyadmin/phpmyadmin/commit/e571b1bc490141f3c5499438f29…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-03-04 (Mon, 03 March 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 9ec72434496dce59bdac73a252433d197f74a687
https://github.com/phpmyadmin/phpmyadmin/commit/9ec72434496dce59bdac73a2524…
Author: Staz_The_Box <stazthebox(a)gmail.com>
Date: 2019-03-04 (Mon, 03 March 2019) -03:00
Changed paths:
M js/navigation.js
Log Message:
-----------
Fixed the loading symbol not appearing when refreshing the navigation. (#14783)
Fixes #14763
Signed-off-by: Staz Drzyk <staz(a)staz.io>
Commit: c74a188f0ac888c7adde3d252f2123e51b2075b0
https://github.com/phpmyadmin/phpmyadmin/commit/c74a188f0ac888c7adde3d252f2…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-04 (Mon, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M js/navigation.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 50ec2c0e2b889b7357e5ae04e42ca1ea71c9a520
https://github.com/phpmyadmin/phpmyadmin/commit/50ec2c0e2b889b7357e5ae04e42…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-05 (Tue, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/CentralColumnsController.php
M db_central_columns.php
M libraries/classes/CentralColumns.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/mult_submits.inc.php
M test/classes/CentralColumnsTest.php
Log Message:
-----------
Create Controllers\Database\CentralColumnsController
Moves db_central_columns.php logic to the controller
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: f8bc1194b276b7d3bc0900eee54e9eacf8b20bdd
https://github.com/phpmyadmin/phpmyadmin/commit/f8bc1194b276b7d3bc0900eee54…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2019-03-05 (Tue, 03 March 2019) +01:00
Changed paths:
M doc/setup.rst
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: feca78456704cd8dd3d31ec78c8f7c29e185b8e5
https://github.com/phpmyadmin/phpmyadmin/commit/feca78456704cd8dd3d31ec78c8…
Author: Dhyey Thakore <11143604+dhyey35(a)users.noreply.github.com>
Date: 2019-03-05 (Tue, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Sql.php
Log Message:
-----------
Fix #14607 - Count rows only if needed (#14821)
Signed-off-by: Dhyey Thakore <dhyey35(a)gmail.com>
Commit: 0556625f2db7a156cbc3ea746941071651fa9556
https://github.com/phpmyadmin/phpmyadmin/commit/0556625f2db7a156cbc3ea74694…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-05 (Tue, 03 March 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 8d6596ea9249eb20085f295954271661206de4cb
https://github.com/phpmyadmin/phpmyadmin/commit/8d6596ea9249eb20085f2959542…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-05 (Tue, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Twig/UtilExtension.php
M templates/table/structure/display_structure.twig
Log Message:
-----------
Fix error on table structure
Fixes #15000
Introduced by 35fafd773a3aae1633ac3ad5c6dc3d81136f2456
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 06cda56298a4d4c1198f420585545769ae2db90e
https://github.com/phpmyadmin/phpmyadmin/commit/06cda56298a4d4c1198f4205855…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-06 (Wed, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/designer/move.js
M libraries/classes/Display/ChangePassword.php
Log Message:
-----------
Merge branch 'QA_4_8'
Closes: https://github.com/phpmyadmin/phpmyadmin/pull/14964
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9cd5db0a701d1c2642fd9cc88dcbff57207294dc
https://github.com/phpmyadmin/phpmyadmin/commit/9cd5db0a701d1c2642fd9cc88dc…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-06 (Wed, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M doc/two_factor.rst
M view_create.php
Log Message:
-----------
Merge branch 'QA_4_8'
Closes: https://github.com/phpmyadmin/phpmyadmin/pull/14998
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d2d65d5a7b079e7c4f2b86ca163d29d55fa2bd14
https://github.com/phpmyadmin/phpmyadmin/commit/d2d65d5a7b079e7c4f2b86ca163…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-06 (Wed, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Setup/AbstractController.php
A libraries/classes/Controllers/Setup/ConfigController.php
A libraries/classes/Controllers/Setup/FormController.php
A libraries/classes/Controllers/Setup/HomeController.php
A libraries/classes/Controllers/Setup/ServersController.php
A templates/setup/base.twig
A templates/setup/config/index.twig
A templates/setup/form/index.twig
A templates/setup/home/index.twig
A templates/setup/servers/index.twig
M setup/index.php
M setup/lib/Index.php
M test/classes/Setup/IndexTest.php
D setup/frames/config.inc.php
D setup/frames/form.inc.php
D setup/frames/index.inc.php
D setup/frames/menu.inc.php
D setup/frames/servers.inc.php
Log Message:
-----------
Create controllers for setup pages
- Create PhpMyAdmin\Controllers\Setup\HomeController
- Create PhpMyAdmin\Controllers\Setup\ConfigController
- Create PhpMyAdmin\Controllers\Setup\FormController
- Create PhpMyAdmin\Controllers\Setup\ServersController
- Remove setup/frames directory
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 2b33194dcc6f743e25b03ba2acb38c506c0c253b
https://github.com/phpmyadmin/phpmyadmin/commit/2b33194dcc6f743e25b03ba2acb…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-06 (Wed, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Setup/ConfigGenerator.php
A libraries/classes/Setup/FormProcessing.php
A libraries/classes/Setup/Index.php
M composer.json
M setup/config.php
D setup/lib/ConfigGenerator.php
D setup/lib/FormProcessing.php
D setup/lib/Index.php
Log Message:
-----------
Move setup/lib classes to libraries/classes/Setup
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 21b1ac53c81aa66679c6caf5fcd388638e140956
https://github.com/phpmyadmin/phpmyadmin/commit/21b1ac53c81aa66679c6caf5fcd…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-06 (Wed, 03 March 2019) -03:00
Changed paths:
M setup/lib/common.inc.php
Log Message:
-----------
Remove unnecessary require
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 26963f2f2c8fe53f47548b4e6e490cf6bdd4b7fe
https://github.com/phpmyadmin/phpmyadmin/commit/26963f2f2c8fe53f47548b4e6e4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-07 (Thu, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/functions.js
M libraries/classes/Bookmark.php
M libraries/classes/Util.php
M templates/view_create.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ae7db628238f0cb54341a7fdb8e3b3f94d45bf87
https://github.com/phpmyadmin/phpmyadmin/commit/ae7db628238f0cb54341a7fdb8e…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-07 (Thu, 03 March 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiExtension.php
Log Message:
-----------
Fix TypeError on insert page when there are invisible columns
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: bdbf95f6748c707596b543dc2ae6afbe6cc89a8f
https://github.com/phpmyadmin/phpmyadmin/commit/bdbf95f6748c707596b543dc2ae…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-07 (Thu, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/AjaxController.php
M ajax.php
Log Message:
-----------
Create PhpMyAdmin\Controllers\AjaxController
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: f36d068262e1916ade7799e21b13c905d1fe1402
https://github.com/phpmyadmin/phpmyadmin/commit/f36d068262e1916ade7799e21b1…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-08 (Fri, 03 March 2019) -03:00
Changed paths:
A phpstan.neon.dist
M .gitignore
D phpstan.neon
Log Message:
-----------
Rename phpstan.neon to phpstan.neon.dist
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: afebaad5f61cbf3c526806ff71a30912f5abe970
https://github.com/phpmyadmin/phpmyadmin/commit/afebaad5f61cbf3c526806ff71a…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-08 (Fri, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Relation.php
Log Message:
-----------
Fix bug when browsing foreign values
Introduced by #14741
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: 30484fa5a52572e22892670fa446cc058f71d782
https://github.com/phpmyadmin/phpmyadmin/commit/30484fa5a52572e22892670fa44…
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: 2019-03-08 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/BrowseForeignersController.php
M browse_foreigners.php
Log Message:
-----------
Create BrowseForeignersController
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Commit: be809a389639d3f9d4a91ceeab7ecedb96dd6082
https://github.com/phpmyadmin/phpmyadmin/commit/be809a389639d3f9d4a91ceeab7…
Author: J.M. Rütter <jm(a)jublo.net>
Date: 2019-03-10 (Sun, 03 March 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: J.M. Rütter <jm(a)jublo.net>
Commit: a868f74d7a3f51fc48c7716000f6b6a8db57b951
https://github.com/phpmyadmin/phpmyadmin/commit/a868f74d7a3f51fc48c7716000f…
Author: Stefano Martinelli <stefano.ste.martinelli(a)gmail.com>
Date: 2019-03-10 (Sun, 03 March 2019) +01:00
Changed paths:
M po/it.po
Log Message:
-----------
Translated using Weblate (Italian)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/it/
Signed-off-by: Stefano Martinelli <stefano.ste.martinelli(a)gmail.com>
Commit: 9b5a96c4e8b3b05022402aa8a3142b4fe1d56344
https://github.com/phpmyadmin/phpmyadmin/commit/9b5a96c4e8b3b05022402aa8a31…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-10 (Sun, 03 March 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b5fda752b6f34dde6a1cc798d7dc5d676934b696
https://github.com/phpmyadmin/phpmyadmin/commit/b5fda752b6f34dde6a1cc798d7d…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-03-11 (Mon, 03 March 2019) +01:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3316 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: 0305c0a2c2df69d887a4a39ade60eb1b6d615608
https://github.com/phpmyadmin/phpmyadmin/commit/0305c0a2c2df69d887a4a39ade6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-11 (Mon, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/AbstractController.php
M libraries/classes/Controllers/Database/CentralColumnsController.php
M libraries/classes/Controllers/Database/DataDictionaryController.php
M libraries/classes/Controllers/Database/StructureController.php
D libraries/classes/Controllers/Database/Controller.php
Log Message:
-----------
Rename Database\Controller to Database\AbstractController
Rename PhpMyAdmin\Controllers\Database\Controller to PhpMyAdmin\Controllers\Database\AbstractController
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5ea75f41449d79b6c07a0db50c53441813509205
https://github.com/phpmyadmin/phpmyadmin/commit/5ea75f41449d79b6c07a0db50c5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-11 (Mon, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Table/AbstractController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/IndexesController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/StructureController.php
D libraries/classes/Controllers/Table/Controller.php
Log Message:
-----------
Rename Table\Controller to Table\AbstractController
Rename PhpMyAdmin\Controllers\Table\Controller to
PhpMyAdmin\Controllers\Table\AbstractController.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 35e6b43ba810325870634937774d2be5625b2230
https://github.com/phpmyadmin/phpmyadmin/commit/35e6b43ba810325870634937774…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-11 (Mon, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Server/Status/AbstractController.php
M libraries/classes/Controllers/Server/Status/AdvisorController.php
M libraries/classes/Controllers/Server/Status/MonitorController.php
M libraries/classes/Controllers/Server/Status/ProcessesController.php
M libraries/classes/Controllers/Server/Status/QueriesController.php
M libraries/classes/Controllers/Server/Status/StatusController.php
M libraries/classes/Controllers/Server/Status/VariablesController.php
D libraries/classes/Controllers/Server/Status/Controller.php
Log Message:
-----------
Rename Status\Controller to Status\AbstractController
Rename PhpMyAdmin\Controllers\Server\Status\Controller to
PhpMyAdmin\Controllers\Server\Status\AbstractController.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c9371d3a91a84b206ef2a9d31b6d516fe969863b
https://github.com/phpmyadmin/phpmyadmin/commit/c9371d3a91a84b206ef2a9d31b6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-11 (Mon, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/AbstractController.php
M libraries/classes/Controllers/AjaxController.php
M libraries/classes/Controllers/BrowseForeignersController.php
M libraries/classes/Controllers/Database/AbstractController.php
M libraries/classes/Controllers/Server/BinlogController.php
M libraries/classes/Controllers/Server/CollationsController.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Controllers/Server/EnginesController.php
M libraries/classes/Controllers/Server/PluginsController.php
M libraries/classes/Controllers/Server/Status/AbstractController.php
M libraries/classes/Controllers/Server/VariablesController.php
M libraries/classes/Controllers/Table/AbstractController.php
M libraries/classes/Controllers/TransformationOverviewController.php
D libraries/classes/Controllers/Controller.php
Log Message:
-----------
Rename Controller to AbstractController
Rename PhpMyAdmin\Controllers\Controller to
PhpMyAdmin\Controllers\AbstractController.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 28dc7c2680ded911770641a394f22f9808f753a2
https://github.com/phpmyadmin/phpmyadmin/commit/28dc7c2680ded911770641a394f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-11 (Mon, 03 March 2019) -03:00
Changed paths:
M libraries/classes/RelationCleanup.php
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Fix type error in setup pages
DatabaseInterface can be null sometimes
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 91d38408622d2a06c52173e7c54236d2dbc25aea
https://github.com/phpmyadmin/phpmyadmin/commit/91d38408622d2a06c52173e7c54…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-03-13 (Wed, 03 March 2019) +01:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.6% (3304 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
Commit: 3570b80c4b0bb74b5ae9dcdd94f1464b97d75bf3
https://github.com/phpmyadmin/phpmyadmin/commit/3570b80c4b0bb74b5ae9dcdd94f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-13 (Wed, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Core.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e24467d2d8eb7802f38dc2b5eed19c3ac0556702
https://github.com/phpmyadmin/phpmyadmin/commit/e24467d2d8eb7802f38dc2b5eed…
Author: AghaSaad04 <36513474+AghaSaad04(a)users.noreply.github.com>
Date: 2019-03-14 (Thu, 03 March 2019) +01:00
Changed paths:
M doc/vendors.rst
Log Message:
-----------
Minor grammatical, punctuation bugs (#15021)
- Minor grammatical, punctuation bugs
- Update vendors.rst, removed some grammatical and punctuation errors from "vendors.rst" file for better understanding
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Signed-off-by: Agha Saad Fraz <afraz.bese16seecs(a)seecs.edu.pk>
Commit: faeea62b014b890ee9321c3e90bfd9e72447d692
https://github.com/phpmyadmin/phpmyadmin/commit/faeea62b014b890ee9321c3e90b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-15 (Fri, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M gis_data_editor.php
M js/gis_data_editor.js
M js/tbl_gis_visualization.js
M templates/gis_data_editor_form.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ddb29d57b42d65036c15e2089ffbc6ebdd136fcb
https://github.com/phpmyadmin/phpmyadmin/commit/ddb29d57b42d65036c15e2089ff…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-15 (Fri, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Setup/FormProcessing.php
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: ef7c18b6dff2240d63e9077bc61ec33356cafe19
https://github.com/phpmyadmin/phpmyadmin/commit/ef7c18b6dff2240d63e9077bc61…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-15 (Fri, 03 March 2019) -03:00
Changed paths:
M scripts/remove-incomplete-mo
Log Message:
-----------
Remove PHP closing tag from libraries/language_stats.inc.php
Use short syntax for the array
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cedfe813b9f972e19f395cfc832a3cf41c349144
https://github.com/phpmyadmin/phpmyadmin/commit/cedfe813b9f972e19f395cfc832…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-15 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/HomeController.php
A templates/home/index.twig
M index.php
M libraries/classes/Server/Select.php
M libraries/classes/Twig/CoreExtension.php
M libraries/classes/Twig/UrlExtension.php
M libraries/classes/Twig/UtilExtension.php
M phpstan.neon.dist
Log Message:
-----------
Create PhpMyAdmin\Controllers\HomeController
Extracts HTML from index.php to home/index template
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8c428dd63d7e3221714d6ae5a9d5463f6514f496
https://github.com/phpmyadmin/phpmyadmin/commit/8c428dd63d7e3221714d6ae5a9d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-15 (Fri, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M templates/home/index.twig
Log Message:
-----------
Move 'More settings' link from 'Appearance settings' to 'General settings'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 504fe5d83ae34a2ccec63053e9cd3bf38490e6e6
https://github.com/phpmyadmin/phpmyadmin/commit/504fe5d83ae34a2ccec63053e9c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-16 (Sat, 03 March 2019) +01:00
Changed paths:
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fix style issues
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5e6fdf2299d45ef947274a046a16044902acde82
https://github.com/phpmyadmin/phpmyadmin/commit/5e6fdf2299d45ef947274a046a1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-16 (Sat, 03 March 2019) +01:00
Changed paths:
M js/server_status_monitor.js
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Removed inline styles from js/server_status_monitor
#12262
Closes: #14980
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6108b955d8d864b7c608fc323cf967eacfb1e59e
https://github.com/phpmyadmin/phpmyadmin/commit/6108b955d8d864b7c608fc323cf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-16 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f3c94b7c9248c484c80752c2f2fbc033d5a5bf17
https://github.com/phpmyadmin/phpmyadmin/commit/f3c94b7c9248c484c80752c2f2f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-16 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/error_report.js
M js/functions.js
M js/messages.php
M libraries/common.inc.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4b6120189910c985cd01712a4a605d5c1fe1859f
https://github.com/phpmyadmin/phpmyadmin/commit/4b6120189910c985cd01712a4a6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-16 (Sat, 03 March 2019) -03:00
Changed paths:
M index.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Core.php
M libraries/classes/Display/GitRevision.php
M templates/home/index.twig
Log Message:
-----------
Refactor index.php
Extracts actions to controller
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7033abc1392094323eca123e8356f7cf3fb821b3
https://github.com/phpmyadmin/phpmyadmin/commit/7033abc1392094323eca123e835…
Author: ssantos <ssantos(a)web.de>
Date: 2019-03-17 (Sun, 03 March 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 71.1% (2359 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 33e2f813e27ec99423877a6d88646ec22e58ca57
https://github.com/phpmyadmin/phpmyadmin/commit/33e2f813e27ec99423877a6d886…
Author: Alvaro Enrique Ruano <alvaro.ruano90(a)outlook.com>
Date: 2019-03-17 (Sun, 03 March 2019) +01:00
Changed paths:
M po/es.po
Log Message:
-----------
Translated using Weblate (Spanish)
Currently translated at 96.3% (3194 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/es/
Signed-off-by: Alvaro Enrique Ruano <alvaro.ruano90(a)outlook.com>
Commit: e585fed31296bb66e18537a3b5be51b4dfa07f09
https://github.com/phpmyadmin/phpmyadmin/commit/e585fed31296bb66e18537a3b5b…
Author: ssantos <ssantos(a)web.de>
Date: 2019-03-18 (Mon, 03 March 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 77.6% (2572 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 2910b583aab6f3cb269b0c8ed72ecf5e9a8247bb
https://github.com/phpmyadmin/phpmyadmin/commit/2910b583aab6f3cb269b0c8ed72…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-18 (Mon, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M templates/home/index.twig
Log Message:
-----------
Merge pull request #15030 from mauriciofauth/more-settings
Move 'More settings' link from 'Appearance settings' to 'General settings'
Commit: 4001839460a2e8daad7bc8d60cdefa487e5b6f24
https://github.com/phpmyadmin/phpmyadmin/commit/4001839460a2e8daad7bc8d60cd…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-18 (Mon, 03 March 2019) -03:00
Changed paths:
M composer.json
M libraries/classes/DatabaseInterface.php
M libraries/classes/Display/Results.php
M libraries/classes/Plugins.php
M libraries/tbl_columns_definition_form.inc.php
M phpstan.neon.dist
M server_privileges.php
Log Message:
-----------
Upgrade PHPStan to v0.11.4
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1f7e7cee92f620ac8ad2b8c230a6b6305d072c11
https://github.com/phpmyadmin/phpmyadmin/commit/1f7e7cee92f620ac8ad2b8c230a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-19 (Tue, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Config/Validator.php
M libraries/classes/Plugins/Import/Upload/UploadProgress.php
M phpstan.neon.dist
Log Message:
-----------
Fix some PHPStan errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e575d4a739c081643cbca147bd0d52783c5d3945
https://github.com/phpmyadmin/phpmyadmin/commit/e575d4a739c081643cbca147bd0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-19 (Tue, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/StructureController.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 21e2ca4c4cb9d9a001119e47e4ab8df8b30de078
https://github.com/phpmyadmin/phpmyadmin/commit/21e2ca4c4cb9d9a001119e47e4a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-19 (Tue, 03 March 2019) -03:00
Changed paths:
M libraries/classes/CentralColumns.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/IpAllowDeny.php
M libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/SubstringTransformationsPlugin.php
M libraries/classes/Scripts.php
M libraries/classes/SysInfoLinux.php
M libraries/classes/SysInfoSunOS.php
M libraries/classes/Tracker.php
M libraries/classes/Util.php
M libraries/classes/VersionInformation.php
M phpstan.neon.dist
Log Message:
-----------
Fix some PHPStan and phpcs errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 525a4361621c7227030b70c2e894fef73860f879
https://github.com/phpmyadmin/phpmyadmin/commit/525a4361621c7227030b70c2e89…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-19 (Tue, 03 March 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Dbi/DbiExtension.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Plugins/ImportPlugin.php
M phpstan.neon.dist
M test/classes/Gis/GisGeomTestCase.php
Log Message:
-----------
Fix some PHPStan errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cdff5426d69e8b080fda13d448a9749012f7540f
https://github.com/phpmyadmin/phpmyadmin/commit/cdff5426d69e8b080fda13d448a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-19 (Tue, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 704f96fc31216154cccb77898a060a42faf71f59
https://github.com/phpmyadmin/phpmyadmin/commit/704f96fc31216154cccb77898a0…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-20 (Wed, 03 March 2019) -04:00
Changed paths:
M doc/two_factor.rst
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Config/Validator.php
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Fix merge conflicts
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: c16b39adbd9e1736de0e4678ebf4de97174cd5b2
https://github.com/phpmyadmin/phpmyadmin/commit/c16b39adbd9e1736de0e4678ebf…
Author: Alvaro Enrique Ruano <alvaro.ruano90(a)outlook.com>
Date: 2019-03-20 (Wed, 03 March 2019) +01:00
Changed paths:
M po/es.po
Log Message:
-----------
Translated using Weblate (Spanish)
Currently translated at 96.4% (3197 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/es/
Signed-off-by: Alvaro Enrique Ruano <alvaro.ruano90(a)outlook.com>
Commit: 26caa0236c129b38ef9da10a86d728383fa19bc5
https://github.com/phpmyadmin/phpmyadmin/commit/26caa0236c129b38ef9da10a86d…
Author: Hosted Weblate <hosted(a)weblate.org>
Date: 2019-03-20 (Wed, 03 March 2019) +01:00
Changed paths:
M po/es.po
Log Message:
-----------
Merge branch 'origin/master' into Weblate.
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL:
Commit: 81bacd5ba655cd7cd1277b0ac3609b7efc9af95d
https://github.com/phpmyadmin/phpmyadmin/commit/81bacd5ba655cd7cd1277b0ac36…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-20 (Wed, 03 March 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Ignore Composer platform requirements for PHP nightly
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 39c32d2fd21281ee67aaef4c80dc14d40325a112
https://github.com/phpmyadmin/phpmyadmin/commit/39c32d2fd21281ee67aaef4c80d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-20 (Wed, 03 March 2019) +01:00
Changed paths:
M js/vendor/codemirror/addon/hint/show-hint.js
M js/vendor/codemirror/addon/hint/sql-hint.js
M js/vendor/codemirror/addon/lint/lint.js
M js/vendor/codemirror/addon/runmode/runmode.js
M js/vendor/codemirror/lib/codemirror.js
M js/vendor/codemirror/mode/javascript/javascript.js
M js/vendor/codemirror/mode/sql/sql.js
M js/vendor/codemirror/mode/xml/xml.js
M package.json
Log Message:
-----------
Upgrade codemirror to v5.45.0
Previous update: 393204ccd0a0c1e0083782fa73a3803150a6415b (v5.37.0)
Fixes: #14475
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b46a4639b04afc3177ecc16ad7e5aecc0430b2c8
https://github.com/phpmyadmin/phpmyadmin/commit/b46a4639b04afc3177ecc16ad7e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-20 (Wed, 03 March 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 525326bd2551570b6ae34e0f39029f6dbe592745
https://github.com/phpmyadmin/phpmyadmin/commit/525326bd2551570b6ae34e0f390…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-20 (Wed, 03 March 2019) -03:00
Changed paths:
M yarn.lock
Log Message:
-----------
Update yarn.lock
Related to 39c32d2fd21281ee67aaef4c80dc14d40325a112
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f009dfdb4f72f9d9e4bddeb9bb92f5c3fb3866cb
https://github.com/phpmyadmin/phpmyadmin/commit/f009dfdb4f72f9d9e4bddeb9bb9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-21 (Thu, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Util.php
M view_create.php
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 76aecb1de4806781cdff47edae7f5a0361a9bd9e
https://github.com/phpmyadmin/phpmyadmin/commit/76aecb1de4806781cdff47edae7…
Author: aektos <ktosae(a)gmail.com>
Date: 2019-03-21 (Thu, 03 March 2019) +01:00
Changed paths:
A templates/prefs_manage.twig
A templates/prefs_manage_error.twig
M libraries/classes/Twig/MessageExtension.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/Twig/UtilExtension.php
M prefs_manage.php
Log Message:
-----------
Move HTML from prefs_manage to twig template and add some twig extension (issue #14801)
Signed-off-by: aektos <ktosae(a)gmail.com>
Commit: a9115725b2de649c73b75273600eecada7928703
https://github.com/phpmyadmin/phpmyadmin/commit/a9115725b2de649c73b75273600…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-22 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/EventsController.php
A libraries/classes/Controllers/Database/RoutinesController.php
A libraries/classes/Controllers/Database/TriggersController.php
M db_events.php
M db_routines.php
M db_triggers.php
M libraries/classes/Rte/Events.php
M libraries/classes/Rte/Export.php
M libraries/classes/Rte/Footer.php
M libraries/classes/Rte/General.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Rte/RteList.php
M libraries/classes/Rte/Triggers.php
M phpstan.neon.dist
D libraries/rte/rte_main.inc.php
Log Message:
-----------
Create database RTE controllers
- Create PhpMyAdmin\Controllers\Database\RoutinesController
- Create PhpMyAdmin\Controllers\Database\TriggersController
- Create PhpMyAdmin\Controllers\Database\EventsController
- Remove libraries/rte/rte_main.inc.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f1f109ac26c94795763b62185037c627228a0640
https://github.com/phpmyadmin/phpmyadmin/commit/f1f109ac26c94795763b6218503…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-22 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/MultiTableQueryController.php
M db_multi_table_query.php
Log Message:
-----------
Create Database\MultiTableQueryController
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: aa0796c7db4cdefad4da6f4dd76a30d80d273927
https://github.com/phpmyadmin/phpmyadmin/commit/aa0796c7db4cdefad4da6f4dd76…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-22 (Fri, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Config/SpecialSchemaLinks.php
M libraries/classes/Display/Results.php
M libraries/classes/Sanitize.php
M test/classes/Display/ResultsTest.php
D libraries/special_schema_links.inc.php
Log Message:
-----------
Move special_schema_links.inc.php to Config\SpecialSchemaLinks
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: aa5a18659bd33c3d04483465bbf1613394a49992
https://github.com/phpmyadmin/phpmyadmin/commit/aa5a18659bd33c3d04483465bbf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-23 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Sql.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b247fbedfe9ccfbcf20ca75451bd34eecea26a87
https://github.com/phpmyadmin/phpmyadmin/commit/b247fbedfe9ccfbcf20ca75451b…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-23 (Sat, 03 March 2019) -04:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
M templates/database/central_columns/main.twig
Log Message:
-----------
Fix typo
Partially fixes: #15015
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 683fcad837115058222a6cf0e559e59e2afbac10
https://github.com/phpmyadmin/phpmyadmin/commit/683fcad837115058222a6cf0e55…
Author: Agha Saad Fraz <agha.saad04(a)gmail.com>
Date: 2019-03-24 (Sun, 03 March 2019) +05:00
Changed paths:
M themes/original/scss/_common.scss
Log Message:
-----------
Fix login page layout of theme original
Signed-off-by: Agha Saad Fraz <agha.saad04(a)gmail.com>
I have fixed the login page layout of the theme original.
Commit: 4d9da964692b4fb647465073024a3f8475e5c7b3
https://github.com/phpmyadmin/phpmyadmin/commit/4d9da964692b4fb647465073024…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-23 (Sat, 03 March 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Database/SqlController.php
A libraries/classes/Controllers/Server/SqlController.php
A libraries/classes/Controllers/Table/SqlController.php
M db_sql.php
M libraries/tbl_common.inc.php
M server_sql.php
M tbl_sql.php
Log Message:
-----------
Create server, database and table SqlControllers
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7ecd5cb28f0c283822fb8ca01856341f094cdda4
https://github.com/phpmyadmin/phpmyadmin/commit/7ecd5cb28f0c283822fb8ca0185…
Author: Nitish Bahl <nitishbahl24(a)gmail.com>
Date: 2019-03-24 (Sun, 03 March 2019) +05:30
Changed paths:
M themes/metro/scss/_common.scss
Log Message:
-----------
removed overflow prop in server status
Signed-off-by: Nitish Bahl <nitishbahl24(a)gmail.com>
Commit: 7069b1c210c8be72e8fa120e456b1c526cd4d499
https://github.com/phpmyadmin/phpmyadmin/commit/7069b1c210c8be72e8fa120e456…
Author: Nitish Bahl <nitishbahl24(a)gmail.com>
Date: 2019-03-24 (Sun, 03 March 2019) +05:30
Changed paths:
M themes/metro/scss/_common.scss
Log Message:
-----------
correct properties for display
Signed-off-by: Nitish Bahl <nitishbahl24(a)gmail.com>
Commit: f9cb2ad2d08752663d583e54dfd7b11b49fbe53c
https://github.com/phpmyadmin/phpmyadmin/commit/f9cb2ad2d08752663d583e54dfd…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-24 (Sun, 03 March 2019) -03:00
Changed paths:
A libraries/classes/InternalRelations.php
M libraries/classes/Relation.php
D libraries/information_schema_relations.inc.php
D libraries/mysql_relations.inc.php
Log Message:
-----------
Create PhpMyAdmin\InternalRelations
Extracts libraries/information_schema_relations.inc.php and
libraries/mysql_relations.inc.php relations to InternalRelations class.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b09d9565df9ed9d3c3c888b13ee24da8320f188e
https://github.com/phpmyadmin/phpmyadmin/commit/b09d9565df9ed9d3c3c888b13ee…
Author: Nupur Agrawal <46920259+murex971(a)users.noreply.github.com>
Date: 2019-03-24 (Sun, 03 March 2019) -04:00
Changed paths:
M libraries/classes/Config/FormDisplayTemplate.php
M test/classes/Config/FormDisplayTemplateTest.php
Log Message:
-----------
Deleted redundant help/tool tip on page settings (#15061)
Removed redundant help/tool tip in page settings "Query history length" area.
Fixes issue #15029
Signed-off-by: Nupur Agrawal <nupur202000(a)gmail.com>
Commit: eed0d5e740986a879bf17f8fd819315353e210ce
https://github.com/phpmyadmin/phpmyadmin/commit/eed0d5e740986a879bf17f8fd81…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-24 (Sun, 03 March 2019) -04:00
Changed paths:
M ChangeLog
Log Message:
-----------
ChangeLog entry for pull request #15061, committed as b09d956
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 36359ec8f4c59137071b82fd879b31d5d57aa763
https://github.com/phpmyadmin/phpmyadmin/commit/36359ec8f4c59137071b82fd879…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M themes/original/scss/_common.scss
Log Message:
-----------
Fix #15065 - login page layout on theme original
Fixes: #15065
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 88185f585c798e8a2ef8cd435d29713b20b1287e
https://github.com/phpmyadmin/phpmyadmin/commit/88185f585c798e8a2ef8cd435d2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M themes/metro/scss/_common.scss
Log Message:
-----------
Fix #15071 - Improper display of hover box
Fixes: #15071
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7fba7ff3a062aff72aa13b7ee9eb77782bdfb758
https://github.com/phpmyadmin/phpmyadmin/commit/7fba7ff3a062aff72aa13b7ee9e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fix #15071 - Improper display of hover box for original and pmahomme
See: 88185f585c798e8a2ef8cd435d29713b20b1287e
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b5384b944308c25ab3c6652698bb404dbd903f72
https://github.com/phpmyadmin/phpmyadmin/commit/b5384b944308c25ab3c6652698b…
Author: Agha Saad Fraz <agha.saad04(a)gmail.com>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M libraries/error.inc.php
Log Message:
-----------
Remove unneccessary comment
I have removed the unnecessary styling part from the file.
Signed-off-by: Agha Saad Fraz <agha.saad04(a)gmail.com>
Commit: 5ba97aa1de76fe7a6f5eb2efe3c568ba5c43bedf
https://github.com/phpmyadmin/phpmyadmin/commit/5ba97aa1de76fe7a6f5eb2efe3c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M libraries/error.inc.php
Log Message:
-----------
Fix #15095 - Wrong format of comments
Closes: #15108
Closes: #15107
Closes: #15097
Fixes: #15095
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 10cd180442dcd7571500f0b37d84fa4206ee5f18
https://github.com/phpmyadmin/phpmyadmin/commit/10cd180442dcd7571500f0b37d8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M libraries/error.inc.php
Log Message:
-----------
Fix #15095 - Wrong format of comments
Fixes commit: 5ba97aa1de76fe7a6f5eb2efe3c568ba5c43bedf
Closes: #15108
Closes: #15107
Closes: #15097
Fixes: #15095
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1bb68a89259827de34d296019abcb4c7707e7009
https://github.com/phpmyadmin/phpmyadmin/commit/1bb68a89259827de34d296019ab…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M themes/original/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
Closes: #15075
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e6a3012831eed3dde9e9f4fa4fd2035aa4b7e638
https://github.com/phpmyadmin/phpmyadmin/commit/e6a3012831eed3dde9e9f4fa4fd…
Author: Bauyrzhan <bauyrzhan.maksot(a)mail.ru>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 9.1% (301 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: Bauyrzhan <bauyrzhan.maksot(a)mail.ru>
Commit: 2829863ee707b8bcee2c475f2d1b3d558d42ac82
https://github.com/phpmyadmin/phpmyadmin/commit/2829863ee707b8bcee2c475f2d1…
Author: ssantos <ssantos(a)web.de>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 79.5% (2637 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: dd88475656bc1b89dda95aeec0cece37bb31bfe0
https://github.com/phpmyadmin/phpmyadmin/commit/dd88475656bc1b89dda95aeec0c…
Author: amarjitsingh52922 <47297185+amarjitsingh52922(a)users.noreply.github.com>
Date: 2019-03-25 (Mon, 03 March 2019) -03:00
Changed paths:
M import.php
M libraries/classes/Plugins/Import/ImportCsv.php
M test/classes/Plugins/Import/ImportCsvTest.php
Log Message:
-----------
Fix for #13424 Importing a CSV created tables named Table ##" (#14935)
Fix #13424 Importing a CSV created tables named "Table ##"
Signed-off-by: Amarjit Singh <amarjitsingh52922(a)gmail.com>
Commit: be936acd3b6ccfce708b057390ccc570d9c101b1
https://github.com/phpmyadmin/phpmyadmin/commit/be936acd3b6ccfce708b057390c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-25 (Mon, 03 March 2019) -03:00
Changed paths:
M ChangeLog
M import.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Import/ImportCsv.php
M test/classes/Plugins/Import/ImportCsvTest.php
Log Message:
-----------
Add ChangeLog entry for #13424
Fix coding standard errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 79840be3621a1788d831fd541c55268f127cf115
https://github.com/phpmyadmin/phpmyadmin/commit/79840be3621a1788d831fd541c5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/StructureController.php
M templates/table/structure/display_structure.twig
M view_create.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a7ac037b168259eb32ee4e2ba599a5548d56d6de
https://github.com/phpmyadmin/phpmyadmin/commit/a7ac037b168259eb32ee4e2ba59…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M templates/database/structure/structure_table_row.twig
Log Message:
-----------
Fix #14926 - Add an Edit link for each view in tables list
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2b72b35a212e9dd8026fc9b3778b80e359c1a2ab
https://github.com/phpmyadmin/phpmyadmin/commit/2b72b35a212e9dd8026fc9b3778…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-25 (Mon, 03 March 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14926
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7b9c3ac99e7f8948ab8f5e1e9495e4bca1500ed9
https://github.com/phpmyadmin/phpmyadmin/commit/7b9c3ac99e7f8948ab8f5e1e949…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-26 (Tue, 03 March 2019) -03:00
Changed paths:
M composer.json
M phpstan.neon.dist
Log Message:
-----------
Require PHPStan 0.11.5
https://github.com/phpstan/phpstan/issues/2010
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0988f9cf1b9e122200fcb940b2584ad14e052f76
https://github.com/phpmyadmin/phpmyadmin/commit/0988f9cf1b9e122200fcb940b25…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-26 (Tue, 03 March 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/StructureController.php
M view_create.php
Log Message:
-----------
Fix style issues
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 76cbe9f961f6adc01ce9df0ec3b80e97d9f0b74d
https://github.com/phpmyadmin/phpmyadmin/commit/76cbe9f961f6adc01ce9df0ec3b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-26 (Tue, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/InsertEdit.php
M libraries/classes/Util.php
M libraries/mult_submits.inc.php
M templates/columns_definitions/table_fields_definitions.twig
M test/classes/UtilTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 252aebef4886152725d014cad6eb1b4f3c75711a
https://github.com/phpmyadmin/phpmyadmin/commit/252aebef4886152725d014cad6e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-26 (Tue, 03 March 2019) +01:00
Changed paths:
M libraries/classes/Util.php
M test/classes/InsertEditTest.php
M test/classes/UtilTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8b36aa39d2e7c17689963fc1401556bf46b16263
https://github.com/phpmyadmin/phpmyadmin/commit/8b36aa39d2e7c17689963fc1401…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-27 (Wed, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/ErrorHandler.php
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_8'
- Fixed code standard error
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7f4d2f9118b8a192164ae402785c3c9947dc43ee
https://github.com/phpmyadmin/phpmyadmin/commit/7f4d2f9118b8a192164ae402785…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-28 (Thu, 03 March 2019) -04:00
Changed paths:
M ChangeLog
M prefs_manage.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 50bde5c8e1e8565d8359a5c0795dd20099b1d5d5
https://github.com/phpmyadmin/phpmyadmin/commit/50bde5c8e1e8565d8359a5c0795…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-03-29 (Fri, 03 March 2019) -04:00
Changed paths:
M doc/bookmarks.rst
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 7a306afad330e1995d6092fcdf7fda5b68dd41a8
https://github.com/phpmyadmin/phpmyadmin/commit/7a306afad330e1995d6092fcdf7…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-03-29 (Fri, 03 March 2019) +01:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.7% (3305 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
Commit: 78c2a64a85fbe262ea13f0374483b046daf53931
https://github.com/phpmyadmin/phpmyadmin/commit/78c2a64a85fbe262ea13f037448…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-29 (Fri, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/designer/move.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 96f8d42bdaa7b9f989dce0322ed02c87bb2b2750
https://github.com/phpmyadmin/phpmyadmin/commit/96f8d42bdaa7b9f989dce0322ed…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-30 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/designer/move.js
M js/functions.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 30292fc3516ae4ca5c65d50caa5f89b693e547f8
https://github.com/phpmyadmin/phpmyadmin/commit/30292fc3516ae4ca5c65d50caa5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-03-30 (Sat, 03 March 2019) +01:00
Changed paths:
M ChangeLog
M js/normalization.js
M js/replication.js
M js/server_status_monitor.js
M js/tbl_structure.js
M libraries/classes/ErrorHandler.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f7a54dc8bbc48d7a3f114a9947306ffe70d7ddf1
https://github.com/phpmyadmin/phpmyadmin/commit/f7a54dc8bbc48d7a3f114a99473…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2019-03-31 (Sun, 03 March 2019) +02:00
Changed paths:
Log Message:
-----------
Merge remote-tracking branch 'origin/QA_4_8'
Commit: 343721e7a38533b1e583655a9088e7785d9811c0
https://github.com/phpmyadmin/phpmyadmin/commit/343721e7a38533b1e583655a908…
Author: Michal Čihař <michal(a)cihar.com>
Date: 2019-03-31 (Sun, 03 March 2019) +02:00
Changed paths:
M doc/conf.py
M doc/import_export.rst
M doc/setup.rst
M doc/two_factor.rst
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 99a853eb00c8255e4983d1534ba9c974552b174c
https://github.com/phpmyadmin/phpmyadmin/commit/99a853eb00c8255e4983d1534ba…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/master_replication.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForMasterReplication
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6d0bdeb3a1d8cfa3c6538460862d415662970fdb
https://github.com/phpmyadmin/phpmyadmin/commit/6d0bdeb3a1d8cfa3c6538460862…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/master_configuration.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForMasterConfiguration
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6e34d9dc50606137d0b7e358ad75cc3729db6baa
https://github.com/phpmyadmin/phpmyadmin/commit/6e34d9dc50606137d0b7e358ad7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/slave_configuration.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForSlaveConfiguration
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: bedc1f9631d860307582bd13ea17ea397d006876
https://github.com/phpmyadmin/phpmyadmin/commit/bedc1f9631d860307582bd13ea1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/slave_error_management.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForSlaveErrorManagement
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8b47b6cf0b916e7640cdf43349535cef22ebf79d
https://github.com/phpmyadmin/phpmyadmin/commit/8b47b6cf0b916e7640cdf433495…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/not_server_replication.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForNotServerReplication
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6bdda4b8d1d24f7a76d863f0ee98549eb95c8ca0
https://github.com/phpmyadmin/phpmyadmin/commit/6bdda4b8d1d24f7a76d863f0ee9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/database_multibox.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForReplicationDbMultibox
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8db9bf6677f2c9c30db3c80ee1d288d550235bf5
https://github.com/phpmyadmin/phpmyadmin/commit/8db9bf6677f2c9c30db3c80ee1d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/change_master.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForReplicationChangeMaster
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ec8d316457fc9e94fd312bdc04ea35a84bbf9d29
https://github.com/phpmyadmin/phpmyadmin/commit/ec8d316457fc9e94fd312bdc04e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
M libraries/classes/ReplicationGui.php
M templates/server/replication/change_master.twig
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForAddUserInputDiv
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e7d0563beec068bdc06ae5396f7193a661f92177
https://github.com/phpmyadmin/phpmyadmin/commit/e7d0563beec068bdc06ae5396f7…
Author: Nupur Agrawal <nupur202000(a)gmail.com>
Date: 2019-04-01 (Mon, 04 April 2019) +05:30
Changed paths:
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fixes login box border
Signed-off-by: Nupur Agrawal <nupur202000(a)gmail.com>
Commit: 6909dfbc921e6834b5361553d1b096fadbc9f5ff
https://github.com/phpmyadmin/phpmyadmin/commit/6909dfbc921e6834b5361553d1b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
M libraries/classes/ReplicationGui.php
M templates/server/replication/master_replication.twig
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForReplicationSlavesTable
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 63edfe37fcf7c71e069be5a1969eb739f23db994
https://github.com/phpmyadmin/phpmyadmin/commit/63edfe37fcf7c71e069be5a1969…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
A templates/server/replication/master_add_slave_user.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extracts HTML from ReplicationGui::getHtmlForReplicationMasterAddSlaveUser
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 392fcf508e2539fafac65f09eb895c88d6cc7082
https://github.com/phpmyadmin/phpmyadmin/commit/392fcf508e2539fafac65f09eb8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
M libraries/classes/ReplicationGui.php
M templates/server/replication/master_add_slave_user.twig
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForAddUserLoginForm
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f79b2e27e31f0792472e9e4563f22b85edfb22c1
https://github.com/phpmyadmin/phpmyadmin/commit/f79b2e27e31f0792472e9e4563f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-03-31 (Sun, 03 March 2019) -03:00
Changed paths:
M libraries/classes/ReplicationGui.php
M templates/server/replication/master_add_slave_user.twig
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForTableInfoForm
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2d6ec111c2511831ee8349b510da91c6162181e1
https://github.com/phpmyadmin/phpmyadmin/commit/2d6ec111c2511831ee8349b510d…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-01 (Mon, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 82.3% (2728 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: b6b9926a08a32198a8b7f391fde903bf6d69cf14
https://github.com/phpmyadmin/phpmyadmin/commit/b6b9926a08a32198a8b7f391fde…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-01 (Mon, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/sql.js
M libraries/classes/Database/Designer/Common.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 292d2db7272c30ea92302d5994bb96a09ad17d47
https://github.com/phpmyadmin/phpmyadmin/commit/292d2db7272c30ea92302d5994b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-01 (Mon, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/export.js
M libraries/classes/Controllers/Table/SqlController.php
M libraries/classes/Database/Designer/Common.php
M tbl_sql.php
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 76dca69460c3a2fb356d3a2821131f39a6b1a700
https://github.com/phpmyadmin/phpmyadmin/commit/76dca69460c3a2fb356d3a28211…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-01 (Mon, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Operations.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1e403f76d95f18b0edc07e8d307fc6c1cd0da223
https://github.com/phpmyadmin/phpmyadmin/commit/1e403f76d95f18b0edc07e8d307…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-01 (Mon, 04 April 2019) +02:00
Changed paths:
M libraries/classes/Controllers/Table/RelationController.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fc04ab240263141324fddde217b635484d6bac09
https://github.com/phpmyadmin/phpmyadmin/commit/fc04ab240263141324fddde217b…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-02 (Tue, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 96.4% (3198 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: dcb2014cf93ff392c8dc4eb2341f9a0bdeb1b58a
https://github.com/phpmyadmin/phpmyadmin/commit/dcb2014cf93ff392c8dc4eb2341…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-02 (Tue, 04 April 2019) -03:00
Changed paths:
A templates/prefs_manage.twig
A templates/prefs_manage_error.twig
M libraries/classes/Twig/MessageExtension.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/Twig/UtilExtension.php
M prefs_manage.php
Log Message:
-----------
Merge branch 'extract_html_in_prefs_manage_to_twig' of https://github.com/aektos/phpmyadmin into aektos-extract_html_in_prefs_manage_to_twig
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0868cd17b1a539d9e6e607bb90604651a79a3737
https://github.com/phpmyadmin/phpmyadmin/commit/0868cd17b1a539d9e6e607bb906…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-02 (Tue, 04 April 2019) -03:00
Changed paths:
A templates/prefs_manage.twig
A templates/prefs_manage_error.twig
M libraries/classes/Twig/MessageExtension.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/Twig/UtilExtension.php
M prefs_manage.php
Log Message:
-----------
Merge branch 'aektos-extract_html_in_prefs_manage_to_twig'
Fixes #15098
Closes #15099
Closes #15055
Commit: 914756aefc16de57b32c9c6ac934a35e81d968db
https://github.com/phpmyadmin/phpmyadmin/commit/914756aefc16de57b32c9c6ac93…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-03 (Wed, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/functions.js
M js/vendor/zxcvbn.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fb4e89d89526a7ad7f2c9de006071eb4d78761e0
https://github.com/phpmyadmin/phpmyadmin/commit/fb4e89d89526a7ad7f2c9de0060…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-04 (Thu, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 61.8% (2050 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 5bc29b86d0a1aa2ebae665bfa87f47e74b96d13f
https://github.com/phpmyadmin/phpmyadmin/commit/5bc29b86d0a1aa2ebae665bfa87…
Author: Agha Saad Fraz <agha.saad04(a)gmail.com>
Date: 2019-04-05 (Fri, 04 April 2019) +05:00
Changed paths:
M libraries/classes/Config/Forms/User/UserFormList.php
Log Message:
-----------
Fix placement inconsistency of Export/Import tabs
Signed-off-by: Agha Saad Fraz <agha.saad04(a)gmail.com>
I have moved the array element Import and placed it after the Export element.
Commit: f77ae836d7512477b515ef27c60a5a3e5b1538b0
https://github.com/phpmyadmin/phpmyadmin/commit/f77ae836d7512477b515ef27c60…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-04 (Thu, 04 April 2019) -03:00
Changed paths:
M themes/metro/scss/_common.scss
Log Message:
-----------
Merge pull request #15078 from bahl24/property_ignored
correct properties for display in metro
Commit: 2609bff627afe383810249ed172d96a621f6ba4b
https://github.com/phpmyadmin/phpmyadmin/commit/2609bff627afe383810249ed172…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-04 (Thu, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/functions.js
M js/server_privileges.js
M js/server_status_monitor.js
M libraries/classes/Import.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Import/ImportXml.php
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: a7084c203594ef428d242cd999890b6540fba91c
https://github.com/phpmyadmin/phpmyadmin/commit/a7084c203594ef428d242cd9998…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-04 (Thu, 04 April 2019) +02:00
Changed paths:
M libraries/classes/Config/Forms/User/UserFormList.php
Log Message:
-----------
Fix #15152 - [UI] Export/Import tabs placement inconsistency
Fixes: #15152
Pull-request: #15153
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bccfdb140758effd0d9ac38ba3a4a836e6420744
https://github.com/phpmyadmin/phpmyadmin/commit/bccfdb140758effd0d9ac38ba3a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-04 (Thu, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Config/Forms/User/UserFormList.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/config.values.php
Log Message:
-----------
Merge branch 'QA_4_8'
- Fixed code style issues
- Merged QA_4_8 branch
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a5e2221c666bcb6e86a6a072a379c5a4eafcea1d
https://github.com/phpmyadmin/phpmyadmin/commit/a5e2221c666bcb6e86a6a072a37…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-06 (Sat, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 62.3% (2066 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 5e828ec81073c9818549c127a934c3808a13f4c6
https://github.com/phpmyadmin/phpmyadmin/commit/5e828ec81073c9818549c127a93…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-06 (Sat, 04 April 2019) -03:00
Changed paths:
A libraries/classes/Controllers/Server/ReplicationController.php
A templates/server/replication/index.twig
M libraries/classes/ReplicationGui.php
M server_replication.php
M templates/server/replication/slave_configuration.twig
M templates/server/sub_page_header.twig
M test/classes/ReplicationGuiTest.php
D templates/server/replication/not_server_replication.twig
D templates/server/replication/slave_error_management.twig
Log Message:
-----------
Create Server\ReplicationController
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 57c8f11a0790739ce3ab664d14add66dbb15b801
https://github.com/phpmyadmin/phpmyadmin/commit/57c8f11a0790739ce3ab664d14a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-06 (Sat, 04 April 2019) -03:00
Changed paths:
A templates/server/replication/status_table.twig
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Extract HTML from ReplicationGui::getHtmlForReplicationStatusTable
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 345bd297065fbcd6da4440b9c3863cb5b3e8638b
https://github.com/phpmyadmin/phpmyadmin/commit/345bd297065fbcd6da4440b9c38…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-06 (Sat, 04 April 2019) -03:00
Changed paths:
A templates/themes.twig
M themes.php
Log Message:
-----------
Extract HTML from themes.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cc354551e9c66e3ef5d9e5308621070443d76a4a
https://github.com/phpmyadmin/phpmyadmin/commit/cc354551e9c66e3ef5d9e530862…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-06 (Sat, 04 April 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Add a Composer script to run all tests
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: caa2035cc82ce3b0f887218622071230368ad6e2
https://github.com/phpmyadmin/phpmyadmin/commit/caa2035cc82ce3b0f8872186220…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-07 (Sun, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Config/Descriptions.php
M libraries/classes/Config/FormDisplayTemplate.php
M templates/console/display.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d06291a7d6a7a307cf51bb851118498eaac89606
https://github.com/phpmyadmin/phpmyadmin/commit/d06291a7d6a7a307cf51bb85111…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-07 (Sun, 04 April 2019) -03:00
Changed paths:
A templates/preferences/autoload.twig
A templates/preferences/manage/error.twig
A templates/preferences/manage/main.twig
A templates/preferences/two_factor/configure.twig
A templates/preferences/two_factor/confirm.twig
A templates/preferences/two_factor/main.twig
M libraries/classes/UserPreferences.php
M prefs_manage.php
M prefs_twofactor.php
D templates/prefs_autoload.twig
D templates/prefs_manage.twig
D templates/prefs_manage_error.twig
D templates/prefs_twofactor.twig
D templates/prefs_twofactor_configure.twig
D templates/prefs_twofactor_confirm.twig
Log Message:
-----------
Move prefs_* templates to the preferences directory
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 20d4d486933cd83e855da45e59f5c73f108903e2
https://github.com/phpmyadmin/phpmyadmin/commit/20d4d486933cd83e855da45e59f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-07 (Sun, 04 April 2019) -03:00
Changed paths:
A templates/preferences/forms/main.twig
M prefs_forms.php
Log Message:
-----------
Extract HTML from prefs_forms.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b180430d7a533d361a710c04f124726b1dee7d53
https://github.com/phpmyadmin/phpmyadmin/commit/b180430d7a533d361a710c04f12…
Author: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Date: 2019-04-09 (Tue, 04 April 2019) +05:30
Changed paths:
M js/ajax.js
Log Message:
-----------
Fix - #15166 - Copy table keeps showing 'loading...' -- When no row is selected.
Signed-off-by: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Commit: 55a376e0c0904cce532da9c9017478706e7f8386
https://github.com/phpmyadmin/phpmyadmin/commit/55a376e0c0904cce532da9c9017…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-08 (Mon, 04 April 2019) -03:00
Changed paths:
M js/server_privileges.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 332aa3deba11c2e006ae26367c23b77ee7af6831
https://github.com/phpmyadmin/phpmyadmin/commit/332aa3deba11c2e006ae26367c2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-08 (Mon, 04 April 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4933a13df5c4e4eec3c7d59ad41f26bd025a6627
https://github.com/phpmyadmin/phpmyadmin/commit/4933a13df5c4e4eec3c7d59ad41…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-09 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 73.7% (2444 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: afe63e4131d912617302f0796fd63c8729d8c59a
https://github.com/phpmyadmin/phpmyadmin/commit/afe63e4131d912617302f0796fd…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-09 (Tue, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 83.5% (2769 of 3316 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 65757140070f6de8e48801d35f5dd8cd73dc0647
https://github.com/phpmyadmin/phpmyadmin/commit/65757140070f6de8e48801d35f5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
M js/functions.js
Log Message:
-----------
Merge branch 'QA_4_8'
Commit: 7b2906c22921ae9b019ea26b235d71499ad935eb
https://github.com/phpmyadmin/phpmyadmin/commit/7b2906c22921ae9b019ea26b235…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 738017f30252bafa0b34b5e6f7c482bf1d5f5bf6
https://github.com/phpmyadmin/phpmyadmin/commit/738017f30252bafa0b34b5e6f7c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
M po/kk.po
M po/pt.po
Log Message:
-----------
Merge remote-tracking branch 'weblate/master'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 057687e218e751c5f01220df17ac7ea7c6d53149
https://github.com/phpmyadmin/phpmyadmin/commit/057687e218e751c5f01220df17a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) +02:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ce186efb35b4037ca3add32301e2b68d6ff1953d
https://github.com/phpmyadmin/phpmyadmin/commit/ce186efb35b4037ca3add32301e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1b743cbc04964f27ebbd327f0520483952f3200e
https://github.com/phpmyadmin/phpmyadmin/commit/1b743cbc04964f27ebbd327f052…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-09 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 75.8% (2516 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 964d0935a1b821b13cec6b069727553499c0952b
https://github.com/phpmyadmin/phpmyadmin/commit/964d0935a1b821b13cec6b06972…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
A templates/changelog.twig
M changelog.php
Log Message:
-----------
Extract HTML from changelog.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f3822d5a87436fb4761faa4d2b6215ecd4510021
https://github.com/phpmyadmin/phpmyadmin/commit/f3822d5a87436fb4761faa4d2b6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-09 (Tue, 04 April 2019) -03:00
Changed paths:
A templates/setup/error.twig
M libraries/classes/Setup/FormProcessing.php
Log Message:
-----------
Extract HTML from Setup\FormProcessing
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 69f847fe40c57b0ea16322aed2a8ec1c722e826e
https://github.com/phpmyadmin/phpmyadmin/commit/69f847fe40c57b0ea16322aed2a…
Author: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Date: 2019-04-12 (Fri, 04 April 2019) +05:30
Changed paths:
M js/functions.js
Log Message:
-----------
fixes #15174
Signed-off-by: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Issue here was that, initially values were stored in the form of "A_B_C" i.e. no spaces, just '_' in place of spaces. But while searching, we were not converting the spaces in '_' form.
Commit: ac0396618e10142000ff905e48d4e93faa98ee31
https://github.com/phpmyadmin/phpmyadmin/commit/ac0396618e10142000ff905e48d…
Author: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Date: 2019-04-12 (Fri, 04 April 2019) +05:30
Changed paths:
M js/functions.js
Log Message:
-----------
Works for multiple words too
Signed-off-by: Bournvita1998 <mohit.kuri(a)research.iiit.ac.in>
Commit: a38ae2137b6bccba7b6741d6368bf5fca99333b6
https://github.com/phpmyadmin/phpmyadmin/commit/a38ae2137b6bccba7b6741d6368…
Author: AghaSaad04 <agha.saad04(a)gmail.com>
Date: 2019-04-13 (Sat, 04 April 2019) +05:00
Changed paths:
M themes/pmahomme/scss/_common.scss
M themes/pmahomme/scss/_designer.scss
Log Message:
-----------
Fixes sidemenu's height and name panel's padding and margin
There are some layout issues in desinger page . So, I have fixed some of them.
1) Padding of name-panel
2) Margin of name-panel
3) Sidemenu height
Signed-off-by: Agha Saad Fraz <agha.saad04(a)gmail.com>
Commit: c32e22d3bf42f955956a310a469a34075c5da786
https://github.com/phpmyadmin/phpmyadmin/commit/c32e22d3bf42f955956a310a469…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-13 (Sat, 04 April 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Upgrade ExpressionLanguage to 4.2
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 03ba08768ec6337a41e89e82107d8b3616387466
https://github.com/phpmyadmin/phpmyadmin/commit/03ba08768ec6337a41e89e82107…
Author: Nupur Agrawal <nupur202000(a)gmail.com>
Date: 2019-04-15 (Mon, 04 April 2019) +05:30
Changed paths:
M libraries/classes/RecentFavoriteTable.php
M themes/pmahomme/scss/_navigation.scss
Log Message:
-----------
Span converted to button
Signed-off-by: Nupur Agrawal <nupur202000(a)gmail.com>
Commit: 599878dc01ee785ba9e38af76916278c9edd4051
https://github.com/phpmyadmin/phpmyadmin/commit/599878dc01ee785ba9e38af7691…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M package.json
M yarn.lock
Log Message:
-----------
Upgrade ESLint and stylelint
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 34a7662ccc7310394354bf126a136e478a914f29
https://github.com/phpmyadmin/phpmyadmin/commit/34a7662ccc7310394354bf126a1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M yarn.lock
Log Message:
-----------
Upgrade Sass
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c0b583c243a38ec7ac010d774d312a93fc34ba22
https://github.com/phpmyadmin/phpmyadmin/commit/c0b583c243a38ec7ac010d774d3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
A js/vendor/jquery/jquery.min.map
M js/vendor/jquery/jquery.min.js
M package.json
M yarn.lock
Log Message:
-----------
Upgrade jQuery to v3.4
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a22cc65688fed7ca0ede9467559336f9e496bc98
https://github.com/phpmyadmin/phpmyadmin/commit/a22cc65688fed7ca0ede9467559…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M js/vendor/jquery/additional-methods.js
M js/vendor/jquery/jquery.validate.js
M package.json
M yarn.lock
Log Message:
-----------
Upgrade jQuery Validation Plugin to 1.19
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4c43aebd2dcd502c2596f234b55b5d22e556bf1d
https://github.com/phpmyadmin/phpmyadmin/commit/4c43aebd2dcd502c2596f234b55…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M js/vendor/bootstrap/bootstrap.bundle.min.js
M js/vendor/bootstrap/bootstrap.bundle.min.js.map
M yarn.lock
Log Message:
-----------
Upgrade Bootstrap to 4.3.1
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 13ef404d1e0fddc4c8595992b0385d2cb830a9a3
https://github.com/phpmyadmin/phpmyadmin/commit/13ef404d1e0fddc4c8595992b03…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M .scrutinizer.yml
Log Message:
-----------
Upgrade node.js to version 10 on Scrutinizer
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 45cb038a095f0edc8454683472214b675ce4bb94
https://github.com/phpmyadmin/phpmyadmin/commit/45cb038a095f0edc84546834722…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge pull request #15139 from murex971/go-btn-border
Fixes login box border
Commit: b36a5811ba5299721be6a40ad61680486ac6dff6
https://github.com/phpmyadmin/phpmyadmin/commit/b36a5811ba5299721be6a40ad61…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-15 (Mon, 04 April 2019) -03:00
Changed paths:
M ChangeLog
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4d725f9bd1d7b7d5cc601647532ee8235bcb347d
https://github.com/phpmyadmin/phpmyadmin/commit/4d725f9bd1d7b7d5cc601647532…
Author: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Date: 2019-04-16 (Tue, 04 April 2019) +05:30
Changed paths:
M libraries/classes/Table.php
Log Message:
-----------
Fix - #14732 - Can't rename primary key with auto increment
Signed-off-by: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Fix - #14732 - taking care for #13235
Signed-off-by: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Commit: c9bf355632562ed2bc16ff4ecc327532ab0876b7
https://github.com/phpmyadmin/phpmyadmin/commit/c9bf355632562ed2bc16ff4ecc3…
Author: Kristjan Räts <kristjanrats(a)gmail.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/et.po
Log Message:
-----------
Translated using Weblate (Estonian)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/et/
Signed-off-by: Kristjan Räts <kristjanrats(a)gmail.com>
Commit: dfdae567e464da21d8145c71bb2a6740e176e845
https://github.com/phpmyadmin/phpmyadmin/commit/dfdae567e464da21d8145c71bb2…
Author: Nathan <bonnemainsnathan(a)gmail.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Nathan <bonnemainsnathan(a)gmail.com>
Commit: 0963f6b232f11d311ebf21e4b527e641bcfb3772
https://github.com/phpmyadmin/phpmyadmin/commit/0963f6b232f11d311ebf21e4b52…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 236f146ee4e0bc0d7287045c8adb1f900c349a17
https://github.com/phpmyadmin/phpmyadmin/commit/236f146ee4e0bc0d7287045c8ad…
Author: Giovanni Sora <g.sora(a)tiscali.it>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/ia.po
Log Message:
-----------
Translated using Weblate (Interlingua)
Currently translated at 75.5% (2506 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ia/
Signed-off-by: Giovanni Sora <g.sora(a)tiscali.it>
Commit: 3637a0719e6fde55b36ee3681f69a99d0139037c
https://github.com/phpmyadmin/phpmyadmin/commit/3637a0719e6fde55b36ee3681f6…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: 4858ccabb6a51850fe198ac61e78fc5d9854b251
https://github.com/phpmyadmin/phpmyadmin/commit/4858ccabb6a51850fe198ac61e7…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 89.1% (2956 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 3441f0b1def68d20097edc2e5452151dc388765c
https://github.com/phpmyadmin/phpmyadmin/commit/3441f0b1def68d20097edc2e545…
Author: Bauyrzhan <bauyrzhan.maksot(a)mail.ru>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 89.1% (2956 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: Bauyrzhan <bauyrzhan.maksot(a)mail.ru>
Commit: e7d49b0d29d0ec462cafbd140c5b50c23f0d9c60
https://github.com/phpmyadmin/phpmyadmin/commit/e7d49b0d29d0ec462cafbd140c5…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 83.3% (2766 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: b23e043b486a6ebc50feea4f6b9f4f13f3f0151a
https://github.com/phpmyadmin/phpmyadmin/commit/b23e043b486a6ebc50feea4f6b9…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: c3fc0452384305ccedffdd0d3c8cee0fc624605b
https://github.com/phpmyadmin/phpmyadmin/commit/c3fc0452384305ccedffdd0d3c8…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-04-16 (Tue, 04 April 2019) +02:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: bcdf6dcde98661fb3bb41b0bc2a29e6bda8218b3
https://github.com/phpmyadmin/phpmyadmin/commit/bcdf6dcde98661fb3bb41b0bc2a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-16 (Tue, 04 April 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Use Xenial for the build matrix on Travis
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 71208bab74a8047c912c9e51b31f43c704db1010
https://github.com/phpmyadmin/phpmyadmin/commit/71208bab74a8047c912c9e51b31…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-16 (Tue, 04 April 2019) -03:00
Changed paths:
M composer.json
M libraries/common.inc.php
M scripts/create-release.sh
Log Message:
-----------
Require PHP 7.1.3
Related to c32e22d3bf42f955956a310a469a34075c5da786
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 645f0c1779691fe2f0a722045a6257bb1fd195b7
https://github.com/phpmyadmin/phpmyadmin/commit/645f0c1779691fe2f0a722045a6…
Author: Nupur Agrawal <46920259+murex971(a)users.noreply.github.com>
Date: 2019-04-16 (Tue, 04 April 2019) -03:00
Changed paths:
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fix label alignment on login page (#15178)
Signed-off-by: Nupur Agrawal <nupur202000(a)gmail.com>
Commit: fea0cd656b23d331f0b6314d6373a44766c9e60a
https://github.com/phpmyadmin/phpmyadmin/commit/fea0cd656b23d331f0b6314d637…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-16 (Tue, 04 April 2019) -03:00
Changed paths:
M ChangeLog
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ecfeeb9bf2cbca9df550ebf4932ed713d2272c5c
https://github.com/phpmyadmin/phpmyadmin/commit/ecfeeb9bf2cbca9df550ebf4932…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-16 (Tue, 04 April 2019) -03:00
Changed paths:
M themes/pmahomme/scss/_common.scss
M themes/pmahomme/scss/_designer.scss
Log Message:
-----------
Merge pull request #15184 from AghaSaad04/designer_page
Fixes sidemenu's height and name panel's padding and margin
Commit: 4e9bdbcbde7f17f44385264b5a03b40639f20cdf
https://github.com/phpmyadmin/phpmyadmin/commit/4e9bdbcbde7f17f44385264b5a0…
Author: Nupur Agrawal <46920259+murex971(a)users.noreply.github.com>
Date: 2019-04-17 (Wed, 04 April 2019) -03:00
Changed paths:
M templates/server/plugins/index.twig
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fixes button issues (#15191)
Signed-off-by: Nupur Agrawal <nupur202000(a)gmail.com>
Commit: 3fc55855d6036405d536122cdd7144b65932554c
https://github.com/phpmyadmin/phpmyadmin/commit/3fc55855d6036405d536122cdd7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-17 (Wed, 04 April 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/LanguageManager.php
Log Message:
-----------
Merge branch 'QA_4_8'
Closes #15210
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c43ba068d2300988e945e9ef6f93d05711a478af
https://github.com/phpmyadmin/phpmyadmin/commit/c43ba068d2300988e945e9ef6f9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-17 (Wed, 04 April 2019) -03:00
Changed paths:
M doc/config.rst
M doc/setup.rst
Log Message:
-----------
Remove PHP closing tag from documentation
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 13323c79e392c336e06390e886ddccd07edd8e66
https://github.com/phpmyadmin/phpmyadmin/commit/13323c79e392c336e06390e886d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-17 (Wed, 04 April 2019) -03:00
Changed paths:
M themes/pmahomme/scss/_common.scss
M themes/pmahomme/scss/_designer.scss
Log Message:
-----------
Fix margin on Pmahomme theme
Related to a38ae2137b6bccba7b6741d6368bf5fca99333b6
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7f793cdd5946021bf094bc8d5b8ac8e5563fc2b7
https://github.com/phpmyadmin/phpmyadmin/commit/7f793cdd5946021bf094bc8d5b8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-17 (Wed, 04 April 2019) -03:00
Changed paths:
M db_export.php
M export.php
M libraries/classes/Export.php
M libraries/classes/Plugins/ExportPlugin.php
M schema_export.php
M test/classes/ExportTest.php
Log Message:
-----------
Use DI for $dbi global in Export class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 17195fbe72a664e16267c18c133a790859efa37e
https://github.com/phpmyadmin/phpmyadmin/commit/17195fbe72a664e16267c18c133…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-18 (Thu, 04 April 2019) -03:00
Changed paths:
M ajax.php
M browse_foreigners.php
M chk_rel.php
M db_central_columns.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_routines.php
M db_search.php
M db_sql.php
M db_sql_autocomplete.php
M db_structure.php
M db_triggers.php
M export.php
M import.php
M index.php
M libraries/classes/DatabaseInterface.php
M navigation.php
M normalization.php
M schema_export.php
M server_databases.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M sql.php
M tbl_addfield.php
M tbl_change.php
M tbl_create.php
M tbl_export.php
M tbl_get_field.php
M tbl_indexes.php
M tbl_operations.php
M tbl_relation.php
M tbl_replace.php
M tbl_select.php
M tbl_sql.php
M tbl_structure.php
M transformation_overview.php
M transformation_wrapper.php
M user_password.php
M view_create.php
M view_operations.php
Log Message:
-----------
Get $dbi from DIC instead of global in entry points
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d6725083ed0c8f2db86aff9c7c3cca5155cfbc34
https://github.com/phpmyadmin/phpmyadmin/commit/d6725083ed0c8f2db86aff9c7c3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-18 (Thu, 04 April 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2b79b8e50a5825fc74b5da3b37e7def45f488f6e
https://github.com/phpmyadmin/phpmyadmin/commit/2b79b8e50a5825fc74b5da3b37e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-18 (Thu, 04 April 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Replace dbi global with $this in DatabaseInterface
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 47fa0d8bdb5763f952664c9f282c0e9c56dc0c8d
https://github.com/phpmyadmin/phpmyadmin/commit/47fa0d8bdb5763f952664c9f282…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-19 (Fri, 04 April 2019) -03:00
Changed paths:
A templates/header.twig
M libraries/classes/Header.php
M libraries/classes/Response.php
M test/classes/HeaderTest.php
D templates/header/header.twig
D templates/header/title_tag.twig
Log Message:
-----------
Extract HTML from Header::getDisplay()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b0e5a9ac5988f988f31a9924f7c6269922834d8f
https://github.com/phpmyadmin/phpmyadmin/commit/b0e5a9ac5988f988f31a9924f7c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-19 (Fri, 04 April 2019) -03:00
Changed paths:
A templates/footer.twig
M libraries/classes/Footer.php
M test/classes/FooterTest.php
Log Message:
-----------
Extract HTML from Footer::getDisplay()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5abc69c280bf8f8dd7eec3d15a1ef2f9f539050e
https://github.com/phpmyadmin/phpmyadmin/commit/5abc69c280bf8f8dd7eec3d15a1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-19 (Fri, 04 April 2019) -03:00
Changed paths:
A templates/scripts.twig
M libraries/classes/Scripts.php
M test/classes/ScriptsTest.php
Log Message:
-----------
Extract HTML from Scripts::getDisplay()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f28a60ea1529bc9a15c2908bc13ea49db0d318a2
https://github.com/phpmyadmin/phpmyadmin/commit/f28a60ea1529bc9a15c2908bc13…
Author: Gabriel Caruso <carusogabriel34(a)gmail.com>
Date: 2019-04-19 (Fri, 04 April 2019) -03:00
Changed paths:
M libraries/classes/Config/Descriptions.php
M libraries/classes/Display/Results.php
Log Message:
-----------
Use Null Coalesce Operator
Signed-off-by: Gabriel Caruso <carusogabriel34(a)gmail.com>
Commit: e979a784c8db0a8b080dc972604fb243c088528d
https://github.com/phpmyadmin/phpmyadmin/commit/e979a784c8db0a8b080dc972604…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-20 (Sat, 04 April 2019) -03:00
Changed paths:
M libraries/classes/Config/Descriptions.php
M libraries/classes/Display/Results.php
Log Message:
-----------
Merge pull request #15214 from carusogabriel/master
Use Null Coalesce Operator
Commit: 2caf61e8803f7a783ba93394d57f5c16746bf060
https://github.com/phpmyadmin/phpmyadmin/commit/2caf61e8803f7a783ba93394d57…
Author: AJ <necessarylion(a)gmail.com>
Date: 2019-04-21 (Sun, 04 April 2019) +02:00
Changed paths:
M po/my.po
Log Message:
-----------
Translated using Weblate (Burmese)
Currently translated at 0.1% (2 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/my/
Signed-off-by: AJ <necessarylion(a)gmail.com>
Commit: cabb9811a4f1610daaceb3c7223b35be84ff7864
https://github.com/phpmyadmin/phpmyadmin/commit/cabb9811a4f1610daaceb3c7223…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-21 (Sun, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 93.6% (3107 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 5fb189d38eaa82649f89a6aceb72d98f3dbb3353
https://github.com/phpmyadmin/phpmyadmin/commit/5fb189d38eaa82649f89a6aceb7…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-21 (Sun, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: af7c9fccaa987ae2b3e36559ed590656b8b551af
https://github.com/phpmyadmin/phpmyadmin/commit/af7c9fccaa987ae2b3e36559ed5…
Author: Pablo Mayordomo <cartman322es(a)yahoo.es>
Date: 2019-04-21 (Sun, 04 April 2019) +02:00
Changed paths:
M po/es.po
Log Message:
-----------
Translated using Weblate (Spanish)
Currently translated at 97.8% (3246 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/es/
Signed-off-by: Pablo Mayordomo <cartman322es(a)yahoo.es>
Commit: c642c29aa4304084c0064a15b4be63d6f53f6bd3
https://github.com/phpmyadmin/phpmyadmin/commit/c642c29aa4304084c0064a15b4b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-22 (Mon, 04 April 2019) -03:00
Changed paths:
A templates/navigation/main.twig
M libraries/classes/Header.php
M libraries/classes/Navigation/Navigation.php
M navigation.php
M test/classes/Navigation/NavigationTest.php
Log Message:
-----------
Extract HTML from Navigation::getDisplay()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 54cef387c655a06bb5a6ca3e6214e3b2200ce45a
https://github.com/phpmyadmin/phpmyadmin/commit/54cef387c655a06bb5a6ca3e621…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-22 (Mon, 04 April 2019) -03:00
Changed paths:
M doc/conf.py
Log Message:
-----------
Ignore linkcheck for Scriptalicious
"500 Server Error: Internal Server Error"
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 710bcbbe5c1ef02092cf6e743faadbda4d321a6e
https://github.com/phpmyadmin/phpmyadmin/commit/710bcbbe5c1ef02092cf6e743fa…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-23 (Tue, 04 April 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3319 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 51652a73e467bdc27485ed399329d1e8e405bf66
https://github.com/phpmyadmin/phpmyadmin/commit/51652a73e467bdc27485ed39932…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-23 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 94.5% (3138 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 1d0dad5cd666a28be69a33fd54a2b73268f2fb5e
https://github.com/phpmyadmin/phpmyadmin/commit/1d0dad5cd666a28be69a33fd54a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-23 (Tue, 04 April 2019) -03:00
Changed paths:
A templates/navigation/item_unhide_dialog.twig
M libraries/classes/Navigation/Navigation.php
M test/classes/Navigation/NavigationTest.php
Log Message:
-----------
Extract HTML from Navigation::getItemUnhideDialog()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7d199a7bc2c261c7361713c55ab25ec594dedbfb
https://github.com/phpmyadmin/phpmyadmin/commit/7d199a7bc2c261c7361713c55ab…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-23 (Tue, 04 April 2019) -03:00
Changed paths:
M libraries/classes/Header.php
M libraries/classes/Navigation/Navigation.php
M navigation.php
M test/classes/Navigation/NavigationTest.php
Log Message:
-----------
Fetch dbi from DI instead of global in Navigation class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 64455592c88edd7c7a711e5f84783616b8348be7
https://github.com/phpmyadmin/phpmyadmin/commit/64455592c88edd7c7a711e5f847…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-23 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 95.0% (3153 of 3319 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 6ae9cdf249a8da07a5dd21a1674daa212639ec72
https://github.com/phpmyadmin/phpmyadmin/commit/6ae9cdf249a8da07a5dd21a1674…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-23 (Tue, 04 April 2019) -03:00
Changed paths:
M libraries/classes/Navigation/Navigation.php
M libraries/classes/Twig/UtilExtension.php
M templates/navigation/main.twig
M themes/metro/scss/_navigation.scss
M themes/original/scss/_navigation.scss
M themes/pmahomme/scss/_navigation.scss
D libraries/classes/Navigation/NavigationHeader.php
D templates/navigation/logo.twig
Log Message:
-----------
Extract HTML from Navigation\NavigationHeader
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5254ec1b65fb21a88aceec405c159e62eda69394
https://github.com/phpmyadmin/phpmyadmin/commit/5254ec1b65fb21a88aceec405c1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-24 (Wed, 04 April 2019) -03:00
Changed paths:
A templates/navigation/tree/database_select.twig
A templates/navigation/tree/state.twig
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Navigation/Navigation.php
M libraries/classes/Navigation/NavigationTree.php
M test/classes/Config/PageSettingsTest.php
M test/classes/ConfigTest.php
M test/classes/Controllers/Table/IndexesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/HeaderTest.php
M test/classes/Navigation/NavigationTest.php
M test/classes/Navigation/NavigationTreeTest.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
Log Message:
-----------
Refactor Navigation\NavigationTree
- Extract HTML from renderState() and renderDbSelect()
- Use DI for $dbi instead of global
- Fix tests
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c2157d2a555a779e9087133f53114d57f0f2cb42
https://github.com/phpmyadmin/phpmyadmin/commit/c2157d2a555a779e9087133f531…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-24 (Wed, 04 April 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1dede94f84fc0e220dc222b6164e8e3625cc74d6
https://github.com/phpmyadmin/phpmyadmin/commit/1dede94f84fc0e220dc222b6164…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-24 (Wed, 04 April 2019) +02:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7f3088ea87b02c9b3b7c64750d16f1cfb122cf48
https://github.com/phpmyadmin/phpmyadmin/commit/7f3088ea87b02c9b3b7c64750d1…
Author: dingo thirteen <dingo13(a)gmail.com>
Date: 2019-04-24 (Wed, 04 April 2019) +02:00
Changed paths:
M po/nl.po
Log Message:
-----------
Translated using Weblate (Dutch)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nl/
Signed-off-by: dingo thirteen <dingo13(a)gmail.com>
Commit: 08117240404b8bbe3a20b5e2957b5a36defe3739
https://github.com/phpmyadmin/phpmyadmin/commit/08117240404b8bbe3a20b5e2957…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-24 (Wed, 04 April 2019) -03:00
Changed paths:
A templates/navigation/tree/path.twig
M libraries/classes/Navigation/NavigationTree.php
Log Message:
-----------
Extract HTML from NavigationTree::renderPath()
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 937579732c819bbce6b64da8bb96c428c0922f90
https://github.com/phpmyadmin/phpmyadmin/commit/937579732c819bbce6b64da8bb9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-25 (Thu, 04 April 2019) +02:00
Changed paths:
M js/ajax.js
Log Message:
-----------
Fix #15166 - Copy table keeps showing 'loading...' -- When no row is selected.
Fixes: #15166
Pull-request: #15167
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fcb406937fb9e86a5cc2fefd961cd855ce2c6aa9
https://github.com/phpmyadmin/phpmyadmin/commit/fcb406937fb9e86a5cc2fefd961…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-25 (Thu, 04 April 2019) +02:00
Changed paths:
M libraries/classes/Table.php
Log Message:
-----------
Fix #14732 - Can't rename primary key with auto increment
Fixes: #14732
Pull-request: #15204
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 52632ca08ee8357cb7a70b8a81270fee64806f31
https://github.com/phpmyadmin/phpmyadmin/commit/52632ca08ee8357cb7a70b8a812…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-25 (Thu, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/functions.js
M js/server_privileges.js
M libraries/config.values.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 836cc74413e789d3961e255ca9e939c0402bbbb4
https://github.com/phpmyadmin/phpmyadmin/commit/836cc74413e789d3961e255ca9e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-25 (Thu, 04 April 2019) +02:00
Changed paths:
M libraries/classes/Table.php
Log Message:
-----------
Fix issue reported by scrutinizer
See: fcb406937fb9e86a5cc2fefd961cd855ce2c6aa9
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 37bb5907e58b5249efbedbced1b9bf23a86207e7
https://github.com/phpmyadmin/phpmyadmin/commit/37bb5907e58b5249efbedbced1b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-25 (Thu, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/server_privileges.js
M js/server_status_monitor.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 011e918bf7ab784c13c44e2ad916d7ca0e844f7d
https://github.com/phpmyadmin/phpmyadmin/commit/011e918bf7ab784c13c44e2ad91…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-26 (Fri, 04 April 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: f29add97c4447d427acceca70260d513701a5a9d
https://github.com/phpmyadmin/phpmyadmin/commit/f29add97c4447d427acceca7026…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-04-26 (Fri, 04 April 2019) -03:00
Changed paths:
M libraries/classes/RecentFavoriteTable.php
M themes/pmahomme/scss/_navigation.scss
Log Message:
-----------
Merge pull request #15198 from murex971/css-changes
Span converted to button
Commit: c8207e9cf4b8cdd1c42bb9c5d75e79647fd1403c
https://github.com/phpmyadmin/phpmyadmin/commit/c8207e9cf4b8cdd1c42bb9c5d75…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 96.9% (3218 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 0e1dfb86d32f3352290a89044e2cb3e742770e73
https://github.com/phpmyadmin/phpmyadmin/commit/0e1dfb86d32f3352290a89044e2…
Author: Максим <genkaok(a)yandex.ru>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 96.9% (3218 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: Максим <genkaok(a)yandex.ru>
Commit: 8592079b1d30a6dfadafc3739d41c16543b158ac
https://github.com/phpmyadmin/phpmyadmin/commit/8592079b1d30a6dfadafc3739d4…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.3% (3231 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 8bcdb274863a94b95ecf07e25c0ccaf46f6bf4ca
https://github.com/phpmyadmin/phpmyadmin/commit/8bcdb274863a94b95ecf07e25c0…
Author: subo <subo098(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.3% (3231 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: subo <subo098(a)gmail.com>
Commit: 9c5ffe22a47032cf2d0ad9ac57fd3a72d86373f4
https://github.com/phpmyadmin/phpmyadmin/commit/9c5ffe22a47032cf2d0ad9ac57f…
Author: Максим <genkaok(a)yandex.ru>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.3% (3231 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: Максим <genkaok(a)yandex.ru>
Commit: 1cb6929550c372e87705cf7e4eaa238b6208d30d
https://github.com/phpmyadmin/phpmyadmin/commit/1cb6929550c372e87705cf7e4ea…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.3% (3232 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 8780fc1efd7652feb4bc7b0db094c466002c1f2e
https://github.com/phpmyadmin/phpmyadmin/commit/8780fc1efd7652feb4bc7b0db09…
Author: Максим <genkaok(a)yandex.ru>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.3% (3232 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: Максим <genkaok(a)yandex.ru>
Commit: d424643ad6cbd6da0623090b78990ed75edd5ef8
https://github.com/phpmyadmin/phpmyadmin/commit/d424643ad6cbd6da0623090b789…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.4% (3233 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 9c5828e6cd79fc0cc58e4f2b3044a1840eacb323
https://github.com/phpmyadmin/phpmyadmin/commit/9c5828e6cd79fc0cc58e4f2b304…
Author: subo <subo098(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.4% (3233 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: subo <subo098(a)gmail.com>
Commit: 501f6b3230705c65db5e58e782eb4a6d9e3480c2
https://github.com/phpmyadmin/phpmyadmin/commit/501f6b3230705c65db5e58e782e…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.5% (3236 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 3b70d3c3c6d981e99798d54415adc0109ec02a9c
https://github.com/phpmyadmin/phpmyadmin/commit/3b70d3c3c6d981e99798d54415a…
Author: subo <subo098(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.5% (3236 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: subo <subo098(a)gmail.com>
Commit: df5d069f4bc0b47117ba4282f1702ba3fddbb143
https://github.com/phpmyadmin/phpmyadmin/commit/df5d069f4bc0b47117ba4282f17…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.6% (3241 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: b30de7b4a4d4c3870cc83faf6e1506f753eb0e72
https://github.com/phpmyadmin/phpmyadmin/commit/b30de7b4a4d4c3870cc83faf6e1…
Author: subo <subo098(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.6% (3241 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: subo <subo098(a)gmail.com>
Commit: 8c5487f59a0a54b4ccdea44b37096261344c8500
https://github.com/phpmyadmin/phpmyadmin/commit/8c5487f59a0a54b4ccdea44b370…
Author: Максим <genkaok(a)yandex.ru>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.6% (3241 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: Максим <genkaok(a)yandex.ru>
Commit: 29baf88c4066f891988e596d9c18aaf614429b5c
https://github.com/phpmyadmin/phpmyadmin/commit/29baf88c4066f891988e596d9c1…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.7% (3245 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 4167760d535713102571145c2bea04ece2fa88e1
https://github.com/phpmyadmin/phpmyadmin/commit/4167760d535713102571145c2be…
Author: subo <subo098(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.7% (3245 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: subo <subo098(a)gmail.com>
Commit: 36e85fab625569364eb627b47ab872b700a0adda
https://github.com/phpmyadmin/phpmyadmin/commit/36e85fab625569364eb627b47ab…
Author: Максим <genkaok(a)yandex.ru>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.7% (3245 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: Максим <genkaok(a)yandex.ru>
Commit: bb1a181e8badcbe0a827905328269a80c81d6136
https://github.com/phpmyadmin/phpmyadmin/commit/bb1a181e8badcbe0a8279053282…
Author: Joseph Lee <cn.airsoftware(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/zh_CN.po
Log Message:
-----------
Translated using Weblate (Chinese (Simplified))
Currently translated at 99.5% (3305 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hans/
Signed-off-by: Joseph Lee <cn.airsoftware(a)gmail.com>
Commit: 6b6a01e515cc7158017cf4ad032e23aac4fa7694
https://github.com/phpmyadmin/phpmyadmin/commit/6b6a01e515cc7158017cf4ad032…
Author: Huang Zhiyi <hzy980512(a)126.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/zh_CN.po
Log Message:
-----------
Translated using Weblate (Chinese (Simplified))
Currently translated at 99.5% (3305 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hans/
Signed-off-by: Huang Zhiyi <hzy980512(a)126.com>
Commit: 067671eee57f7770ca5ff70fa82ea5581183c4ad
https://github.com/phpmyadmin/phpmyadmin/commit/067671eee57f7770ca5ff70fa82…
Author: Daniel Pratt <dan(a)fantasticdevelopment.co.uk>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/en_GB.po
Log Message:
-----------
Translated using Weblate (English (United Kingdom))
Currently translated at 98.3% (3262 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/en_GB/
Signed-off-by: Daniel Pratt <dan(a)fantasticdevelopment.co.uk>
Commit: e453ad132069db205c207db04f0f24f21b81de04
https://github.com/phpmyadmin/phpmyadmin/commit/e453ad132069db205c207db04f0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/designer/objects.js
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Server/Privileges.php
M server_privileges.php
M test/classes/Server/PrivilegesTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 96a68a9a2b26db0816bf0e12e669dffb76cc30ba
https://github.com/phpmyadmin/phpmyadmin/commit/96a68a9a2b26db0816bf0e12e66…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e3381b7282a8b467bb7922613a7222ca45a4e763
https://github.com/phpmyadmin/phpmyadmin/commit/e3381b7282a8b467bb7922613a7…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/af.po
Log Message:
-----------
Translated using Weblate (Afrikaans)
Currently translated at 8.4% (278 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/af/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 68a20481c6fab274f03ab63bbc229ef40867726e
https://github.com/phpmyadmin/phpmyadmin/commit/68a20481c6fab274f03ab63bbc2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/hy.po
Log Message:
-----------
Translated using Weblate (Armenian)
Currently translated at 60.8% (2019 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/hy/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6e638065512f32222fe8e9fde6c1e23946756bbe
https://github.com/phpmyadmin/phpmyadmin/commit/6e638065512f32222fe8e9fde6c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/br.po
Log Message:
-----------
Translated using Weblate (Breton)
Currently translated at 16.1% (534 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/br/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2222785f851116873d51c3b41726964eb5d910e2
https://github.com/phpmyadmin/phpmyadmin/commit/2222785f851116873d51c3b4172…
Author: Joseph Lee <cn.airsoftware(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/zh_CN.po
Log Message:
-----------
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hans/
Signed-off-by: Joseph Lee <cn.airsoftware(a)gmail.com>
Commit: 1c88d437c2fd8324ef7389a11011a30326f1edc6
https://github.com/phpmyadmin/phpmyadmin/commit/1c88d437c2fd8324ef7389a1101…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ksh.po
Log Message:
-----------
Translated using Weblate (Colognian)
Currently translated at 0.8% (28 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ksh/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b530b3d224cd58ef360146ce2862c3e8363a11d7
https://github.com/phpmyadmin/phpmyadmin/commit/b530b3d224cd58ef360146ce286…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/da.po
Log Message:
-----------
Translated using Weblate (Danish)
Currently translated at 96.5% (3205 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/da/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 294c28f42a2d9c9c062215f493937bec7c0fd3dd
https://github.com/phpmyadmin/phpmyadmin/commit/294c28f42a2d9c9c062215f4939…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/en_GB.po
Log Message:
-----------
Translated using Weblate (English (United Kingdom))
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/en_GB/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2e3cfa9bfe6e225b066fd0271edd1aceb32c6ab2
https://github.com/phpmyadmin/phpmyadmin/commit/2e3cfa9bfe6e225b066fd0271ed…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/eo.po
Log Message:
-----------
Translated using Weblate (Esperanto)
Currently translated at 13.1% (436 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/eo/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9a73cdc0222b78c9ccac487014c0caa4b5f652d5
https://github.com/phpmyadmin/phpmyadmin/commit/9a73cdc0222b78c9ccac487014c…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 87ec8829e646222a5cf1b64a2705670ee504c36d
https://github.com/phpmyadmin/phpmyadmin/commit/87ec8829e646222a5cf1b64a270…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/gl.po
Log Message:
-----------
Translated using Weblate (Galician)
Currently translated at 77.7% (2580 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/gl/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: cd3be16c6d2b4d14dbf67501b958da5e2a16dea1
https://github.com/phpmyadmin/phpmyadmin/commit/cd3be16c6d2b4d14dbf67501b95…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ka.po
Log Message:
-----------
Translated using Weblate (Georgian)
Currently translated at 11.7% (389 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ka/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1c00b7948df57fa12d9e5fbd9c81e78a2b3e57e8
https://github.com/phpmyadmin/phpmyadmin/commit/1c00b7948df57fa12d9e5fbd9c8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/gu.po
Log Message:
-----------
Translated using Weblate (Gujarati)
Currently translated at 0.1% (2 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/gu/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4c253bda122162a1ed689cf95af3e755cb6fe0ac
https://github.com/phpmyadmin/phpmyadmin/commit/4c253bda122162a1ed689cf95af…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: edd04b2a7525e0548f330f8f69bd4ea1e1376c1e
https://github.com/phpmyadmin/phpmyadmin/commit/edd04b2a7525e0548f330f8f69b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/kn.po
Log Message:
-----------
Translated using Weblate (Kannada)
Currently translated at 3.6% (119 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kn/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ec372c333530d3520ac1723ef26d657b3091cf38
https://github.com/phpmyadmin/phpmyadmin/commit/ec372c333530d3520ac1723ef26…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 99.2% (3294 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: f99abf307cb2f755c78a2291eac49810772f1f99
https://github.com/phpmyadmin/phpmyadmin/commit/f99abf307cb2f755c78a2291eac…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ms.po
Log Message:
-----------
Translated using Weblate (Malay)
Currently translated at 10.0% (331 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ms/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 99399c1e29eb12e4a800fe98b561d98572d1a8c7
https://github.com/phpmyadmin/phpmyadmin/commit/99399c1e29eb12e4a800fe98b56…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/mn.po
Log Message:
-----------
Translated using Weblate (Mongolian)
Currently translated at 17.9% (593 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/mn/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c712226764b2fd9c515b5495ec5f75af5b322371
https://github.com/phpmyadmin/phpmyadmin/commit/c712226764b2fd9c515b5495ec5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/fa.po
Log Message:
-----------
Translated using Weblate (Persian)
Currently translated at 24.4% (811 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fa/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8e3438d2e4848c1252b60b0a51cbebe7f4336b71
https://github.com/phpmyadmin/phpmyadmin/commit/8e3438d2e4848c1252b60b0a51c…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 33b658b9f8e3c0903a5079502063ba9ea63fba7e
https://github.com/phpmyadmin/phpmyadmin/commit/33b658b9f8e3c0903a507950206…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 97.8% (3247 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 8f935a17f629f9f786f4bcc0107b6e89e689f5dc
https://github.com/phpmyadmin/phpmyadmin/commit/8f935a17f629f9f786f4bcc0107…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 473339cbcfbca50c86e480b4e765e288e755d016
https://github.com/phpmyadmin/phpmyadmin/commit/473339cbcfbca50c86e480b4e76…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ta.po
Log Message:
-----------
Translated using Weblate (Tamil)
Currently translated at 33.3% (1106 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ta/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 30bb4b9a9814da5bb267ff5c484a67316dccd1c9
https://github.com/phpmyadmin/phpmyadmin/commit/30bb4b9a9814da5bb267ff5c484…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3320 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 7b7fb0e0e03e5bd3976431c0deca626de575da92
https://github.com/phpmyadmin/phpmyadmin/commit/7b7fb0e0e03e5bd3976431c0dec…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/tk.po
Log Message:
-----------
Translated using Weblate (Turkmen)
Currently translated at 0.3% (9 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tk/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1f9264967f81c00fa91ef7dd821f345251e173ec
https://github.com/phpmyadmin/phpmyadmin/commit/1f9264967f81c00fa91ef7dd821…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/ur.po
Log Message:
-----------
Translated using Weblate (Urdu)
Currently translated at 16.6% (551 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ur/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fd55a3cb59252c6d77ef21d1ec1e60e0cab9222f
https://github.com/phpmyadmin/phpmyadmin/commit/fd55a3cb59252c6d77ef21d1ec1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/uz.po
Log Message:
-----------
Translated using Weblate (Uzbek)
Currently translated at 29.4% (976 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/uz/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e72e3cc42e020dc3abf0020d521395e93ac4d871
https://github.com/phpmyadmin/phpmyadmin/commit/e72e3cc42e020dc3abf0020d521…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/uz(a)latin.po
Log Message:
-----------
Translated using Weblate (Uzbek (latin))
Currently translated at 29.1% (965 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/uz_Latn/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b3df714784baab3a1825cd3360b519666b5dd6f0
https://github.com/phpmyadmin/phpmyadmin/commit/b3df714784baab3a1825cd3360b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/vls.po
Log Message:
-----------
Translated using Weblate (West Flemish)
Currently translated at 2.4% (79 of 3320 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/vls/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: becd262e3a7ff8515b058801fa9245808bd862e7
https://github.com/phpmyadmin/phpmyadmin/commit/becd262e3a7ff8515b058801fa9…
Author: Hosted Weblate <hosted(a)weblate.org>
Date: 2019-04-27 (Sat, 04 April 2019) +02:00
Changed paths:
M po/af.po
M po/br.po
M po/da.po
M po/en_GB.po
M po/eo.po
M po/fa.po
M po/fr.po
M po/gl.po
M po/gu.po
M po/hy.po
M po/ja.po
M po/ka.po
M po/kk.po
M po/kn.po
M po/ksh.po
M po/mn.po
M po/ms.po
M po/pt.po
M po/ru.po
M po/sl.po
M po/ta.po
M po/tk.po
M po/tr.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vls.po
M po/zh_CN.po
Log Message:
-----------
Merge branch 'origin/master' into Weblate.
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/
Commit: 1524ec51c8248d857b2fc9b363fd1d1e8c2221af
https://github.com/phpmyadmin/phpmyadmin/commit/1524ec51c8248d857b2fc9b363f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-28 (Sun, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Server/Status/ProcessesController.php
M templates/config/form_display/errors.twig
M templates/preferences/manage/error.twig
M templates/server/status/processes/list.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c6d8fb457390f62c4b2ed44cf7472075002c21f0
https://github.com/phpmyadmin/phpmyadmin/commit/c6d8fb457390f62c4b2ed44cf74…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-28 (Sun, 04 April 2019) +02:00
Changed paths:
M ChangeLog
M js/error_report.js
M js/functions.js
M js/indexes.js
M js/tbl_change.js
M libraries/classes/Index.php
Log Message:
-----------
Merge branch 'QA_4_8'
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: efe0f30d63c9ef55eee11121d8e2daf97ce6ab91
https://github.com/phpmyadmin/phpmyadmin/commit/efe0f30d63c9ef55eee11121d8e…
Author: dingo thirteen <dingo13(a)gmail.com>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/nl.po
Log Message:
-----------
Translated using Weblate (Dutch)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nl/
Signed-off-by: dingo thirteen <dingo13(a)gmail.com>
Commit: 97564b24aed15d8398749fcb3f4f65d04c2384c1
https://github.com/phpmyadmin/phpmyadmin/commit/97564b24aed15d8398749fcb3f4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/en_GB.po
Log Message:
-----------
Translated using Weblate (English (United Kingdom))
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/en_GB/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 15796f5bed322ab93c66be59b7829fa476ecb20d
https://github.com/phpmyadmin/phpmyadmin/commit/15796f5bed322ab93c66be59b78…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c19bcae97b00a3ac5e0cae80642e5bad128b175e
https://github.com/phpmyadmin/phpmyadmin/commit/c19bcae97b00a3ac5e0cae80642…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: d65b726c6116bcf3d0488c7eb64e7e9427ff84a2
https://github.com/phpmyadmin/phpmyadmin/commit/d65b726c6116bcf3d0488c7eb64…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 99.8% (3315 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: d826ad223e85cfc5d91b8fed798071138704f22a
https://github.com/phpmyadmin/phpmyadmin/commit/d826ad223e85cfc5d91b8fed798…
Author: Allan Nordhøy <epost(a)anotheragency.no>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/nb.po
Log Message:
-----------
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.9% (1989 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nb_NO/
Signed-off-by: Allan Nordhøy <epost(a)anotheragency.no>
Commit: 882393ad29f6858458f17980679d1d37851cf7b7
https://github.com/phpmyadmin/phpmyadmin/commit/882393ad29f6858458f17980679…
Author: ssantos <ssantos(a)web.de>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 779e53257dcf8e70e8e41f5d83f28b3dfe879f72
https://github.com/phpmyadmin/phpmyadmin/commit/779e53257dcf8e70e8e41f5d83f…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 4f886aaf6256b650fc1c7fcfa17e9cd83065fcdb
https://github.com/phpmyadmin/phpmyadmin/commit/4f886aaf6256b650fc1c7fcfa17…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-04-29 (Mon, 04 April 2019) +02:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 13050ed0750db9d488c41e16fdf3fe4f5b865cfe
https://github.com/phpmyadmin/phpmyadmin/commit/13050ed0750db9d488c41e16fdf…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-04-30 (Tue, 04 April 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: e42f22148e98c904557b0981dc9f086962b036d1
https://github.com/phpmyadmin/phpmyadmin/commit/e42f22148e98c904557b0981dc9…
Author: Allan Nordhøy <epost(a)anotheragency.no>
Date: 2019-04-30 (Tue, 04 April 2019) +02:00
Changed paths:
M po/nb.po
Log Message:
-----------
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.8% (1986 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nb_NO/
Signed-off-by: Allan Nordhøy <epost(a)anotheragency.no>
Commit: 7ef2b2b122e370b3408698f9573101eeeaa52a5a
https://github.com/phpmyadmin/phpmyadmin/commit/7ef2b2b122e370b3408698f9573…
Author: Allan Nordhøy <epost(a)anotheragency.no>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M po/nb.po
Log Message:
-----------
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.8% (1986 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nb_NO/
Signed-off-by: Allan Nordhøy <epost(a)anotheragency.no>
Commit: 010c9819602af0e4570f7202598d3e2aff1f419e
https://github.com/phpmyadmin/phpmyadmin/commit/010c9819602af0e4570f7202598…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 26a6a8dd4ce1454804080dd86b8ea991ccce0d42
https://github.com/phpmyadmin/phpmyadmin/commit/26a6a8dd4ce1454804080dd86b8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-01 (Wed, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Config/Validator.php
M libraries/classes/Controllers/Server/DatabasesController.php
M tbl_create.php
M tbl_operations.php
M test/classes/Config/FormDisplayTemplateTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 40cc2dc813468032c12343bb07de1ccaff1da5c1
https://github.com/phpmyadmin/phpmyadmin/commit/40cc2dc813468032c12343bb07d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M db_operations.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Database/Designer.php
M libraries/classes/Display/Export.php
M libraries/classes/Display/Import.php
M libraries/classes/ErrorReport.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Template.php
M libraries/classes/Transformations.php
Log Message:
-----------
Fix @var comments to match the phpdoc reference
See: http://docs.phpdoc.org/references/phpdoc/tags/var.html
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: fbd89fb882715cdd08cb24c67a6c8470e1c6285f
https://github.com/phpmyadmin/phpmyadmin/commit/fbd89fb882715cdd08cb24c67a6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M gis_data_editor.php
M js/error_report.js
M libraries/classes/Charsets.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/ErrorReport.php
M libraries/classes/Gis/GisGeometry.php
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/Sql.php
M libraries/classes/Types.php
M libraries/classes/Util.php
M tbl_replace.php
M test/classes/TypesTest.php
M test/classes/UtilTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f66841d8efe66476747a6d079acd63619861ff58
https://github.com/phpmyadmin/phpmyadmin/commit/f66841d8efe66476747a6d079ac…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-01 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Charsets.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Types.php
M libraries/classes/Util.php
M tbl_replace.php
M test/classes/ErrorReportTest.php
Log Message:
-----------
Fix coding standard errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b2bfebd70992de9da8b63fef5672b3cfea475606
https://github.com/phpmyadmin/phpmyadmin/commit/b2bfebd70992de9da8b63fef567…
Author: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Date: 2019-05-01 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Navigation/Nodes/NodeColumn.php
M libraries/classes/Navigation/Nodes/NodeTable.php
Log Message:
-----------
Add icon and details only to column view in navigation tree (#14910)
Fixes #14890
Signed-off-by: Saurabh Srivastava <saurabhsrivastava312(a)gmail.com>
Commit: defd6761bafff72d53acc79571e19a89428e8bed
https://github.com/phpmyadmin/phpmyadmin/commit/defd6761bafff72d53acc79571e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-01 (Wed, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Navigation/Nodes/NodeColumn.php
M test/classes/Navigation/Nodes/NodeColumnTest.php
Log Message:
-----------
Add ChangeLog entry for #14890
Display column details in navigation bar
- Fix coding standard errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a0d091e1f86c858b00a686572a7671fa095b3c3a
https://github.com/phpmyadmin/phpmyadmin/commit/a0d091e1f86c858b00a686572a7…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M test/classes/ErrorReportTest.php
Log Message:
-----------
Add test for sanitizeUrl and improve testGetForm with real data
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0bdf3486f37228cc01ef7090dff683dd98b93e76
https://github.com/phpmyadmin/phpmyadmin/commit/0bdf3486f37228cc01ef7090dff…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M js/error_report.js
M libraries/classes/ErrorReport.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c94aec86953f861f19720245f7f9a3d812232f6b
https://github.com/phpmyadmin/phpmyadmin/commit/c94aec86953f861f19720245f7f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-01 (Wed, 05 May 2019) +02:00
Changed paths:
M libraries/classes/ErrorReport.php
Log Message:
-----------
Fix coding standard warning and removed typehint
Fix 'Usage of ELSE IF is discouraged; use ELSEIF'
Removed typehint because it creates an exception because sending functions return mixed and not string
You can see this was expected on error_report.php 'if ($server_response === false) {'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c0d56fa54c1825c8a8bf2d99b8012dee8eb7ae73
https://github.com/phpmyadmin/phpmyadmin/commit/c0d56fa54c1825c8a8bf2d99b80…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-02 (Thu, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M templates/server/privileges/edit_routine_privileges.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: dbbe08ffd6b5a0b3abdee9f8b8088bf9447bf1c9
https://github.com/phpmyadmin/phpmyadmin/commit/dbbe08ffd6b5a0b3abdee9f8b80…
Author: Allan Nordhøy <epost(a)anotheragency.no>
Date: 2019-05-02 (Thu, 05 May 2019) +02:00
Changed paths:
M po/nb.po
Log Message:
-----------
Translated using Weblate (Norwegian Bokmål)
Currently translated at 59.8% (1985 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/nb_NO/
Signed-off-by: Allan Nordhøy <epost(a)anotheragency.no>
Commit: bb66711c6b9c06d749f4ff17201751f0240590cb
https://github.com/phpmyadmin/phpmyadmin/commit/bb66711c6b9c06d749f4ff17201…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-02 (Thu, 05 May 2019) +02:00
Changed paths:
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a52c35f4447077b941aaf28545b8f57e8409bacc
https://github.com/phpmyadmin/phpmyadmin/commit/a52c35f4447077b941aaf28545b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-03 (Fri, 05 May 2019) -03:00
Changed paths:
M libraries/advisory_rules.txt
Log Message:
-----------
Merge pull request #14965 from bahl24/fix#14958
Modified rule for InnoDB log size warning in libraries/advisory_rules.txt
Commit: 6a43cccf20355422dbc98d89f24f9f8986d1f981
https://github.com/phpmyadmin/phpmyadmin/commit/6a43cccf20355422dbc98d89f24…
Author: Nitish Bahl <nitishbahl24(a)gmail.com>
Date: 2019-05-03 (Fri, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Navigation/NavigationTree.php
Log Message:
-----------
Add title for group in navigation bar
Closes: #14977
Signed-off-by: Nitish Bahl <nitishbahl24(a)gmail.com>
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b851f9d1fc20d75e3f08208214e63fb21f81c5a7
https://github.com/phpmyadmin/phpmyadmin/commit/b851f9d1fc20d75e3f08208214e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M js/functions.js
M js/makegrid.js
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2ec96f829c2adc287e5034b830009ad521e6a24d
https://github.com/phpmyadmin/phpmyadmin/commit/2ec96f829c2adc287e5034b8300…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Use [] instead of array()
See: b851f9d1fc20d75e3f08208214e63fb21f81c5a7
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 62ad886718504dbb55e2eb06d432104298fdd9e9
https://github.com/phpmyadmin/phpmyadmin/commit/62ad886718504dbb55e2eb06d43…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M js/config.js
M libraries/classes/Config/Validator.php
M libraries/config.values.php
M prefs_forms.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: eeb0034848e03e3bff448f7165b101682b6412c8
https://github.com/phpmyadmin/phpmyadmin/commit/eeb0034848e03e3bff448f7165b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M js/config.js
Log Message:
-----------
Fix ESLint error
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8d875747c7262a1cc52e1c84d394cf8a51a5e9e4
https://github.com/phpmyadmin/phpmyadmin/commit/8d875747c7262a1cc52e1c84d39…
Author: Nitish Bahl <nitishbahl24(a)gmail.com>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Table/StructureController.php
M templates/table/structure/display_table_stats.twig
Log Message:
-----------
added optimize for innodb engine
Signed-off-by: Nitish Bahl <nitishbahl24(a)gmail.com>
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ce22214f8783be3b2c14d58d8b178aec636b73c2
https://github.com/phpmyadmin/phpmyadmin/commit/ce22214f8783be3b2c14d58d8b1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14927
Show InnoDB table overhead (free space)
Closes #14970
Closes #14927
[ci skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 175133d47b24662a9851a64ebcd39be520602db1
https://github.com/phpmyadmin/phpmyadmin/commit/175133d47b24662a9851a64ebcd…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Menu.php
Log Message:
-----------
Merge branch 'QA_4_8'
Closes: #15158
Signed-off-by: Agha Saad Fraz agha.saad04(a)gmail.com
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fdfff01083e8241b1d647cacdc8fa1c4abeb2e05
https://github.com/phpmyadmin/phpmyadmin/commit/fdfff01083e8241b1d647cacdc8…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
A libraries/classes/UserPreferencesHeader.php
M prefs_forms.php
M prefs_manage.php
M prefs_twofactor.php
D libraries/user_preferences.inc.php
Log Message:
-----------
Change "user_preferences.inc.php" file as a class
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: f5b475fdbd571936bdd0269779e1b8f188f3833c
https://github.com/phpmyadmin/phpmyadmin/commit/f5b475fdbd571936bdd0269779e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
A test/classes/UserPreferencesHeaderTest.php
Log Message:
-----------
Add UserPreferencesTest
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 8261661258a2ea7863957265654444d013d8f54e
https://github.com/phpmyadmin/phpmyadmin/commit/8261661258a2ea7863957265654…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/InsertEdit.php
M test/classes/InsertEditTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: fb78fa6fc0aa27e5433d38db5ca2097fc8228c05
https://github.com/phpmyadmin/phpmyadmin/commit/fb78fa6fc0aa27e5433d38db5ca…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Message.php
Log Message:
-----------
Message in Message class is self
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: d8f9695830e109a6ddfd2f38e81d63e881577e92
https://github.com/phpmyadmin/phpmyadmin/commit/d8f9695830e109a6ddfd2f38e81…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-04 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Message.php
Log Message:
-----------
Minor improvements in Message class
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 0ccae90725e531bf1d7c0294b2ca86fbc0d24b77
https://github.com/phpmyadmin/phpmyadmin/commit/0ccae90725e531bf1d7c0294b2c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Message.php
Log Message:
-----------
Merge pull request #15243 from Tithugues/feature/message-in-message-is-self
Message in Message class is self
Commit: 3ec6d02578394d93806f009d46bae8f66719a7f1
https://github.com/phpmyadmin/phpmyadmin/commit/3ec6d02578394d93806f009d46b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Message.php
Log Message:
-----------
Merge pull request #15244 from Tithugues/feature/minor-improvements-on-message-class
Minor improvements in Message class
Commit: 1bf8123b88e2ceb558d4ed455de89097196272c9
https://github.com/phpmyadmin/phpmyadmin/commit/1bf8123b88e2ceb558d4ed455de…
Author: Anton Mokrousov <settingx(a)mail.ru>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M js/server_status_monitor.js
Log Message:
-----------
Issue #15072 fix (added button)
Added button "Close" at the bottom of "Monitor instructions" window to make it similar to other dialog windows
Signed-off-by: Anton Mokrousov <settingx(a)mail.ru>
Commit: 8112dc8bc7a381ab1fe90970b53e23a0b7d7a026
https://github.com/phpmyadmin/phpmyadmin/commit/8112dc8bc7a381ab1fe90970b53…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-04 (Sat, 05 May 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15072
Fixes #15072
Closes #15114
Closes #15073
[ci skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 14da395f75261d0ae0d179d4249e2271ba25cedb
https://github.com/phpmyadmin/phpmyadmin/commit/14da395f75261d0ae0d179d4249…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-05 (Sun, 05 May 2019) -03:00
Changed paths:
A libraries/classes/UserPreferencesHeader.php
A test/classes/UserPreferencesHeaderTest.php
M prefs_forms.php
M prefs_manage.php
M prefs_twofactor.php
D libraries/user_preferences.inc.php
Log Message:
-----------
Merge pull request #15241 from Tithugues/feature/change-user-preferences-include-as-a-class
Change "user_preferences.inc.php" file as a class
Commit: 1819259b8438364bd31fc76b21000b4da8082804
https://github.com/phpmyadmin/phpmyadmin/commit/1819259b8438364bd31fc76b210…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-05 (Sun, 05 May 2019) +02:00
Changed paths:
A libraries/classes/Display/Error.php
A templates/error/generic.twig
M libraries/classes/Core.php
M phpstan.neon.dist
D libraries/error.inc.php
Log Message:
-----------
Change "error.inc.php" file as a class
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: cccd82091472841fffb2348ac09dc78238bdba6f
https://github.com/phpmyadmin/phpmyadmin/commit/cccd82091472841fffb2348ac09…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-05 (Sun, 05 May 2019) +02:00
Changed paths:
A test/classes/Display/ErrorTest.php
Log Message:
-----------
Add Display/ErrorTest class
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: bd1a48b3aa99ace35225901c6627d66ad25b5b6e
https://github.com/phpmyadmin/phpmyadmin/commit/bd1a48b3aa99ace35225901c662…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d19bc53626900018c0eeeba01c501d1d155e0c4b
https://github.com/phpmyadmin/phpmyadmin/commit/d19bc53626900018c0eeeba01c5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Plugins/Export/ExportJson.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0b9aad74e4251f9b96228cff451b3558d164a76a
https://github.com/phpmyadmin/phpmyadmin/commit/0b9aad74e4251f9b96228cff451…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M test/classes/Plugins/Export/ExportJsonTest.php
M test/classes/Plugins/Export/ExportOdsTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4b628b6553269bdfc4daba76d0de1c1afbd87f03
https://github.com/phpmyadmin/phpmyadmin/commit/4b628b6553269bdfc4daba76d0d…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Config.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/TwoFactor.php
M libraries/classes/Util.php
Log Message:
-----------
Replace class name as string by ":class"
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 052e22c1a676f86548f0af9a7956706d042c462a
https://github.com/phpmyadmin/phpmyadmin/commit/052e22c1a676f86548f0af9a795…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Controllers/HomeController.php
M libraries/classes/ErrorReport.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Schema/Pdf/Pdf.php
M libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php
M libraries/classes/Response.php
Log Message:
-----------
Use magic variables when possible
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: fc1ffb141399d0d4a9117065661ca2928f206c33
https://github.com/phpmyadmin/phpmyadmin/commit/fc1ffb141399d0d4a9117065661…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Util.php
Log Message:
-----------
Replace regexp by str_replace when possible
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 3470dd4918220038562203d0e69de3fb3ea14627
https://github.com/phpmyadmin/phpmyadmin/commit/3470dd4918220038562203d0e69…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Remove useless "i" modifier on non-character selection
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: d28894d9ba5a14d24abe4afcfbaba3bab9ec23a2
https://github.com/phpmyadmin/phpmyadmin/commit/d28894d9ba5a14d24abe4afcfba…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
A libraries/classes/TablePartitionDefinition.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/tbl_columns_definition_form.inc.php
D libraries/tbl_partition_definition.inc.php
Log Message:
-----------
Change "tbl_partition_definition.inc.php" file as a class
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 69895e4bb1c2f1b68cd7bc6d4369270ad356974f
https://github.com/phpmyadmin/phpmyadmin/commit/69895e4bb1c2f1b68cd7bc6d436…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-07 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Config.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/InsertEdit.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Sql.php
M libraries/classes/Util.php
Log Message:
-----------
Use "strpos" instead of "strstr" to improve performances
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 4adc7a2c4c3ba4f23abaa161c07531fdcf65664e
https://github.com/phpmyadmin/phpmyadmin/commit/4adc7a2c4c3ba4f23abaa161c07…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-07 (Tue, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Controllers/HomeController.php
M libraries/classes/ErrorReport.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Schema/Pdf/Pdf.php
M libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php
M libraries/classes/Response.php
Log Message:
-----------
Merge pull request #15254 from Tithugues/feature/use-magic-variables-when-possible
Use magic variables when possible
Commit: 5b9ad4ebd3d27c9e48b465f512f3fe40dc0cc73f
https://github.com/phpmyadmin/phpmyadmin/commit/5b9ad4ebd3d27c9e48b465f512f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-07 (Tue, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Config.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/TwoFactor.php
M libraries/classes/Util.php
Log Message:
-----------
Merge pull request #15255 from Tithugues/feature/replace-class-name-as-string
Replace class name as string by ":class"
Commit: 53dc1ff844d440e038f0d456a38affa1c4ad6a11
https://github.com/phpmyadmin/phpmyadmin/commit/53dc1ff844d440e038f0d456a38…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
A libraries/classes/Display/Error.php
A templates/error/generic.twig
A test/classes/Display/ErrorTest.php
M libraries/classes/Core.php
M phpstan.neon.dist
D libraries/error.inc.php
Log Message:
-----------
Merge pull request #15245 from Tithugues/feature/change-error-include-as-a-class
Change "error.inc.php" file as a class
Commit: e0c3f09a333c7fddd8e74ccebdbd42ec6b8b104b
https://github.com/phpmyadmin/phpmyadmin/commit/e0c3f09a333c7fddd8e74ccebdb…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
A libraries/classes/TablePartitionDefinition.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/tbl_columns_definition_form.inc.php
D libraries/tbl_partition_definition.inc.php
Log Message:
-----------
Merge pull request #15253 from Tithugues/feature/change-tbl-partition-definition-include-as-a-class
Change "tbl_partition_definition.inc.php" file as a class
Commit: 620afff0eaee4590c0be9896502638b3a1aa0e86
https://github.com/phpmyadmin/phpmyadmin/commit/620afff0eaee4590c0be9896502…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Util.php
Log Message:
-----------
Merge pull request #15256 from Tithugues/feature/replace-regexp-by-replace
Replace regexp by str_replace when possible
Commit: ad2c698650f7ab7bc2bd6c79dced793a3972ad6f
https://github.com/phpmyadmin/phpmyadmin/commit/ad2c698650f7ab7bc2bd6c79dce…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Merge pull request #15257 from Tithugues/feature/useless-i-modifier
Remove useless "i" modifier on non-character selection
Commit: 422cd3ade2ead4b48f9fc2eedf2a3c855698e46c
https://github.com/phpmyadmin/phpmyadmin/commit/422cd3ade2ead4b48f9fc2eedf2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Config.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/InsertEdit.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Sql.php
M libraries/classes/Util.php
Log Message:
-----------
Merge pull request #15258 from Tithugues/feature/use-strpos-instead-of-strstr
Use "strpos" instead of "strstr" to improve performances
Commit: 0db80bf132ac4bbb86734fe630043f2c38b17e2e
https://github.com/phpmyadmin/phpmyadmin/commit/0db80bf132ac4bbb86734fe6300…
Author: Dhruv Gupta <32172694+imdhruvgupta(a)users.noreply.github.com>
Date: 2019-05-08 (Wed, 05 May 2019) -03:00
Changed paths:
M js/replication.js
M js/server_status_monitor.js
M js/server_status_queries.js
M js/server_user_groups.js
M js/server_variables.js
Log Message:
-----------
[REFACTOR] Removed unused variables and added file description comments (#15173)
Signed-off-by: Dhruv Gupta <gdhruv167(a)gmail.com>
Commit: 31ab2cb4e8531e164377475b25ed9d41569a27ad
https://github.com/phpmyadmin/phpmyadmin/commit/31ab2cb4e8531e164377475b25e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M db_designer.php
M doc/credits.rst
M js/designer/move.js
M libraries/classes/Plugins/Auth/AuthenticationSignon.php
M test/classes/Plugins/Auth/AuthenticationSignonTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 45dc3426668b73d42a3e3b581fb7decff820b5f7
https://github.com/phpmyadmin/phpmyadmin/commit/45dc3426668b73d42a3e3b581fb…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-10 (Fri, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Plugins/Auth/AuthenticationSignon.php
M test/classes/Plugins/Auth/AuthenticationSignonTest.php
Log Message:
-----------
Fix coding standard errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3243a9158d022fbd50a2c5c1ecd5b5ae290f51eb
https://github.com/phpmyadmin/phpmyadmin/commit/3243a9158d022fbd50a2c5c1ecd…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Config/FormDisplayTemplate.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/CreateAddField.php
M libraries/classes/Display/Results.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Rte/RteList.php
M libraries/classes/Sql.php
M libraries/classes/SysInfoWINNT.php
Log Message:
-----------
Remove use of unexisting variables
Remove useless variables
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 5f44cd3b68c7f1e94cb27fd3abffb15d608c6019
https://github.com/phpmyadmin/phpmyadmin/commit/5f44cd3b68c7f1e94cb27fd3abf…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Plugins/Export/Helpers/Pdf.php
Log Message:
-----------
Remove comment
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 42d36a75f21b2733ee2907582a59c2043d8bbbd7
https://github.com/phpmyadmin/phpmyadmin/commit/42d36a75f21b2733ee2907582a5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M export.php
M import.php
M libraries/classes/Config/PageSettings.php
M libraries/classes/Export.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Auth/AuthenticationSignon.php
M libraries/classes/Sql.php
M libraries/classes/Tracking.php
M navigation.php
Log Message:
-----------
Use exit; instead of exit(); because exit; is most common in codebase
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 609f9fd871a5d0bfebbfd6d7bfd4e2169acbfdae
https://github.com/phpmyadmin/phpmyadmin/commit/609f9fd871a5d0bfebbfd6d7bfd…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M db_designer.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 45e923d9bd16eef49cd3ce9b116762e97eb753c1
https://github.com/phpmyadmin/phpmyadmin/commit/45e923d9bd16eef49cd3ce9b116…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-10 (Fri, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Config/FormDisplayTemplate.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/CreateAddField.php
M libraries/classes/Display/Results.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Rte/RteList.php
M libraries/classes/Sql.php
M libraries/classes/SysInfoWINNT.php
Log Message:
-----------
Merge pull request #15259 from Tithugues/fix/remove-unexisting-or-useless-variables
Remove use of unexisting / useless variables
Commit: cafd4b3ee66b185998375f6801834c871139b3c2
https://github.com/phpmyadmin/phpmyadmin/commit/cafd4b3ee66b185998375f68018…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-11 (Sat, 05 May 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Upgrade sql-parser to version 5.0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c88964caace815102c1cc06def83d5a708823ba2
https://github.com/phpmyadmin/phpmyadmin/commit/c88964caace815102c1cc06def8…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Controllers/AbstractController.php
Log Message:
-----------
Fix property visibility
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 9da8ee38215d7c1c20d120ac437e3c22b2bb2300
https://github.com/phpmyadmin/phpmyadmin/commit/9da8ee38215d7c1c20d120ac437…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-11 (Sat, 05 May 2019) +02:00
Changed paths:
M composer.json
Log Message:
-----------
Sort dependencies in composer.json
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 079cb8dcc0a8533237838bd3ac796dd8518606e6
https://github.com/phpmyadmin/phpmyadmin/commit/079cb8dcc0a8533237838bd3ac7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-11 (Sat, 05 May 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Merge pull request #15265 from Tithugues/feature/sort-dependencies-in-composer-json
Sort dependencies in composer.json
Commit: 65b619c5a8833091a6ca65627c812d0bb570e20d
https://github.com/phpmyadmin/phpmyadmin/commit/65b619c5a8833091a6ca65627c8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-12 (Sun, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Operations.php
Log Message:
-----------
Merge branch 'QA_4_8'
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 720e302de5c1ad5db1fb1cbcad3eaaec948ca465
https://github.com/phpmyadmin/phpmyadmin/commit/720e302de5c1ad5db1fb1cbcad3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-13 (Mon, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Controllers/AbstractController.php
Log Message:
-----------
Merge pull request #15264 from Tithugues/fix/property-visibility
Fix property visibility
Commit: 94a18417eed5e0c7a29f79eedb2ec3f5d065eacf
https://github.com/phpmyadmin/phpmyadmin/commit/94a18417eed5e0c7a29f79eedb2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_operations.php
M setup/index.php
M sql.php
M tbl_addfield.php
M tbl_change.php
M tbl_create.php
M user_password.php
Log Message:
-----------
Declare $cfg global variable explicitly
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6aeccaada792a2f76b00ef555a4bc6f12bb8b445
https://github.com/phpmyadmin/phpmyadmin/commit/6aeccaada792a2f76b00ef555a4…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M phpstan.neon.dist
Log Message:
-----------
Ignore $cfg only in ConfigTest and PmaTestCase
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 45546661aa9894aa610a45f88b0f0b42f1b23947
https://github.com/phpmyadmin/phpmyadmin/commit/45546661aa9894aa610a45f88b0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_central_columns.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_import.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_routines.php
M db_search.php
M db_sql.php
M db_structure.php
M db_tracking.php
M db_triggers.php
M export.php
M import.php
M libraries/db_table_exists.inc.php
M normalization.php
M phpstan.neon.dist
M server_export.php
M server_import.php
M server_privileges.php
M tbl_addfield.php
M tbl_change.php
M tbl_create.php
M tbl_export.php
M tbl_get_field.php
M tbl_import.php
M tbl_operations.php
M tbl_replace.php
M tbl_row_action.php
M tbl_sql.php
M transformation_wrapper.php
Log Message:
-----------
Remove $db from ignore errors for PHPStan
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 82a03931d6bf8c2b81a7d69d0bad3cd592034dec
https://github.com/phpmyadmin/phpmyadmin/commit/82a03931d6bf8c2b81a7d69d0ba…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_events.php
M db_export.php
M db_import.php
M db_routines.php
M db_triggers.php
M import.php
M libraries/db_table_exists.inc.php
M normalization.php
M phpstan.neon.dist
M server_export.php
M server_import.php
M tbl_addfield.php
M tbl_change.php
M tbl_create.php
M tbl_get_field.php
M tbl_import.php
M tbl_operations.php
M tbl_replace.php
M tbl_row_action.php
M tbl_sql.php
M transformation_wrapper.php
Log Message:
-----------
Remove $table global from ignored errors for PHPStan
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f19ab9a0b0d68d6c98505af263bbaa0d3ea3918c
https://github.com/phpmyadmin/phpmyadmin/commit/f19ab9a0b0d68d6c98505af263b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_qbe.php
M db_tracking.php
M import.php
M phpstan.neon.dist
M server_privileges.php
M sql.php
M tbl_row_action.php
M tbl_tracking.php
Log Message:
-----------
Remove $pmaThemeImage global from ignored errors for PHPStan
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e2f66cf9e49a49b8614ffaf3b20dfbaa74971605
https://github.com/phpmyadmin/phpmyadmin/commit/e2f66cf9e49a49b8614ffaf3b20…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_tracking.php
M phpstan.neon.dist
M server_privileges.php
M tbl_change.php
M tbl_tracking.php
M view_create.php
Log Message:
-----------
Remove $text_dir global from PHPStan ignored errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 50bcfc8ed6e158869e87ea7fd8ae7d7c15b03297
https://github.com/phpmyadmin/phpmyadmin/commit/50bcfc8ed6e158869e87ea7fd8a…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Header.php
M libraries/classes/Menu.php
M test/classes/MenuTest.php
Log Message:
-----------
Remove useless attribute
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 158a13828f23f600a8f143c5163935ff9820f219
https://github.com/phpmyadmin/phpmyadmin/commit/158a13828f23f600a8f143c5163…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Display/Results.php
M libraries/classes/Import.php
M libraries/classes/InsertEdit.php
M libraries/classes/Plugins/Import/ImportMediawiki.php
M libraries/classes/Sql.php
Log Message:
-----------
Remove useless unset
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 59d720d7ddda2e854660ef4fcb9f6993ed66bfea
https://github.com/phpmyadmin/phpmyadmin/commit/59d720d7ddda2e854660ef4fcb9…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Remove useless method parameter
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 91e9acb2638f5509e8ed07a7c6b55b19806a868e
https://github.com/phpmyadmin/phpmyadmin/commit/91e9acb2638f5509e8ed07a7c6b…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Config/Validator.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Gis/GisPolygon.php
M libraries/classes/InsertEdit.php
M libraries/classes/Normalization.php
M libraries/classes/Properties/Options/Groups/OptionsPropertySubgroup.php
M libraries/classes/Relation.php
M libraries/classes/Rte/Events.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Rte/Triggers.php
M libraries/classes/Template.php
M libraries/classes/Transformations.php
Log Message:
-----------
Update PHPDoc
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: ff3325870fd2d81e10597bc8d1095d5afce6647b
https://github.com/phpmyadmin/phpmyadmin/commit/ff3325870fd2d81e10597bc8d10…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Database/MultiTableQuery.php
M libraries/classes/Header.php
M libraries/classes/Import.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Transformations.php
M libraries/classes/Url.php
M libraries/classes/Util.php
Log Message:
-----------
Remove unused variables
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 7b00f5d35a538b043b676d45629b86b70e957508
https://github.com/phpmyadmin/phpmyadmin/commit/7b00f5d35a538b043b676d45629…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/classes/Operations.php
M libraries/classes/Sanitize.php
Log Message:
-----------
Update PHPDoc
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: d4699ac8a56eb83e92b00e915bc676701807ac40
https://github.com/phpmyadmin/phpmyadmin/commit/d4699ac8a56eb83e92b00e915bc…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/InsertEdit.php
Log Message:
-----------
Remove unused private method
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: b68ae133ca6b91c18c642ec177df67586fd754cb
https://github.com/phpmyadmin/phpmyadmin/commit/b68ae133ca6b91c18c642ec177d…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-14 (Tue, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Sanitize.php
Log Message:
-----------
Add return type hint
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 3a7a0c6e5852af9dea5c0c0181d04820d193d9bb
https://github.com/phpmyadmin/phpmyadmin/commit/3a7a0c6e5852af9dea5c0c0181d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_export.php
M db_operations.php
M db_qbe.php
M db_search.php
M db_tracking.php
M phpstan.neon.dist
M server_privileges.php
M tbl_export.php
M tbl_find_replace.php
M tbl_import.php
M tbl_operations.php
M tbl_select.php
M tbl_tracking.php
M tbl_zoom_select.php
M view_operations.php
Log Message:
-----------
Remove $url_query global from PHPStan ignored list
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f396dbd7ff2a5c56acb63d55ba3b21d9249fe06d
https://github.com/phpmyadmin/phpmyadmin/commit/f396dbd7ff2a5c56acb63d55ba3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M phpstan.neon.dist
Log Message:
-----------
Remove some variables from PHPStan ignored list
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cd4068f52566fc705c83b5ffbf91e1fc25470acb
https://github.com/phpmyadmin/phpmyadmin/commit/cd4068f52566fc705c83b5ffbf9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M db_operations.php
M index.php
M phpstan.neon.dist
Log Message:
-----------
Remove $server global from PHPStan ignored list
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3b1e868fb1cdb51dd28dbc14323f1d336da0ffdd
https://github.com/phpmyadmin/phpmyadmin/commit/3b1e868fb1cdb51dd28dbc14323…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-14 (Tue, 05 May 2019) -03:00
Changed paths:
M libraries/classes/Config/Validator.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Database/MultiTableQuery.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Display/Results.php
M libraries/classes/Gis/GisPolygon.php
M libraries/classes/Header.php
M libraries/classes/Import.php
M libraries/classes/InsertEdit.php
M libraries/classes/Menu.php
M libraries/classes/Normalization.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Plugins/Import/ImportMediawiki.php
M libraries/classes/Properties/Options/Groups/OptionsPropertySubgroup.php
M libraries/classes/Relation.php
M libraries/classes/Rte/Events.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Rte/Triggers.php
M libraries/classes/Sanitize.php
M libraries/classes/Sql.php
M libraries/classes/Template.php
M libraries/classes/Transformations.php
M libraries/classes/Url.php
M libraries/classes/Util.php
M test/classes/MenuTest.php
Log Message:
-----------
Merge pull request #15260 from Tithugues/feature/cleaning
Feature/cleaning
Commit: 1bd73da1d926cc82dd99c2fe71014696d84a8aca
https://github.com/phpmyadmin/phpmyadmin/commit/1bd73da1d926cc82dd99c2fe710…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-16 (Thu, 05 May 2019) -03:00
Changed paths:
M phpstan.neon.dist
Log Message:
-----------
Ignore $action only in mult_submits.inc and tbl_columns_definition_form.inc
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4e5bd7cb85d61648d1a00fa774262d623dec4dc4
https://github.com/phpmyadmin/phpmyadmin/commit/4e5bd7cb85d61648d1a00fa7742…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-16 (Thu, 05 May 2019) -03:00
Changed paths:
M export.php
M libraries/classes/Controllers/Table/StructureController.php
M phpstan.neon.dist
M tbl_row_action.php
M view_operations.php
Log Message:
-----------
Remove $sql_query global from PHPStan ignore list
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 24c1481cac2b2f7accce63c2ef6b75692770883d
https://github.com/phpmyadmin/phpmyadmin/commit/24c1481cac2b2f7accce63c2ef6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-18 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Partition.php
M navigation.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7b3bfe5c915db98710a13a1c1e0fd02d9b6d7df5
https://github.com/phpmyadmin/phpmyadmin/commit/7b3bfe5c915db98710a13a1c1e0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-18 (Sat, 05 May 2019) +02:00
Changed paths:
M libraries/classes/Partition.php
Log Message:
-----------
Fix lint error "elseif"
PSR2.ControlStructures.ElseIfDeclaration.NotAllowed
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8ccb854c5e22dec78c650b9c56f7a921ca6bb7f9
https://github.com/phpmyadmin/phpmyadmin/commit/8ccb854c5e22dec78c650b9c56f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-18 (Sat, 05 May 2019) +02:00
Changed paths:
M js/functions.js
Log Message:
-----------
Fix #15174 - Improve Filter method in server variables page
Fixes: #15174
Pull-request: #15179
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: acfdc0f41a080e65742922d024ce18227e74b626
https://github.com/phpmyadmin/phpmyadmin/commit/acfdc0f41a080e65742922d024c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-18 (Sat, 05 May 2019) +02:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15174
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ae39ea5cbdf4e936667f77190b5a29e9f8a045f4
https://github.com/phpmyadmin/phpmyadmin/commit/ae39ea5cbdf4e936667f77190b5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-19 (Sun, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/StructureController.php
M templates/table/structure/display_structure.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 380707fbcdf443ae981b4022c837816f3cf2981a
https://github.com/phpmyadmin/phpmyadmin/commit/380707fbcdf443ae981b4022c83…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-19 (Sun, 05 May 2019) +02:00
Changed paths:
A services.yml
A services_controllers.yml
M ajax.php
M browse_foreigners.php
M composer.json
M db_central_columns.php
M db_datadict.php
M db_events.php
M db_multi_table_query.php
M db_routines.php
M db_sql.php
M db_structure.php
M db_triggers.php
M index.php
M libraries/classes/Controllers/AbstractController.php
M libraries/classes/Controllers/AjaxController.php
M libraries/classes/Controllers/BrowseForeignersController.php
M libraries/classes/Controllers/Database/AbstractController.php
M libraries/classes/Controllers/Database/CentralColumnsController.php
M libraries/classes/Controllers/Database/DataDictionaryController.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/BinlogController.php
M libraries/classes/Controllers/Server/CollationsController.php
M libraries/classes/Controllers/Server/PluginsController.php
M libraries/classes/Controllers/Server/Status/AbstractController.php
M libraries/classes/Controllers/Server/Status/AdvisorController.php
M libraries/classes/Controllers/Server/Status/MonitorController.php
M libraries/classes/Controllers/Table/AbstractController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/IndexesController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Controllers/TransformationOverviewController.php
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M phpstan.neon.dist
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_plugins.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_variables.php
M tbl_chart.php
M tbl_find_replace.php
M tbl_gis_visualization.php
M tbl_indexes.php
M tbl_relation.php
M tbl_select.php
M tbl_sql.php
M tbl_structure.php
M tbl_zoom_select.php
M test/classes/Controllers/Database/StructureControllerTest.php
M test/classes/Controllers/Server/BinlogControllerTest.php
M test/classes/Controllers/Server/CollationsControllerTest.php
M test/classes/Controllers/Server/DatabasesControllerTest.php
M test/classes/Controllers/Server/EnginesControllerTest.php
M test/classes/Controllers/Server/PluginsControllerTest.php
M test/classes/Controllers/Server/Status/AdvisorControllerTest.php
M test/classes/Controllers/Server/Status/MonitorControllerTest.php
M test/classes/Controllers/Server/Status/ProcessesControllerTest.php
M test/classes/Controllers/Server/Status/QueriesControllerTest.php
M test/classes/Controllers/Server/Status/StatusControllerTest.php
M test/classes/Controllers/Server/Status/VariablesControllerTest.php
M test/classes/Controllers/Server/VariablesControllerTest.php
M test/classes/Controllers/Table/IndexesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/Controllers/Table/SearchControllerTest.php
M test/classes/Controllers/Table/StructureControllerTest.php
M test/classes/Controllers/TransformationOverviewControllerTest.php
M transformation_overview.php
Log Message:
-----------
Define controllers as services in an external configuration file
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 4b2980e01f14b7ade9904a81279a4820f52e0357
https://github.com/phpmyadmin/phpmyadmin/commit/4b2980e01f14b7ade9904a81279…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-05-19 (Sun, 05 May 2019) +02:00
Changed paths:
M services_controllers.yml
Log Message:
-----------
Fix missing arguments
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 1a846baa0f8a428596f4900b7e95a2d6782eaba0
https://github.com/phpmyadmin/phpmyadmin/commit/1a846baa0f8a428596f4900b7e9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-19 (Sun, 05 May 2019) -03:00
Changed paths:
A services.yml
A services_controllers.yml
M ajax.php
M browse_foreigners.php
M composer.json
M db_central_columns.php
M db_datadict.php
M db_events.php
M db_multi_table_query.php
M db_routines.php
M db_sql.php
M db_structure.php
M db_triggers.php
M index.php
M libraries/classes/Controllers/AbstractController.php
M libraries/classes/Controllers/AjaxController.php
M libraries/classes/Controllers/BrowseForeignersController.php
M libraries/classes/Controllers/Database/AbstractController.php
M libraries/classes/Controllers/Database/CentralColumnsController.php
M libraries/classes/Controllers/Database/DataDictionaryController.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/BinlogController.php
M libraries/classes/Controllers/Server/CollationsController.php
M libraries/classes/Controllers/Server/PluginsController.php
M libraries/classes/Controllers/Server/Status/AbstractController.php
M libraries/classes/Controllers/Server/Status/AdvisorController.php
M libraries/classes/Controllers/Server/Status/MonitorController.php
M libraries/classes/Controllers/Table/AbstractController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/IndexesController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Controllers/TransformationOverviewController.php
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M phpstan.neon.dist
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_plugins.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_variables.php
M tbl_chart.php
M tbl_find_replace.php
M tbl_gis_visualization.php
M tbl_indexes.php
M tbl_relation.php
M tbl_select.php
M tbl_sql.php
M tbl_structure.php
M tbl_zoom_select.php
M test/classes/Controllers/Database/StructureControllerTest.php
M test/classes/Controllers/Server/BinlogControllerTest.php
M test/classes/Controllers/Server/CollationsControllerTest.php
M test/classes/Controllers/Server/DatabasesControllerTest.php
M test/classes/Controllers/Server/EnginesControllerTest.php
M test/classes/Controllers/Server/PluginsControllerTest.php
M test/classes/Controllers/Server/Status/AdvisorControllerTest.php
M test/classes/Controllers/Server/Status/MonitorControllerTest.php
M test/classes/Controllers/Server/Status/ProcessesControllerTest.php
M test/classes/Controllers/Server/Status/QueriesControllerTest.php
M test/classes/Controllers/Server/Status/StatusControllerTest.php
M test/classes/Controllers/Server/Status/VariablesControllerTest.php
M test/classes/Controllers/Server/VariablesControllerTest.php
M test/classes/Controllers/Table/IndexesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/Controllers/Table/SearchControllerTest.php
M test/classes/Controllers/Table/StructureControllerTest.php
M test/classes/Controllers/TransformationOverviewControllerTest.php
M transformation_overview.php
Log Message:
-----------
Merge pull request #15266 from Tithugues/feature/DI
External dependency injection system
Commit: de4bc0751b858464d2be14090478e078ef3dc35f
https://github.com/phpmyadmin/phpmyadmin/commit/de4bc0751b858464d2be1409047…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-19 (Sun, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Table.php
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c1186dcdbaa3e24de9ff10134027b78ed04cdb0f
https://github.com/phpmyadmin/phpmyadmin/commit/c1186dcdbaa3e24de9ff1013402…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-20 (Mon, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M templates/database/structure/structure_table_row.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Closes #15280
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 504ab646b65b814b93df3c863bdc065e5b96b935
https://github.com/phpmyadmin/phpmyadmin/commit/504ab646b65b814b93df3c863bd…
Author: Agha Saad Fraz <agha.saad04(a)gmail.com>
Date: 2019-05-20 (Mon, 05 May 2019) -03:00
Changed paths:
M js/export.js
M templates/export/alias_add.twig
M templates/export/alias_item.twig
Log Message:
-----------
Fix15185 Converted JQuery dialog buttons into Bootstrap 4 (#15201)
* Converted JQuery dialog buttons into Bootstrap 4
Signed-off-by: Agha Saad Fraz <agha.saad04(a)gmail.com>
Commit: 6049a2739dbcbd856851d4e68095768c97a97dc2
https://github.com/phpmyadmin/phpmyadmin/commit/6049a2739dbcbd856851d4e6809…
Author: Nitish Bahl <nitishbahl24(a)gmail.com>
Date: 2019-05-20 (Mon, 05 May 2019) -03:00
Changed paths:
M themes/pmahomme/scss/_jqplot.scss
Log Message:
-----------
minor design changes in jqplot-tooptip
Signed-off-by: Nitish Bahl <nitishbahl24(a)gmail.com>
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ea2d5a0d87a706814df929e9c5cedee5f84e9fcc
https://github.com/phpmyadmin/phpmyadmin/commit/ea2d5a0d87a706814df929e9c5c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-20 (Mon, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/config.js
M js/console.js
M js/db_central_columns.js
M js/db_multi_table_query.js
M js/db_operations.js
M js/db_qbe.js
M js/db_search.js
M js/db_structure.js
M js/db_tracking.js
M js/designer/history.js
M js/designer/move.js
M js/designer/page.js
M js/drag_drop_import.js
M js/error_report.js
M js/export.js
M js/functions.js
M js/gis_data_editor.js
M js/import.js
M js/indexes.js
M js/jqplot/plugins/jqplot.byteFormatter.js
M js/makegrid.js
M js/menu-resizer.js
M js/messages.php
M js/microhistory.js
M js/navigation.js
M js/normalization.js
M js/page_settings.js
M js/replication.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_advisor.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/server_status_sorter.js
M js/server_user_groups.js
M js/server_variables.js
M js/sql.js
M js/tbl_change.js
M js/tbl_chart.js
M js/tbl_find_replace.js
M js/tbl_operations.js
M js/tbl_relation.js
M js/tbl_select.js
M js/tbl_structure.js
M js/tbl_tracking.js
M js/tbl_zoom_plot_jqplot.js
M js/u2f.js
M libraries/classes/Config/FormDisplay.php
M libraries/classes/ErrorHandler.php
M templates/display/import/javascript.twig
M templates/preferences/manage/main.twig
M test/libraries/FilesTest.php
Log Message:
-----------
Rename PMA_messages JS global variable to Messages
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 562b5a48f019c3afca0f0135f3fb8f4f6fb0baa0
https://github.com/phpmyadmin/phpmyadmin/commit/562b5a48f019c3afca0f0135f3f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-21 (Tue, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/codemirror/addon/lint/sql-lint.js
M js/common.js
M js/config.js
M js/console.js
M js/db_central_columns.js
M js/db_multi_table_query.js
M js/db_operations.js
M js/db_search.js
M js/db_tracking.js
M js/designer/move.js
M js/drag_drop_import.js
M js/error_report.js
M js/export.js
M js/functions.js
M js/gis_data_editor.js
M js/indexes.js
M js/makegrid.js
M js/microhistory.js
M js/multi_column_sort.js
M js/navigation.js
M js/normalization.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/shortcuts_handler.js
M js/sql.js
M js/tbl_operations.js
M js/tbl_relation.js
M js/tbl_select.js
M js/tbl_structure.js
M js/tbl_tracking.js
M js/tbl_zoom_plot_jqplot.js
M libraries/classes/Display/ChangePassword.php
M libraries/classes/Header.php
M test/classes/HeaderTest.php
Log Message:
-----------
Remove PMA_ from PMA_commonParams and PMA_commonActions names
PMA_commonParams => CommonParams
PMA_commonActions => CommonActions
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ce71901de52623d98f93decfdf63f805fb50c80f
https://github.com/phpmyadmin/phpmyadmin/commit/ce71901de52623d98f93decfdf6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-22 (Wed, 05 May 2019) -03:00
Changed paths:
M error_report.php
M js/ajax.js
M js/common.js
M js/config.js
M js/console.js
M js/db_central_columns.js
M js/db_multi_table_query.js
M js/db_operations.js
M js/db_qbe.js
M js/db_query_generator.js
M js/db_search.js
M js/db_structure.js
M js/db_tracking.js
M js/designer/history.js
M js/designer/move.js
M js/designer/page.js
M js/drag_drop_import.js
M js/error_report.js
M js/export.js
M js/functions.js
M js/gis_data_editor.js
M js/import.js
M js/indexes.js
M js/makegrid.js
M js/menu-resizer.js
M js/microhistory.js
M js/multi_column_sort.js
M js/navigation.js
M js/normalization.js
M js/replication.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/server_status_queries.js
M js/server_user_groups.js
M js/server_variables.js
M js/sql.js
M js/tbl_change.js
M js/tbl_chart.js
M js/tbl_find_replace.js
M js/tbl_gis_visualization.js
M js/tbl_operations.js
M js/tbl_relation.js
M js/tbl_select.js
M js/tbl_structure.js
M js/tbl_tracking.js
M js/tbl_zoom_plot_jqplot.js
M js/transformations/sql_editor.js
M js/u2f.js
M libraries/classes/ErrorHandler.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Transformations/Abs/SQLTransformationsPlugin.php
M libraries/classes/Rte/Footer.php
M libraries/classes/SqlQueryForm.php
M libraries/classes/Util.php
M templates/database/search/main.twig
M templates/display/export/select_options.twig
M templates/display/import/javascript.twig
M templates/display/results/table_navigation.twig
M templates/server/replication/master_add_slave_user.twig
M templates/sql/bookmark.twig
M templates/view_create.twig
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
M test/classes/SqlQueryFormTest.php
Log Message:
-----------
Refactor js/functions.js to use a module
Adds Functions module in js/functions.js to reduce the number of global variables.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 83f56cdedf229906e494892f91a7293ccc178ed0
https://github.com/phpmyadmin/phpmyadmin/commit/83f56cdedf229906e494892f91a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-22 (Wed, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1f62d01470afbceb3cbc7810f85dd06468e5580d
https://github.com/phpmyadmin/phpmyadmin/commit/1f62d01470afbceb3cbc7810f85…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-22 (Wed, 05 May 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Use spaceship operator instead of nested ternary operator
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 842be3898bf5dc2aff82f63fc647b73d4961c818
https://github.com/phpmyadmin/phpmyadmin/commit/842be3898bf5dc2aff82f63fc64…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-22 (Wed, 05 May 2019) -03:00
Changed paths:
M error_report.php
M js/ajax.js
M js/common.js
M js/config.js
M js/console.js
M js/db_central_columns.js
M js/db_multi_table_query.js
M js/db_operations.js
M js/db_qbe.js
M js/db_query_generator.js
M js/db_search.js
M js/db_structure.js
M js/db_tracking.js
M js/designer/history.js
M js/designer/move.js
M js/designer/page.js
M js/drag_drop_import.js
M js/error_report.js
M js/export.js
M js/functions.js
M js/gis_data_editor.js
M js/import.js
M js/indexes.js
M js/makegrid.js
M js/menu-resizer.js
M js/microhistory.js
M js/multi_column_sort.js
M js/navigation.js
M js/normalization.js
M js/replication.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/server_status_queries.js
M js/server_user_groups.js
M js/server_variables.js
M js/sql.js
M js/tbl_change.js
M js/tbl_chart.js
M js/tbl_find_replace.js
M js/tbl_gis_visualization.js
M js/tbl_operations.js
M js/tbl_relation.js
M js/tbl_select.js
M js/tbl_structure.js
M js/tbl_tracking.js
M js/tbl_zoom_plot_jqplot.js
M js/transformations/sql_editor.js
M js/u2f.js
M libraries/classes/ErrorHandler.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Transformations/Abs/SQLTransformationsPlugin.php
M libraries/classes/Rte/Footer.php
M libraries/classes/SqlQueryForm.php
M libraries/classes/Util.php
M templates/database/search/main.twig
M templates/display/export/select_options.twig
M templates/display/import/javascript.twig
M templates/display/results/table_navigation.twig
M templates/server/replication/master_add_slave_user.twig
M templates/sql/bookmark.twig
M templates/view_create.twig
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
M test/classes/SqlQueryFormTest.php
Log Message:
-----------
Merge pull request #15288 from mauriciofauth/functions-js
Use a module for js/functions.js functions
Commit: 424912541276a30c41d98e4f98310ea87625ce27
https://github.com/phpmyadmin/phpmyadmin/commit/424912541276a30c41d98e4f983…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-22 (Wed, 05 May 2019) -03:00
Changed paths:
M js/console.js
M js/shortcuts_handler.js
Log Message:
-----------
Rename PMA_console to Console
Rename PMA_consoleResizer to ConsoleResizer
Rename PMA_consoleInput to ConsoleInput
Rename PMA_consoleMessages to ConsoleMessages
Rename PMA_consoleBookmarks with ConsoleBookmarks
Rename PMA_consoleDebug to ConsoleDebug
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 839e3dc86af9f86cd832bf68d4d9517bda8a8326
https://github.com/phpmyadmin/phpmyadmin/commit/839e3dc86af9f86cd832bf68d4d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-23 (Thu, 05 May 2019) -03:00
Changed paths:
A .github/FUNDING.yml
Log Message:
-----------
Create .github/FUNDING.yml file
Adds a FUNDING file to enable a sponsor button.
https://help.github.com/en/articles/displaying-a-sponsor-button-in-your-rep…
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 060b1818989d0d0f39f03f061221bc5f0cb70470
https://github.com/phpmyadmin/phpmyadmin/commit/060b1818989d0d0f39f03f06122…
Author: Marino <mrabach(a)gmail.com>
Date: 2019-05-24 (Fri, 05 May 2019) +02:00
Changed paths:
M po/hr.po
Log Message:
-----------
Translated using Weblate (Croatian)
Currently translated at 27.4% (909 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/hr/
Signed-off-by: Marino <mrabach(a)gmail.com>
Commit: df78269ff7749b9411b0d0b16fe9c1591351d441
https://github.com/phpmyadmin/phpmyadmin/commit/df78269ff7749b9411b0d0b16fe…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
A .github/FUNDING.yml
Log Message:
-----------
Merge pull request #15292 from phpmyadmin/funding-file
Create .github/FUNDING.yml file
Commit: 0f7ddfd276928c711dc510fe19841234556a2b11
https://github.com/phpmyadmin/phpmyadmin/commit/0f7ddfd276928c711dc510fe198…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M js/designer/init.js
M js/designer/move.js
M js/designer/page.js
Log Message:
-----------
Refactor js/designer/move.js to use a module
Adds DesignerMove module in js/designer/move.js to reduce the number of global variables.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 923e3fb050209b6c2846127f6327a6d0b5de1af9
https://github.com/phpmyadmin/phpmyadmin/commit/923e3fb050209b6c2846127f632…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/doclinks.js
M js/sql.js
Log Message:
-----------
Replace Array constructors with literal notation
Use of the Array constructor to construct a new array
is generally discouraged in favor of array literal
notation because of the single-argument pitfall and
because the Array global may be redefined. The exception
is when the Array constructor is used to intentionally
create sparse arrays of a specified size by giving
the constructor a single numeric argument.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 70d2295f58d33875de16a5e18c032140895228c7
https://github.com/phpmyadmin/phpmyadmin/commit/70d2295f58d33875de16a5e18c0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/config.js
M js/db_query_generator.js
M js/functions.js
M js/makegrid.js
M js/server_status_monitor.js
M js/server_status_sorter.js
M js/sql.js
M js/tbl_change.js
Log Message:
-----------
Remove unnecessary escape usage
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b5d1b1e74a54733e618d4d3246194c622f89d978
https://github.com/phpmyadmin/phpmyadmin/commit/b5d1b1e74a54733e618d4d32461…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/functions.js
M js/gis_data_editor.js
Log Message:
-----------
Turn on no-eval rule as an error
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e1ba7b792e2d11bd33bf876344144320253539a2
https://github.com/phpmyadmin/phpmyadmin/commit/e1ba7b792e2d11bd33bf8763441…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/designer/page.js
Log Message:
-----------
Disallow JS functions in loops
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 13f08037d141542471111c57d7163b969850cbdb
https://github.com/phpmyadmin/phpmyadmin/commit/13f08037d141542471111c57d71…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/tbl_zoom_plot_jqplot.js
Log Message:
-----------
Use camel case for variable names in tbl_zoom_plot_jqplot.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a7c64e00b8f5fcd21305a7fbe2d110e09f64e975
https://github.com/phpmyadmin/phpmyadmin/commit/a7c64e00b8f5fcd21305a7fbe2d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/tbl_structure.js
Log Message:
-----------
Use camel case for most variables in tbl_structure.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: eaf2afcb3517258408fe7f48ec3d21b279fa67d2
https://github.com/phpmyadmin/phpmyadmin/commit/eaf2afcb3517258408fe7f48ec3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/db_structure.js
M js/functions.js
Log Message:
-----------
Refactor js/db_structure.js
- Adds DatabaseStructure module
- Use camel case for the most of the variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1808dd21b02bb7b7d86e870ea294baa307f30ed5
https://github.com/phpmyadmin/phpmyadmin/commit/1808dd21b02bb7b7d86e870ea29…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/tbl_select.js
Log Message:
-----------
Refactor js/tbl_select.js
- Adds TableSelect module
- Use camel case for most of the variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d99991f43f6206972ec25dc4cc22a3504d56bb78
https://github.com/phpmyadmin/phpmyadmin/commit/d99991f43f6206972ec25dc4cc2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/db_central_columns.js
M js/db_operations.js
M js/db_structure.js
M js/db_tracking.js
M js/functions.js
M js/indexes.js
M js/replication.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/sql.js
M js/tbl_operations.js
M js/tbl_relation.js
M js/tbl_structure.js
M js/tbl_tracking.js
Log Message:
-----------
Rename PMA_confirm and PMA_sort_table jQuery functions
Renames to confirm and sortTable.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0b3014207d5df4c856348aee530ba31bd160a394
https://github.com/phpmyadmin/phpmyadmin/commit/0b3014207d5df4c856348aee530…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/functions.js
M js/indexes.js
M js/normalization.js
M js/server_privileges.js
M js/server_status_monitor.js
M js/server_user_groups.js
M js/sql.js
M js/tbl_chart.js
M js/tbl_structure.js
M libraries/classes/SqlQueryForm.php
M templates/view_create.twig
M test/classes/SqlQueryFormTest.php
M test/selenium/TestBase.php
Log Message:
-----------
Use camel case for most of the js/functions.js variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 23463d0161bf59a1b054f57e4520dc22d4655d56
https://github.com/phpmyadmin/phpmyadmin/commit/23463d0161bf59a1b054f57e452…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/db_search.js
M js/makegrid.js
M js/sql.js
Log Message:
-----------
Rename js/makegrid.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 61f3a93019c3277f6e058f7afb95cddf7a431b0e
https://github.com/phpmyadmin/phpmyadmin/commit/61f3a93019c3277f6e058f7afb9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
A js/menu_resizer.js
M libraries/classes/Header.php
D js/menu-resizer.js
Log Message:
-----------
Rename js/menu-resizer.js to js/menu_resizer.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d16598c3e666eb02c90f9cfb15b015b502bf7827
https://github.com/phpmyadmin/phpmyadmin/commit/d16598c3e666eb02c90f9cfb15b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/database.js
Log Message:
-----------
Rename js/designer/database.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 08fc6a5ddd87e27f3157cd98006bd8b5176c57ab
https://github.com/phpmyadmin/phpmyadmin/commit/08fc6a5ddd87e27f3157cd98006…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/history.js
M js/designer/move.js
Log Message:
-----------
Rename js/designer/move.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0ce4efd7d79bda36885cd5500b91800e82c747fa
https://github.com/phpmyadmin/phpmyadmin/commit/0ce4efd7d79bda36885cd5500b9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/init.js
M js/designer/move.js
M js/designer/page.js
Log Message:
-----------
Add DesignerPage module to js/designer/page.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4b91f84dc56267d7f7e71f7d868c92452cc275c2
https://github.com/phpmyadmin/phpmyadmin/commit/4b91f84dc56267d7f7e71f7d868…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/history.js
M js/designer/init.js
M js/designer/move.js
M js/designer/objects.js
M js/designer/page.js
M templates/database/designer/main.twig
Log Message:
-----------
Rename js/designer/ variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2f2c35c0c2bbcf11763fb9d3c3a6e8014f36faff
https://github.com/phpmyadmin/phpmyadmin/commit/2f2c35c0c2bbcf11763fb9d3c3a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-27 (Mon, 05 May 2019) +02:00
Changed paths:
M CONTRIBUTING.md
M ChangeLog
M DCO
M doc/config.rst
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b34494e30cdbbb75cc7c13fcfc0d891b9725197d
https://github.com/phpmyadmin/phpmyadmin/commit/b34494e30cdbbb75cc7c13fcfc0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/history.js
M js/designer/init.js
M js/designer/move.js
Log Message:
-----------
Add DesignerHistory module to js/designer/history.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8b1135baf137d94c7454e6672d11316ee743e8a7
https://github.com/phpmyadmin/phpmyadmin/commit/8b1135baf137d94c7454e6672d1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/history.js
M js/designer/move.js
Log Message:
-----------
Fix ESLint warnings in js/designer/move.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 610ee5f37637ebd4d4dae5d6dcac32813c7c2637
https://github.com/phpmyadmin/phpmyadmin/commit/610ee5f37637ebd4d4dae5d6dca…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/designer/database.js
M js/designer/move.js
M js/designer/objects.js
M js/designer/page.js
Log Message:
-----------
Add DesignerObjects module to js/designer/objects.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6f534067cc80b8c7649bc27ac2a679c1fdf807d1
https://github.com/phpmyadmin/phpmyadmin/commit/6f534067cc80b8c7649bc27ac2a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-05-28 (Tue, 05 May 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Navigation/Navigation.php
M libraries/db_common.inc.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 668ffd55fc19a7d05daa0356aeffb14bda918717
https://github.com/phpmyadmin/phpmyadmin/commit/668ffd55fc19a7d05daa0356aef…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/functions.js
M js/indexes.js
Log Message:
-----------
Add Indexes module to js/indexes.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a9198cf5c487a0f76d6e3cd8d5697b72800c89b2
https://github.com/phpmyadmin/phpmyadmin/commit/a9198cf5c487a0f76d6e3cd8d56…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/indexes.js
Log Message:
-----------
Rename js/indexes.js to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5390a80b123dd1ade0d7fef584a4e6ddee032442
https://github.com/phpmyadmin/phpmyadmin/commit/5390a80b123dd1ade0d7fef584a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/common.js
M js/console.js
M js/db_operations.js
M js/db_structure.js
M js/functions.js
M js/indexes.js
M js/navigation.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/sql.js
M js/tbl_operations.js
M js/tbl_structure.js
M templates/display/import/javascript.twig
Log Message:
-----------
Add Navigation module to js/navigation.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 58dafe9021cafa73a1c58d3de2959e0f6f5e69bf
https://github.com/phpmyadmin/phpmyadmin/commit/58dafe9021cafa73a1c58d3de29…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-27 (Mon, 05 May 2019) -03:00
Changed paths:
M js/navigation.js
Log Message:
-----------
Rename js/navigation.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 19f78633c1197bd9b2b2404f3f9d77db1d290eba
https://github.com/phpmyadmin/phpmyadmin/commit/19f78633c1197bd9b2b2404f3f9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-28 (Tue, 05 May 2019) -03:00
Changed paths:
M js/tbl_change.js
Log Message:
-----------
Rename js/tbl_change.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1ca7fb31e4772dcaa6a8de903e70cad52e79100c
https://github.com/phpmyadmin/phpmyadmin/commit/1ca7fb31e4772dcaa6a8de903e7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-28 (Tue, 05 May 2019) -03:00
Changed paths:
M js/makegrid.js
M js/navigation.js
M js/sql.js
M js/tbl_zoom_plot_jqplot.js
M templates/sql/profiling_chart.twig
Log Message:
-----------
Add Sql module to js/sql.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 806b0ce5820e1c751eccb6accee8658a5411939b
https://github.com/phpmyadmin/phpmyadmin/commit/806b0ce5820e1c751eccb6accee…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/functions.js
M js/sql.js
Log Message:
-----------
Rename js/sql.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e5d4d8a37d710213a10c0aeae2857a680d0a8790
https://github.com/phpmyadmin/phpmyadmin/commit/e5d4d8a37d710213a10c0aeae28…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/export.js
M templates/display/export/options_format.twig
Log Message:
-----------
Add Export namespace to js/export.js
To reduce the number of global variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: bf0ac4d16406a4e4817cf0d97ccdbade46ea1ccd
https://github.com/phpmyadmin/phpmyadmin/commit/bf0ac4d16406a4e4817cf0d97cc…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/export.js
Log Message:
-----------
Rename js/export.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7ee9ae260881e49427c47d04be357fac971183ae
https://github.com/phpmyadmin/phpmyadmin/commit/7ee9ae260881e49427c47d04be3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/functions.js
M js/microhistory.js
M js/server_databases.js
M js/sql.js
M libraries/classes/Footer.php
Log Message:
-----------
Rename js/microhistory.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 867116daa0819af42534e7b488dbb223c6023012
https://github.com/phpmyadmin/phpmyadmin/commit/867116daa0819af42534e7b488d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/microhistory.js
M js/whitelist.php
M test/libraries/FilesTest.php
Log Message:
-----------
Rename PMA_gotoWhitelist to GotoWhitelist
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8186bf95252561f5a12350679e86c8189f156ebb
https://github.com/phpmyadmin/phpmyadmin/commit/8186bf95252561f5a12350679e8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M js/whitelist.php
M test/libraries/FilesTest.php
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 01c8d422933689abd13c1cf8a1ab5f38a88a6927
https://github.com/phpmyadmin/phpmyadmin/commit/01c8d422933689abd13c1cf8a1a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_privileges.js
Log Message:
-----------
Rename js/server_privileges.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a12911db24d177bf191644c3a704cbeb2c59c182
https://github.com/phpmyadmin/phpmyadmin/commit/a12911db24d177bf191644c3a70…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M doc/require.rst
M test/EnvironmentTest.php
Log Message:
-----------
Fix missing requires for PHP 7.1.3
Related to commit 71208bab74a8047c912c9e51b31f43c704db1010
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7b204a40f58fa1ba1f6cbfc9c245860939063cc0
https://github.com/phpmyadmin/phpmyadmin/commit/7b204a40f58fa1ba1f6cbfc9c24…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_select.js
Log Message:
-----------
Fix ESLint warnings in js/tbl_select.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d8a0f5a3d3ef7486e08a11378aac12b6820821ed
https://github.com/phpmyadmin/phpmyadmin/commit/d8a0f5a3d3ef7486e08a11378aa…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_relation.js
Log Message:
-----------
Add TableRelation namespace to js/tbl_relation.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 51560d4a4cafdbc7e003667f9353e0ed7a83c44c
https://github.com/phpmyadmin/phpmyadmin/commit/51560d4a4cafdbc7e003667f935…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_relation.js
Log Message:
-----------
Rename js/tbl_relation.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: db5c38eee287c89050bba199d2a7b99d280534b3
https://github.com/phpmyadmin/phpmyadmin/commit/db5c38eee287c89050bba199d2a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_operations.js
Log Message:
-----------
Rename js/tbl_operations.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 840aa006477c815394cbc6f11f1fa5d89dfd4925
https://github.com/phpmyadmin/phpmyadmin/commit/840aa006477c815394cbc6f11f1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) +02:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 95b02af6d4d0a940f0fd7636bb9a761f92001765
https://github.com/phpmyadmin/phpmyadmin/commit/95b02af6d4d0a940f0fd7636bb9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_gis_visualization.js
Log Message:
-----------
Rename js/tbl_gis_visualization.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2fb253d380cd69e9a2844b22ae219459fcd9c95c
https://github.com/phpmyadmin/phpmyadmin/commit/2fb253d380cd69e9a2844b22ae2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/tbl_chart.js
Log Message:
-----------
Rename tbl_chart.js varaibles to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4048691f9ea57ef07082c4ceb30133787d32ea80
https://github.com/phpmyadmin/phpmyadmin/commit/4048691f9ea57ef07082c4ceb30…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_variables.js
Log Message:
-----------
Fix ESLint warnings in server_variables.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a1e9199bd86ef260fd040d02060e61497d4f1649
https://github.com/phpmyadmin/phpmyadmin/commit/a1e9199bd86ef260fd040d02060…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_status_variables.js
Log Message:
-----------
Rename server_status_variables.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cd3985120b3961672028b2e5c4021d073b36f305
https://github.com/phpmyadmin/phpmyadmin/commit/cd3985120b3961672028b2e5c40…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_status_monitor.js
Log Message:
-----------
Rename server_status_monitor.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3c972ed831a9cd1fab65be4a44ecea7be549102d
https://github.com/phpmyadmin/phpmyadmin/commit/3c972ed831a9cd1fab65be4a44e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_status_advisor.js
Log Message:
-----------
Rename server_status_advisor.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e03eb1b50cc496807cc9e97f6c00ee823ab40c17
https://github.com/phpmyadmin/phpmyadmin/commit/e03eb1b50cc496807cc9e97f6c0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/server_databases.js
Log Message:
-----------
Rename server_databases.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3e11b7e6b3aafec07f1a8d5c8685826628ae216a
https://github.com/phpmyadmin/phpmyadmin/commit/3e11b7e6b3aafec07f1a8d5c868…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/codemirror/addon/lint/sql-lint.js
M js/console.js
M js/navigation.js
M js/rte.js
Log Message:
-----------
Require constructor names to begin with a capital letter
Turns new-cap ESLint to error
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 39bcd04878dde29e383a098ed431369240867b7d
https://github.com/phpmyadmin/phpmyadmin/commit/39bcd04878dde29e383a098ed43…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/functions.js
M js/gis_data_editor.js
Log Message:
-----------
Disable no-eval rule only on the specified line
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b6df27fa6d82387a121e74964cbdddb5341d1b8d
https://github.com/phpmyadmin/phpmyadmin/commit/b6df27fa6d82387a121e74964cb…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/functions.js
Log Message:
-----------
Turn no-unsafe-negation ESLint rule to error
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ee3791a119c6b7dc49378018c98c4febd8a1ab3c
https://github.com/phpmyadmin/phpmyadmin/commit/ee3791a119c6b7dc49378018c98…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/rte.js
M libraries/classes/Rte/Routines.php
Log Message:
-----------
Rename rte.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6251bf03d93964d527791155c5ec45929b54f9f0
https://github.com/phpmyadmin/phpmyadmin/commit/6251bf03d93964d527791155c5e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/replication.js
Log Message:
-----------
Rename replication.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1cdc22fff09b938f19853aa93717fa3c4260a8ee
https://github.com/phpmyadmin/phpmyadmin/commit/1cdc22fff09b938f19853aa9371…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/normalization.js
Log Message:
-----------
Rename normalization.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5c6c70d78927d706fe80ee7706bdac4e3bfe1291
https://github.com/phpmyadmin/phpmyadmin/commit/5c6c70d78927d706fe80ee7706b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/multi_column_sort.js
Log Message:
-----------
Rename multi_column_sort.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5f66b4d68886607422dad143e07ec489e1713f29
https://github.com/phpmyadmin/phpmyadmin/commit/5f66b4d68886607422dad143e07…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/menu_resizer.js
Log Message:
-----------
Rename menu_resizer.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f4561232b53f540157986596d53b7d4c360485ca
https://github.com/phpmyadmin/phpmyadmin/commit/f4561232b53f540157986596d53…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/makegrid.js
Log Message:
-----------
Fix ESlint warnings in js/makegrid.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5f65bca6399395b1c6263eed1d9a03b7f37bfd77
https://github.com/phpmyadmin/phpmyadmin/commit/5f65bca6399395b1c6263eed1d9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/jqplot/plugins/jqplot.byteFormatter.js
M js/keyhandler.js
Log Message:
-----------
Fix ESLint warnings in jqplot.byteFormatter.js and keyhandler.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 26be62d063a40f45c4adede1550a62635a34e21e
https://github.com/phpmyadmin/phpmyadmin/commit/26be62d063a40f45c4adede1550…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/import.js
Log Message:
-----------
Rename import.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4c70269542f5582722607ca87afb43871b303e47
https://github.com/phpmyadmin/phpmyadmin/commit/4c70269542f5582722607ca87af…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-29 (Wed, 05 May 2019) -03:00
Changed paths:
M js/gis_data_editor.js
Log Message:
-----------
Rename gis_data_editor.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6f8e53cf5c7c8c3fa5493dcf8107596fd800bc07
https://github.com/phpmyadmin/phpmyadmin/commit/6f8e53cf5c7c8c3fa5493dcf810…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/config.js
M libraries/classes/Config/FormDisplayTemplate.php
M setup/scripts.js
M test/classes/Config/FormDisplayTemplateTest.php
M test/classes/Config/PageSettingsTest.php
Log Message:
-----------
Rename js/config.js variables to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cfe8af2b6eea82be3f1367cfdc5a01bc856f2654
https://github.com/phpmyadmin/phpmyadmin/commit/cfe8af2b6eea82be3f1367cfdc5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/doclinks.js
M js/functions.js
M js/messages.php
Log Message:
-----------
Rename mysql_doc_* variables to camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: fe40a5d06d24003359a2331eacdf1d54d5834a36
https://github.com/phpmyadmin/phpmyadmin/commit/fe40a5d06d24003359a2331eacd…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/db_multi_table_query.js
Log Message:
-----------
Rename db_multi_table_query.js vars to use camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: bc74213a7d8e7d0a57f2be27a6ed3cbcb4825037
https://github.com/phpmyadmin/phpmyadmin/commit/bc74213a7d8e7d0a57f2be27a6e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/ajax.js
M js/error_report.js
Log Message:
-----------
Rename error_report.js variables to camel case
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4fc95582bf98eb0bbd5e55b4b5c0adb57f9eb5ae
https://github.com/phpmyadmin/phpmyadmin/commit/4fc95582bf98eb0bbd5e55b4b5c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/cross_framing_protection.js
M js/db_central_columns.js
M js/db_operations.js
M js/db_search.js
Log Message:
-----------
Rename JS variables to camel case in some files
- js/cross_framing_protection.js
- js/db_central_columns.js
- js/db_operations.js
- js/db_search.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6ed803588a4c87416e3605e9f725264ea97cfa5b
https://github.com/phpmyadmin/phpmyadmin/commit/6ed803588a4c87416e3605e9f72…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M error_report.php
M js/ajax.js
M js/common.js
M js/console.js
M js/error_report.js
M js/functions.js
M js/navigation.js
M js/sql.js
M js/tbl_operations.js
M libraries/classes/ErrorHandler.php
M libraries/classes/Response.php
M prefs_forms.php
M prefs_manage.php
Log Message:
-----------
Fix ESLint warnings in js/ajax.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9ad59dc272389eed0ed5262f34beaf29a7ad3ae4
https://github.com/phpmyadmin/phpmyadmin/commit/9ad59dc272389eed0ed5262f34b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M js/console.js
M libraries/classes/Response.php
Log Message:
-----------
Fix ESLint warnings in js/console.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: dfd49d16b8436c38c23818f6a16985cc501b2fba
https://github.com/phpmyadmin/phpmyadmin/commit/dfd49d16b8436c38c23818f6a16…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-30 (Thu, 05 May 2019) -03:00
Changed paths:
M db_structure.php
M js/functions.js
M js/navigation.js
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Relation.php
M test/classes/Controllers/Database/StructureControllerTest.php
Log Message:
-----------
Fix ESLint warnings in js/functions.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 44c93c03a6b55e4085212d48373a42390de04d2e
https://github.com/phpmyadmin/phpmyadmin/commit/44c93c03a6b55e4085212d48373…
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 .travis.yml
M js/codemirror/addon/lint/sql-lint.js
M js/common.js
M js/drag_drop_import.js
M js/server_status_monitor.js
M js/tbl_gis_visualization.js
Log Message:
-----------
Fix ESLint errors
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 17facf6603fe27354b742447d280df637e2e0797
https://github.com/phpmyadmin/phpmyadmin/commit/17facf6603fe27354b742447d28…
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/functions.js
Log Message:
-----------
Remove unreachable code in js/functions.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
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>
Commit: e29fae4b316be8db81684c418b54e4b1ee380c5c
https://github.com/phpmyadmin/phpmyadmin/commit/e29fae4b316be8db81684c418b5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-31 (Fri, 05 May 2019) -03:00
Changed paths:
M ChangeLog
M js/server_status_advisor.js
M js/server_status_monitor.js
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7a3064f1f00699655a043b02bb6df98a0017f2ee
https://github.com/phpmyadmin/phpmyadmin/commit/7a3064f1f00699655a043b02bb6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-31 (Fri, 05 May 2019) -03:00
Changed paths:
M package.json
M yarn.lock
Log Message:
-----------
Upgrade Sass and Stylelint
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e4ef61c760a35da8c397801bbf77960ba6551f25
https://github.com/phpmyadmin/phpmyadmin/commit/e4ef61c760a35da8c397801bbf7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-31 (Fri, 05 May 2019) -03:00
Changed paths:
M js/vendor/jquery/jquery.min.js
M js/vendor/jquery/jquery.min.map
M package.json
M yarn.lock
Log Message:
-----------
Upgrade jQuery to version 3.4.1
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3dbbd279af2d7741f7fa2c6641a163cb2082c45a
https://github.com/phpmyadmin/phpmyadmin/commit/3dbbd279af2d7741f7fa2c6641a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-31 (Fri, 05 May 2019) -03:00
Changed paths:
M js/vendor/codemirror/addon/hint/show-hint.js
M js/vendor/codemirror/lib/codemirror.js
M package.json
M yarn.lock
Log Message:
-----------
Upgrade CodeMirror to version 5.47.0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
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>
Commit: 9abd308837bb7c3424c6aaa01e1ce180db83413a
https://github.com/phpmyadmin/phpmyadmin/commit/9abd308837bb7c3424c6aaa01e1…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-01 (Sat, 06 June 2019) -03:00
Changed paths:
M browse_foreigners.php
M changelog.php
M chk_rel.php
M db_datadict.php
M db_designer.php
M db_export.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_search.php
M db_sql.php
M db_structure.php
M db_tracking.php
M error_report.php
M export.php
M gis_data_editor.php
M import.php
M libraries/classes/BrowseForeigners.php
M libraries/classes/Controllers/Database/MultiTableQueryController.php
M libraries/classes/Controllers/Database/SqlController.php
M libraries/classes/Controllers/Server/ReplicationController.php
M libraries/classes/Controllers/Server/SqlController.php
M libraries/classes/Controllers/Server/Status/AdvisorController.php
M libraries/classes/Controllers/Server/Status/StatusController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/SqlController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Database/MultiTableQuery.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Database/Search.php
M libraries/classes/ErrorReport.php
M libraries/classes/Normalization.php
M libraries/classes/Relation.php
M libraries/classes/ReplicationGui.php
M libraries/classes/SavedSearches.php
M libraries/classes/Table.php
M libraries/classes/Tracking.php
M libraries/classes/UserPreferencesHeader.php
M libraries/common.inc.php
M libraries/tbl_columns_definition_form.inc.php
M navigation.php
M normalization.php
M prefs_forms.php
M prefs_manage.php
M prefs_twofactor.php
M schema_export.php
M server_binlog.php
M server_collations.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M services.yml
M services_controllers.yml
M tbl_addfield.php
M tbl_change.php
M tbl_export.php
M tbl_find_replace.php
M tbl_gis_visualization.php
M tbl_operations.php
M tbl_relation.php
M tbl_replace.php
M tbl_sql.php
M tbl_structure.php
M tbl_tracking.php
M test/classes/BrowseForeignersTest.php
M test/classes/Controllers/Server/Status/AdvisorControllerTest.php
M test/classes/Controllers/Server/Status/StatusControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/Controllers/Table/SearchControllerTest.php
M test/classes/Controllers/Table/StructureControllerTest.php
M test/classes/Database/Designer/CommonTest.php
M test/classes/Database/DesignerTest.php
M test/classes/Database/QbeTest.php
M test/classes/Database/SearchTest.php
M test/classes/ErrorReportTest.php
M test/classes/NormalizationTest.php
M test/classes/ReplicationGuiTest.php
M test/classes/TrackingTest.php
M test/classes/UserPreferencesHeaderTest.php
M themes.php
M transformation_overview.php
M transformation_wrapper.php
M user_password.php
M view_create.php
M view_operations.php
Log Message:
-----------
Inject dependencies (#15271)
Inject dependencies instead of building them.
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 01e59cf1c9fd55ba28aa8b0a577d032fddb602af
https://github.com/phpmyadmin/phpmyadmin/commit/01e59cf1c9fd55ba28aa8b0a577…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-01 (Sat, 06 June 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15266
External dependency injection system
[ci skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4d865da783e345523ace6390a03023ed2a76b36a
https://github.com/phpmyadmin/phpmyadmin/commit/4d865da783e345523ace6390a03…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-02 (Sun, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M .travis.yml
M js/microhistory.js
M js/multi_column_sort.js
M js/navigation.js
M js/normalization.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_advisor.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/server_status_queries.js
M js/server_user_groups.js
M templates/server/status/monitor/index.twig
Log Message:
-----------
Fix undeclared variables in some JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6b3601bf0c9cbedd1bffca2d16c847b250d15c1d
https://github.com/phpmyadmin/phpmyadmin/commit/6b3601bf0c9cbedd1bffca2d16c…
Author: suhaibsliman <swhaebs(a)gmail.com>
Date: 2019-06-02 (Sun, 06 June 2019) +02:00
Changed paths:
M po/ckb.po
Log Message:
-----------
Translated using Weblate (Sorani)
Currently translated at 29.8% (988 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ckb/
Signed-off-by: suhaibsliman <swhaebs(a)gmail.com>
Commit: 812ad24b1cf2914d17deefaa9684c447d8dd410d
https://github.com/phpmyadmin/phpmyadmin/commit/812ad24b1cf2914d17deefaa968…
Author: Alexander Anzorena <linkana2016(a)gmail.com>
Date: 2019-06-02 (Sun, 06 June 2019) +02:00
Changed paths:
M po/es.po
Log Message:
-----------
Translated using Weblate (Spanish)
Currently translated at 98.3% (3265 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/es/
Signed-off-by: Alexander Anzorena <linkana2016(a)gmail.com>
Commit: 159e60c7418d0baf27c6e0655163a708dc3709f8
https://github.com/phpmyadmin/phpmyadmin/commit/159e60c7418d0baf27c6e065516…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-06-02 (Sun, 06 June 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 99.9% (3320 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: e20601571beb5f7875ec2d8a7d0634c92357b96d
https://github.com/phpmyadmin/phpmyadmin/commit/e20601571beb5f7875ec2d8a7d0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-02 (Sun, 06 June 2019) -03:00
Changed paths:
M setup/scripts.js
Log Message:
-----------
Fix ESLint errors in setup/scripts.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1510ddcb671577a29ec3512cac358c9e89a865e3
https://github.com/phpmyadmin/phpmyadmin/commit/1510ddcb671577a29ec3512cac3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-02 (Sun, 06 June 2019) -03:00
Changed paths:
A js/setup/ajax.js
A js/setup/scripts.js
M templates/setup/base.twig
D setup/ajax.js
D setup/scripts.js
Log Message:
-----------
Move Setup JavaScript files to js/setup/ directory
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b1f6c422e8ce21ce5cf9667df8807569add40d2b
https://github.com/phpmyadmin/phpmyadmin/commit/b1f6c422e8ce21ce5cf9667df88…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-02 (Sun, 06 June 2019) -03:00
Changed paths:
M js/designer/history.js
M js/designer/init.js
M js/designer/move.js
M js/designer/page.js
Log Message:
-----------
Fix undefined variables in js/designer/ files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 96fc4d45af90686c7a56c4ccdb89ae9faaa9c082
https://github.com/phpmyadmin/phpmyadmin/commit/96fc4d45af90686c7a56c4ccdb8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-03 (Mon, 06 June 2019) +02:00
Changed paths:
M ChangeLog
M js/common.js
M libraries/classes/Controllers/Database/StructureController.php
M templates/database/structure/table_header.twig
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6af66cf76351eceb118badeb881592d8a84b7c73
https://github.com/phpmyadmin/phpmyadmin/commit/6af66cf76351eceb118badeb881…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-03 (Mon, 06 June 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_8'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e73c92d92d84f717d6d9983f45f743430b3f1611
https://github.com/phpmyadmin/phpmyadmin/commit/e73c92d92d84f717d6d9983f45f…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-06-04 (Tue, 06 June 2019) -04:00
Changed paths:
M ChangeLog
M doc/faq.rst
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/common.inc.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
Log Message:
-----------
Fix merge conflicts
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 465005fe75180a380e325506a12986ecb2451cb5
https://github.com/phpmyadmin/phpmyadmin/commit/465005fe75180a380e325506a12…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-06-04 (Tue, 06 June 2019) -04:00
Changed paths:
M ChangeLog
M js/designer/move.js
Log Message:
-----------
Fix merge conflicts
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 1b9ce90aa8dd4df45bd28b3fb0a282a9c2a184fa
https://github.com/phpmyadmin/phpmyadmin/commit/1b9ce90aa8dd4df45bd28b3fb0a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-04 (Tue, 06 June 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 69e1011ae6474c161a784cc8906e3decb6dc5b2f
https://github.com/phpmyadmin/phpmyadmin/commit/69e1011ae6474c161a784cc8906…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-06-05 (Wed, 06 June 2019) -04:00
Changed paths:
M scripts/create-release.sh
Log Message:
-----------
Improve create-release script to handle QA branches higher than QA_4_8.
When we first added this bit, we intended to make QA_4_8 the LTS branch,
but have added QA_4_9 since then.
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: c4e4d30300a818266e57ad7ca816255ae1366828
https://github.com/phpmyadmin/phpmyadmin/commit/c4e4d30300a818266e57ad7ca81…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-05 (Wed, 06 June 2019) -03:00
Changed paths:
M js/functions.js
M js/gis_data_editor.js
M js/indexes.js
M js/makegrid.js
M js/messages.php
Log Message:
-----------
Fix undefined variables in some JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f7e2918f5a6744bcdd17b8ace3ec8f1b3b85f835
https://github.com/phpmyadmin/phpmyadmin/commit/f7e2918f5a6744bcdd17b8ace3e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/ajax.js
M js/config.js
M js/console.js
M js/db_multi_table_query.js
M js/db_query_generator.js
M js/db_search.js
M js/drag_drop_import.js
M js/error_report.js
M js/server_status_monitor.js
Log Message:
-----------
Fix undefined variables in JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 62539145ad9b01eda09dfde245581d15b11708a8
https://github.com/phpmyadmin/phpmyadmin/commit/62539145ad9b01eda09dfde2455…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
Log Message:
-----------
Fix coding standard error
Remove blank line in libraries/classes/Plugins/Auth/AuthenticationCookie.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9aab9251d65352fd801ccbf98e1c856502b39f0e
https://github.com/phpmyadmin/phpmyadmin/commit/9aab9251d65352fd801ccbf98e1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3b50a194e75db48461169b5ebfe825c86e22bd89
https://github.com/phpmyadmin/phpmyadmin/commit/3b50a194e75db48461169b5ebfe…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/ajax.js
M js/chart.js
M js/common.js
M js/config.js
M js/console.js
M js/db_central_columns.js
M js/db_operations.js
M js/db_qbe.js
M js/db_query_generator.js
M js/designer/database.js
M js/designer/history.js
M js/designer/init.js
M js/designer/move.js
M js/designer/objects.js
M js/designer/page.js
M js/doclinks.js
M js/drag_drop_import.js
M js/export.js
M js/functions.js
M js/gis_data_editor.js
M js/import.js
M js/indexes.js
M js/makegrid.js
M js/menu_resizer.js
M js/navigation.js
M js/normalization.js
M js/rte.js
M js/server_databases.js
M js/server_privileges.js
M js/server_status_advisor.js
M js/server_status_monitor.js
M js/server_status_processes.js
M js/server_status_sorter.js
M js/server_status_variables.js
M js/setup/ajax.js
M js/sql.js
M js/tbl_change.js
M js/tbl_chart.js
M js/tbl_gis_visualization.js
M js/tbl_operations.js
M js/tbl_select.js
M js/tbl_structure.js
M js/tbl_zoom_plot_jqplot.js
M js/transformations/image_upload.js
M js/u2f.js
Log Message:
-----------
Remove unused variables in JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 771cdde8df874f2740e446314826a73ef59b26ff
https://github.com/phpmyadmin/phpmyadmin/commit/771cdde8df874f2740e44631482…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
Log Message:
-----------
Extend ESLint recommended configuration
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: aad0430be8433f0287cd1a16f0813040b0088d88
https://github.com/phpmyadmin/phpmyadmin/commit/aad0430be8433f0287cd1a16f08…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/designer/history.js
M js/designer/move.js
M js/designer/page.js
M js/indexes.js
M js/normalization.js
M js/server_status_monitor.js
M js/tbl_structure.js
Log Message:
-----------
Add writable flag to some JavaScript globals
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4260eb0a737885a1b38a888607817ff7f1942684
https://github.com/phpmyadmin/phpmyadmin/commit/4260eb0a737885a1b38a8886078…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/makegrid.js
M js/server_status_monitor.js
Log Message:
-----------
Remove empty blocks in JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0a16b56ace611b55a60f7136ed2d95ad04678c3c
https://github.com/phpmyadmin/phpmyadmin/commit/0a16b56ace611b55a60f7136ed2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-06 (Thu, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/designer/database.js
M js/designer/move.js
M js/functions.js
M js/indexes.js
M js/makegrid.js
M js/multi_column_sort.js
M js/navigation.js
M js/tbl_chart.js
M js/tbl_operations.js
M js/tbl_structure.js
Log Message:
-----------
Disallow variable redeclaration in JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c63356d61ab200e12ed5cf269b274c75e631b01d
https://github.com/phpmyadmin/phpmyadmin/commit/c63356d61ab200e12ed5cf269b2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/ajax.js
M js/console.js
M js/designer/database.js
Log Message:
-----------
Disallow the use of console in JavaScript files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c0fb5fe1a92a80402ad28ec30be48f9f4788df78
https://github.com/phpmyadmin/phpmyadmin/commit/c0fb5fe1a92a80402ad28ec30be…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/console.js
Log Message:
-----------
Disallow case statement fallthrough in JS files
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4fd359e1a3b0ee3819a239cba774d91f19b5671b
https://github.com/phpmyadmin/phpmyadmin/commit/4fd359e1a3b0ee3819a239cba77…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
M .eslintrc.json
M js/ajax.js
M js/db_structure.js
M js/functions.js
M js/replication.js
M js/setup/ajax.js
M js/setup/scripts.js
M js/shortcuts_handler.js
M package.json
M yarn.lock
Log Message:
-----------
Add eslint-plugin-no-jquery and fix jQuery deprecated functions
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 472d65690d00577f82ae1a88b05f2e46c1ac361d
https://github.com/phpmyadmin/phpmyadmin/commit/472d65690d00577f82ae1a88b05…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
M js/vendor/u2f-api-polyfill.js
M package.json
M yarn.lock
Log Message:
-----------
Update u2f-api-polyfill to version 0.4.4
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c8e98dea2fffa5c5ab0f7ee992acefaa456b3abf
https://github.com/phpmyadmin/phpmyadmin/commit/c8e98dea2fffa5c5ab0f7ee992a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
A js/database/central_columns.js
A js/database/multi_table_query.js
A js/database/operations.js
A js/database/qbe.js
A js/database/query_generator.js
A js/database/search.js
A js/database/structure.js
A js/database/tracking.js
M db_central_columns.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_search.php
M db_structure.php
M db_tracking.php
M js/functions.js
M js/messages.php
D js/db_central_columns.js
D js/db_multi_table_query.js
D js/db_operations.js
D js/db_qbe.js
D js/db_query_generator.js
D js/db_search.js
D js/db_structure.js
D js/db_tracking.js
Log Message:
-----------
Rename js/db_*.js to js/database/*.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 05ce6ffed49f9ed245dc013e5ed80a347aa99942
https://github.com/phpmyadmin/phpmyadmin/commit/05ce6ffed49f9ed245dc013e5ed…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
A js/server/databases.js
A js/server/plugins.js
A js/server/privileges.js
A js/server/status/advisor.js
A js/server/status/monitor.js
A js/server/status/processes.js
A js/server/status/queries.js
A js/server/status/sorter.js
A js/server/status/variables.js
A js/server/user_groups.js
A js/server/variables.js
M js/functions.js
M js/messages.php
M libraries/classes/Controllers/Server/PluginsController.php
M libraries/classes/Controllers/Server/VariablesController.php
M server_databases.php
M server_privileges.php
M server_replication.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M user_password.php
D js/server_databases.js
D js/server_plugins.js
D js/server_privileges.js
D js/server_status_advisor.js
D js/server_status_monitor.js
D js/server_status_processes.js
D js/server_status_queries.js
D js/server_status_sorter.js
D js/server_status_variables.js
D js/server_user_groups.js
D js/server_variables.js
Log Message:
-----------
Rename js/server_*.js to js/server/*.js
Rename js/server_status_*.js to js/server/status/*.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: efe77cdf060795fc927d774be3daaa0dd3519b09
https://github.com/phpmyadmin/phpmyadmin/commit/efe77cdf060795fc927d774be3d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-07 (Fri, 06 June 2019) -03:00
Changed paths:
A js/table/change.js
A js/table/chart.js
A js/table/find_replace.js
A js/table/gis_visualization.js
A js/table/operations.js
A js/table/relation.js
A js/table/select.js
A js/table/structure.js
A js/table/tracking.js
A js/table/zoom_plot_jqplot.js
M db_structure.php
M js/functions.js
M js/gis_data_editor.js
M js/messages.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/InsertEdit.php
M sql.php
M tbl_addfield.php
M tbl_change.php
M tbl_operations.php
M tbl_replace.php
M tbl_tracking.php
M templates/table/structure/display_structure.twig
M view_operations.php
D js/tbl_change.js
D js/tbl_chart.js
D js/tbl_find_replace.js
D js/tbl_gis_visualization.js
D js/tbl_operations.js
D js/tbl_relation.js
D js/tbl_select.js
D js/tbl_structure.js
D js/tbl_tracking.js
D js/tbl_zoom_plot_jqplot.js
Log Message:
-----------
Rename js/tbl_*.js to js/table/*.js
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f51806bcfab54fa1bca405ca893a13b9ed7e85c2
https://github.com/phpmyadmin/phpmyadmin/commit/f51806bcfab54fa1bca405ca893…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-08 (Sat, 06 June 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9102b98ede9ec3308f0711fa7679565a44347720
https://github.com/phpmyadmin/phpmyadmin/commit/9102b98ede9ec3308f0711fa767…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-08 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Display/ResultsTest.php
Log Message:
-----------
Fix broken tests with PHPUnit 8.2
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 990f8011236402ac5af6a859476e064f4a06e58e
https://github.com/phpmyadmin/phpmyadmin/commit/990f8011236402ac5af6a859476…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-11 (Tue, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Navigation/NodeFactory.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Navigation/Nodes/NodeColumn.php
M libraries/classes/Navigation/Nodes/NodeColumnContainer.php
M libraries/classes/Navigation/Nodes/NodeDatabase.php
M libraries/classes/Navigation/Nodes/NodeDatabaseChild.php
M libraries/classes/Navigation/Nodes/NodeDatabaseChildContainer.php
M libraries/classes/Navigation/Nodes/NodeEvent.php
M libraries/classes/Navigation/Nodes/NodeEventContainer.php
M libraries/classes/Navigation/Nodes/NodeFunction.php
M libraries/classes/Navigation/Nodes/NodeFunctionContainer.php
M libraries/classes/Navigation/Nodes/NodeIndex.php
M libraries/classes/Navigation/Nodes/NodeIndexContainer.php
M libraries/classes/Navigation/Nodes/NodeProcedure.php
M libraries/classes/Navigation/Nodes/NodeProcedureContainer.php
M libraries/classes/Navigation/Nodes/NodeTable.php
M libraries/classes/Navigation/Nodes/NodeTableContainer.php
M libraries/classes/Navigation/Nodes/NodeTrigger.php
M libraries/classes/Navigation/Nodes/NodeTriggerContainer.php
M libraries/classes/Navigation/Nodes/NodeView.php
M libraries/classes/Navigation/Nodes/NodeViewContainer.php
M test/classes/Navigation/NodeFactoryTest.php
M test/classes/Navigation/Nodes/NodeColumnContainerTest.php
M test/classes/Navigation/Nodes/NodeEventContainerTest.php
M test/classes/Navigation/Nodes/NodeFunctionContainerTest.php
M test/classes/Navigation/Nodes/NodeIndexContainerTest.php
M test/classes/Navigation/Nodes/NodeProcedureContainerTest.php
M test/classes/Navigation/Nodes/NodeTableContainerTest.php
M test/classes/Navigation/Nodes/NodeTest.php
M test/classes/Navigation/Nodes/NodeTriggerContainerTest.php
M test/classes/Navigation/Nodes/NodeViewContainerTest.php
Log Message:
-----------
Use camel case names in Navigation classes
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a6e53e2022c70d6a0f8642ed43008793ad8246ca
https://github.com/phpmyadmin/phpmyadmin/commit/a6e53e2022c70d6a0f8642ed430…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-11 (Tue, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Gis/GisGeometryCollection.php
M libraries/classes/Gis/GisLineString.php
M libraries/classes/Gis/GisMultiLineString.php
M libraries/classes/Gis/GisMultiPoint.php
M libraries/classes/Gis/GisMultiPolygon.php
M libraries/classes/Gis/GisPoint.php
M libraries/classes/Gis/GisPolygon.php
M libraries/classes/Plugins/Export/ExportLatex.php
M test/selenium/TestBase.php
Log Message:
-----------
Replace get_class($this) and __CLASS__
with static::class and class name
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7be0f6bfae3d7421e6f3c851636899d764cfbce8
https://github.com/phpmyadmin/phpmyadmin/commit/7be0f6bfae3d7421e6f3c851636…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M changelog.php
M export.php
M libraries/classes/Advisor.php
M libraries/classes/CentralColumns.php
M libraries/classes/Config.php
M libraries/classes/Config/Forms/Page/EditForm.php
M libraries/classes/Controllers/AjaxController.php
M libraries/classes/Controllers/Database/CentralColumnsController.php
M libraries/classes/Controllers/Server/ReplicationController.php
M libraries/classes/Controllers/Server/Status/StatusController.php
M libraries/classes/Controllers/Server/VariablesController.php
M libraries/classes/Controllers/Setup/AbstractController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Di/ReflectorItem.php
M libraries/classes/Display/Error.php
M libraries/classes/Display/Export.php
M libraries/classes/Display/Import.php
M libraries/classes/Display/Results.php
M libraries/classes/ErrorReport.php
M libraries/classes/Export.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Pdf.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Auth/AuthenticationHttp.php
M libraries/classes/Plugins/AuthenticationPlugin.php
M libraries/classes/Plugins/Export/ExportCodegen.php
M libraries/classes/Plugins/Export/ExportCsv.php
M libraries/classes/Plugins/Export/ExportExcel.php
M libraries/classes/Plugins/Export/ExportHtmlword.php
M libraries/classes/Plugins/Export/ExportJson.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportMediawiki.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportPdf.php
M libraries/classes/Plugins/Export/ExportPhparray.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Export/ExportYaml.php
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
M libraries/classes/Plugins/Import/ImportCsv.php
M libraries/classes/Plugins/Import/ImportOds.php
M libraries/classes/Plugins/Import/ImportShp.php
M libraries/classes/Plugins/Import/ImportSql.php
M libraries/classes/Plugins/ImportPlugin.php
M libraries/classes/Plugins/Schema/Dia/DiaRelationSchema.php
M libraries/classes/Plugins/Schema/Pdf/TableStatsPdf.php
M libraries/classes/Plugins/Schema/SchemaDia.php
M libraries/classes/Plugins/Schema/SchemaEps.php
M libraries/classes/Plugins/Schema/SchemaPdf.php
M libraries/classes/Plugins/Schema/SchemaSvg.php
M libraries/classes/Plugins/Schema/Svg/SvgRelationSchema.php
M libraries/classes/Plugins/SchemaPlugin.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Sql.php
M libraries/classes/Plugins/TwoFactor/Application.php
M libraries/classes/Plugins/TwoFactor/Key.php
M libraries/classes/Plugins/TwoFactorPlugin.php
M libraries/classes/Properties/Options/Groups/OptionsPropertySubgroup.php
M libraries/classes/Properties/Options/OptionsPropertyGroup.php
M libraries/classes/Relation.php
M libraries/classes/Setup/Index.php
M libraries/classes/SystemDatabase.php
M libraries/classes/Table.php
M libraries/classes/Template.php
M libraries/classes/Transformations.php
M libraries/classes/Twig/I18n/NodeTrans.php
M libraries/classes/Twig/I18n/TokenParserTrans.php
M libraries/classes/Twig/I18nExtension.php
M libraries/classes/Twig/UtilExtension.php
M libraries/classes/TwoFactor.php
M libraries/classes/Types.php
M libraries/classes/UserPreferences.php
M libraries/classes/UserPreferencesHeader.php
M libraries/classes/Util.php
M prefs_manage.php
M prefs_twofactor.php
M server_status_monitor.php
M setup/config.php
M tbl_change.php
M tbl_operations.php
M test/EnvironmentTest.php
M test/classes/Config/Forms/FormListTest.php
M test/classes/Config/ServerConfigChecksTest.php
M test/classes/Controllers/Server/DatabasesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/Controllers/Table/SearchControllerTest.php
M test/classes/Controllers/Table/StructureControllerTest.php
M test/classes/DatabaseInterfaceTest.php
M test/classes/Dbi/DbiMysqliTest.php
M test/classes/Display/ErrorTest.php
M test/classes/ErrorReportTest.php
M test/classes/HeaderTest.php
M test/classes/MessageTest.php
M test/classes/Navigation/NavigationTest.php
M test/classes/Navigation/Nodes/NodeDatabaseChildTest.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
M test/classes/Plugins/Import/ImportLdiTest.php
M test/classes/Plugins/Transformations/TransformationPluginsTest.php
M test/classes/PmaTestCase.php
M test/classes/RelationCleanupTest.php
M test/classes/ScriptsTest.php
M test/classes/Server/PrivilegesTest.php
M test/classes/Setup/ConfigGeneratorTest.php
M test/classes/TableTest.php
M test/classes/TrackerTest.php
M test/classes/TrackingTest.php
M test/classes/UserPreferencesHeaderTest.php
M test/classes/Utils/HttpRequestTest.php
M test/selenium/TestBase.php
M themes.php
M url.php
M user_password.php
M version_check.php
Log Message:
-----------
Reference class names in use statements
Sort use statements
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a2629a9967b0f3d74e4eb18db69fb13a0874c9bc
https://github.com/phpmyadmin/phpmyadmin/commit/a2629a9967b0f3d74e4eb18db69…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Force facebook/webdriver 1.6
facebook/webdriver 1.7.0 is throwing an exception.
https://travis-ci.org/phpmyadmin/phpmyadmin/jobs/544537080#L564
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c8f84fc7485b384540c71364bedc4c62946520c3
https://github.com/phpmyadmin/phpmyadmin/commit/c8f84fc7485b384540c71364bed…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M db_export.php
M db_operations.php
M db_qbe.php
M db_tracking.php
M libraries/classes/Advisor.php
M libraries/classes/Charsets.php
M libraries/classes/Config/ConfigFile.php
M libraries/classes/Config/Descriptions.php
M libraries/classes/Config/PageSettings.php
M libraries/classes/Config/Validator.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Setup/FormController.php
M libraries/classes/Controllers/Table/ChartController.php
M libraries/classes/Core.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Display/Results.php
M libraries/classes/Encoding.php
M libraries/classes/ErrorReport.php
M libraries/classes/Export.php
M libraries/classes/File.php
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/Import.php
M libraries/classes/InsertEdit.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Normalization.php
M libraries/classes/Operations.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Auth/AuthenticationHttp.php
M libraries/classes/Plugins/Export/ExportCsv.php
M libraries/classes/Plugins/Export/ExportHtmlword.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportMediawiki.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Export/ExportYaml.php
M libraries/classes/Plugins/Import/ImportShp.php
M libraries/classes/Plugins/TwoFactor/Key.php
M libraries/classes/Properties/Options/OptionsPropertyGroup.php
M libraries/classes/Sanitize.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Sql.php
M libraries/classes/SysInfoWINNT.php
M libraries/classes/Template.php
M libraries/classes/Theme.php
M libraries/classes/Tracker.php
M libraries/classes/Util.php
M libraries/tbl_columns_definition_form.inc.php
M prefs_forms.php
M server_privileges.php
M tbl_operations.php
M test/classes/AdvisorTest.php
M test/classes/ConfigTest.php
M test/classes/IpAllowDenyTest.php
M test/classes/PmaTestCase.php
Log Message:
-----------
Replace is_null with identical comparison with null
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2906fb0e26fa7898a56b84cfc8997c7ab8a7d47a
https://github.com/phpmyadmin/phpmyadmin/commit/2906fb0e26fa7898a56b84cfc89…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Gis/GisMultiPolygon.php
M libraries/classes/Gis/GisPolygon.php
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Relation.php
M libraries/classes/ZipExtension.php
Log Message:
-----------
Replace sizeof function alias with count
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c049dfa7a6b16f8bc2924838fa05a97b28307b90
https://github.com/phpmyadmin/phpmyadmin/commit/c049dfa7a6b16f8bc2924838fa0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M test/classes/EncodingTest.php
M test/classes/Server/PrivilegesTest.php
M test/classes/UtilTest.php
Log Message:
-----------
Replace alias functions with their respective functions
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0bb9955aadbb58624399f2f1164809509a3a5564
https://github.com/phpmyadmin/phpmyadmin/commit/0bb9955aadbb58624399f2f1164…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M libraries/classes/ListAbstract.php
Log Message:
-----------
Remove unneeded constructor in ListAbstract class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0feae320563279a0d6319dc59f9826f2348efb68
https://github.com/phpmyadmin/phpmyadmin/commit/0feae320563279a0d6319dc59f9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Config/Descriptions.php
M libraries/classes/Config/ServerConfigChecks.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/Setup/HomeController.php
M libraries/classes/Display/Error.php
M libraries/classes/Display/Results.php
M libraries/classes/Message.php
M libraries/classes/Sanitize.php
M libraries/classes/Setup/Index.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/UserPreferencesHeader.php
M libraries/classes/Util.php
M test/classes/SanitizeTest.php
Log Message:
-----------
Rename Sanitize::sanitize to Sanitize::sanitizeMessage
...to avoid the PHP 4 constructor format
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c9129e9bd82810fe4837e37a45734ea077406bfb
https://github.com/phpmyadmin/phpmyadmin/commit/c9129e9bd82810fe4837e37a457…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-12 (Wed, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Database/Qbe.php
M libraries/classes/Display/Results.php
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/InsertEdit.php
M libraries/classes/Navigation/Nodes/NodeDatabase.php
M libraries/classes/Normalization.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Table.php
M libraries/classes/Tracker.php
M libraries/classes/Tracking.php
M test/classes/Display/ResultsTest.php
M test/classes/Engines/InnodbTest.php
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportLatexTest.php
M test/classes/Plugins/Export/ExportSqlTest.php
M test/classes/UtilTest.php
Log Message:
-----------
Remove unnecessary string concatenation
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 34541f565c1d05a18feeba387dbeb75881b625a8
https://github.com/phpmyadmin/phpmyadmin/commit/34541f565c1d05a18feeba387db…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-13 (Thu, 06 June 2019) -03:00
Changed paths:
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Relation.php
Log Message:
-----------
Fix undefined index when using favorite tables
Fixes #15330
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e1f9ae00cd2f88196963ed4256a3208bfd47ac97
https://github.com/phpmyadmin/phpmyadmin/commit/e1f9ae00cd2f88196963ed4256a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-14 (Fri, 06 June 2019) -03:00
Changed paths:
M changelog.php
M import.php
M libraries/classes/Config.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Config/Forms/Setup/FeaturesForm.php
M libraries/classes/Config/Forms/Setup/ServersForm.php
M libraries/classes/Config/Forms/User/ExportForm.php
M libraries/classes/Config/Forms/User/FeaturesForm.php
M libraries/classes/Config/Forms/User/MainForm.php
M libraries/classes/Config/SpecialSchemaLinks.php
M libraries/classes/Config/Validator.php
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/Server/Status/VariablesController.php
M libraries/classes/Controllers/Setup/HomeController.php
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Controllers/Table/SearchController.php
M libraries/classes/Database/Qbe.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Display/Results.php
M libraries/classes/ErrorReport.php
M libraries/classes/Gis/GisGeometry.php
M libraries/classes/Header.php
M libraries/classes/InsertEdit.php
M libraries/classes/InternalRelations.php
M libraries/classes/ListDatabase.php
M libraries/classes/Navigation/Nodes/NodeDatabaseChild.php
M libraries/classes/Normalization.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportJson.php
M libraries/classes/Plugins/Export/ExportPdf.php
M libraries/classes/Sanitize.php
M libraries/classes/SavedSearches.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Server/Status/Data.php
M libraries/classes/Server/Status/Monitor.php
M libraries/classes/Server/UserGroups.php
M libraries/classes/Tracking.php
M libraries/classes/Transformations.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/Types.php
M libraries/classes/UserPassword.php
M libraries/classes/UserPreferences.php
M libraries/classes/Util.php
M libraries/config.default.php
M libraries/tbl_columns_definition_form.inc.php
M prefs_manage.php
M tbl_chart.php
M tbl_find_replace.php
M tbl_select.php
M tbl_structure.php
M tbl_zoom_select.php
M test/bootstrap-dist.php
M test/classes/AdvisorTest.php
M test/classes/CentralColumnsTest.php
M test/classes/Config/ConfigFileTest.php
M test/classes/Config/FormDisplayTest.php
M test/classes/Config/FormTest.php
M test/classes/ConfigTest.php
M test/classes/Controllers/Database/StructureControllerTest.php
M test/classes/Controllers/Server/EnginesControllerTest.php
M test/classes/Controllers/Server/Status/MonitorControllerTest.php
M test/classes/Controllers/Server/Status/ProcessesControllerTest.php
M test/classes/Controllers/Server/VariablesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/CoreTest.php
M test/classes/Database/DesignerTest.php
M test/classes/Database/QbeTest.php
M test/classes/Database/SearchTest.php
M test/classes/DatabaseInterfaceTest.php
M test/classes/Display/ResultsTest.php
M test/classes/Engines/InnodbTest.php
M test/classes/ErrorReportTest.php
M test/classes/ErrorTest.php
M test/classes/FooterTest.php
M test/classes/Gis/GisGeometryCollectionTest.php
M test/classes/Gis/GisLineStringTest.php
M test/classes/Gis/GisMultiLineStringTest.php
M test/classes/Gis/GisMultiPointTest.php
M test/classes/Gis/GisMultiPolygonTest.php
M test/classes/Gis/GisPointTest.php
M test/classes/Gis/GisPolygonTest.php
M test/classes/IndexTest.php
M test/classes/InsertEditTest.php
M test/classes/NormalizationTest.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
M test/classes/Plugins/Auth/AuthenticationHttpTest.php
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportLatexTest.php
M test/classes/Plugins/Export/ExportMediawikiTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
M test/classes/Plugins/Export/ExportPdfTest.php
M test/classes/Plugins/Export/ExportSqlTest.php
M test/classes/Plugins/Export/ExportTexytextTest.php
M test/classes/Plugins/Export/ExportXmlTest.php
M test/classes/Plugins/Schema/DiaRelationSchemaTest.php
M test/classes/Plugins/Schema/EpsRelationSchemaTest.php
M test/classes/Plugins/Schema/PdfRelationSchemaTest.php
M test/classes/Plugins/Schema/SvgRelationSchemaTest.php
M test/classes/RelationTest.php
M test/classes/ReplicationGuiTest.php
M test/classes/Rte/RoutinesTest.php
M test/classes/Server/PrivilegesTest.php
M test/classes/Server/UserGroupsTest.php
M test/classes/Setup/ConfigGeneratorTest.php
M test/classes/Setup/IndexTest.php
M test/classes/SqlTest.php
M test/classes/TableTest.php
M test/classes/TrackerTest.php
M test/classes/TrackingTest.php
M test/classes/TransformationsTest.php
M test/classes/TwoFactorTest.php
M test/classes/TypesTest.php
M test/classes/UserPreferencesTest.php
M test/classes/UtilTest.php
M test/classes/ZipExtensionTest.php
M view_operations.php
Log Message:
-----------
Add a trailing comma in multi-line arrays
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 487f2fc1a48faa1daa3a9f3bb7cf01476698bc9e
https://github.com/phpmyadmin/phpmyadmin/commit/487f2fc1a48faa1daa3a9f3bb7c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-14 (Fri, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Template.php
Log Message:
-----------
Replace static::BASE_PATH with self::BASE_PATH in Template
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 553b188e15e055e320d391f0faa7d3b5c8e3ea4f
https://github.com/phpmyadmin/phpmyadmin/commit/553b188e15e055e320d391f0faa…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-14 (Fri, 06 June 2019) -03:00
Changed paths:
M libraries/classes/LanguageManager.php
M libraries/classes/Template.php
Log Message:
-----------
Replace $this:: with static:: for static properties
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f96c41f1ab9667ef9bcfff1d067758fa69042c4e
https://github.com/phpmyadmin/phpmyadmin/commit/f96c41f1ab9667ef9bcfff1d067…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-14 (Fri, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Controllers/HomeController.php
M libraries/classes/LanguageManager.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
Log Message:
-----------
Move Template dependency as a parameter in LanguageManager
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a45651ae62b36e8ac18c54d256dada9e10ed57e5
https://github.com/phpmyadmin/phpmyadmin/commit/a45651ae62b36e8ac18c54d256d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M scripts/create-release.sh
Log Message:
-----------
Remove some test suite files from release
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: fb9a7f8dc726d247f5479b5642ae60f96b668f24
https://github.com/phpmyadmin/phpmyadmin/commit/fb9a7f8dc726d247f5479b5642a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M scripts/create-release.sh
Log Message:
-----------
Add version check for package.json in create-release.sh
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a395bd282337bd46d1ede5c1d4e3a65537f881be
https://github.com/phpmyadmin/phpmyadmin/commit/a395bd282337bd46d1ede5c1d4e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M ajax.php
M browse_foreigners.php
M chk_rel.php
M db_central_columns.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_routines.php
M db_search.php
M db_sql.php
M db_sql_autocomplete.php
M db_structure.php
M db_triggers.php
M export.php
M import.php
M index.php
M libraries/tbl_columns_definition_form.inc.php
M navigation.php
M normalization.php
M schema_export.php
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_plugins.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M server_variables.php
M services.yml
M tbl_sql.php
M transformation_wrapper.php
M view_operations.php
Log Message:
-----------
Remove as much as possible the old DI system
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: e060b82ff11145ff4756583eba7c5179dae146e0
https://github.com/phpmyadmin/phpmyadmin/commit/e060b82ff11145ff4756583eba7…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
A libraries/classes/Di/Migration.php
M db_events.php
M libraries/classes/Core.php
M libraries/common.inc.php
M services.yml
M services_controllers.yml
Log Message:
-----------
Initialize use of DI parameters for GLOBALS variables
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: df847d71219d6b7273a7f98341cdcc7e36e834bf
https://github.com/phpmyadmin/phpmyadmin/commit/df847d71219d6b7273a7f98341c…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M ajax.php
M browse_foreigners.php
M chk_rel.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_operations.php
M db_qbe.php
M db_search.php
M db_sql_autocomplete.php
M db_structure.php
M export.php
M index.php
M libraries/tbl_columns_definition_form.inc.php
M navigation.php
M normalization.php
M schema_export.php
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_plugins.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M server_variables.php
M transformation_overview.php
M transformation_wrapper.php
M view_operations.php
Log Message:
-----------
Remove useless 'use'
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 71520ed22224fdcb1a4004e33105af453ea16b61
https://github.com/phpmyadmin/phpmyadmin/commit/71520ed22224fdcb1a4004e3310…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_events.php
M db_multi_table_query.php
M db_routines.php
M db_triggers.php
M services_controllers.yml
M tbl_addfield.php
Log Message:
-----------
Continue to remove pMA Container
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 6c613edfb2f80d6aa30a3d34a460b1721a9a0e8d
https://github.com/phpmyadmin/phpmyadmin/commit/6c613edfb2f80d6aa30a3d34a46…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_central_columns.php
M services.yml
M services_controllers.yml
Log Message:
-----------
Manage CentralColumns class as a service
Define correctly the CentralColumnsController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 72237fee89a5cb2e263faed917acd64c9ac9190a
https://github.com/phpmyadmin/phpmyadmin/commit/72237fee89a5cb2e263faed917a…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_datadict.php
M services_controllers.yml
Log Message:
-----------
Define correctly the DataDictionaryController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 87f5f45e8e4a6d5541e2fe7a99086a5158fa0d33
https://github.com/phpmyadmin/phpmyadmin/commit/87f5f45e8e4a6d5541e2fe7a990…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_chart.php
Log Message:
-----------
Define correctly the ChartController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 5c790458a2ffa0605e6f4e690b999e7fcac3c4f7
https://github.com/phpmyadmin/phpmyadmin/commit/5c790458a2ffa0605e6f4e690b9…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_create.php
Log Message:
-----------
Remove old Container in tbl_create.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: ac5a95ca84c4a5e01da0a5342abc3d2081e7b74b
https://github.com/phpmyadmin/phpmyadmin/commit/ac5a95ca84c4a5e01da0a5342ab…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_find_replace.php
Log Message:
-----------
Define correctly the SearchController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 8dc906e9239f076e28874cd3c6692ed0b3622d03
https://github.com/phpmyadmin/phpmyadmin/commit/8dc906e9239f076e28874cd3c66…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_structure.php
M services_controllers.yml
Log Message:
-----------
Define correctly the Database\StructureController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: c68bedaa9ee56b72818747cbe109b714a4fe2fe6
https://github.com/phpmyadmin/phpmyadmin/commit/c68bedaa9ee56b72818747cbe10…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_central_columns.php
M db_events.php
M db_routines.php
M db_triggers.php
M tbl_addfield.php
M tbl_create.php
M tbl_find_replace.php
Log Message:
-----------
Add missing variables
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 65833928fa2f58fa39c03d98b8e4a90047ce825a
https://github.com/phpmyadmin/phpmyadmin/commit/65833928fa2f58fa39c03d98b8e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_routines.php
M services.yml
Log Message:
-----------
Add CheckUserPrivileges as a service
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 7e909f759f61446b5e78acf43b090785681c1e12
https://github.com/phpmyadmin/phpmyadmin/commit/7e909f759f61446b5e78acf43b0…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M db_sql.php
M services_controllers.yml
Log Message:
-----------
Define correctly the Database\SqlController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 92bf62d474a2253e7d3a667893e07eb861c7518c
https://github.com/phpmyadmin/phpmyadmin/commit/92bf62d474a2253e7d3a667893e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_gis_visualization.php
Log Message:
-----------
Define correctly the GisVisualizationController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 553e3615c00f5049668b1f193281f7a758d15cb5
https://github.com/phpmyadmin/phpmyadmin/commit/553e3615c00f5049668b1f19328…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_indexes.php
Log Message:
-----------
Define correctly the Table\IndexesController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 97faeb4420b5308ec27900f2915057e2104a3c2f
https://github.com/phpmyadmin/phpmyadmin/commit/97faeb4420b5308ec27900f2915…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_relation.php
Log Message:
-----------
Define correctly the Table\RelationController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 127c4831d8cedb6d8763649a716cebc4dbb14731
https://github.com/phpmyadmin/phpmyadmin/commit/127c4831d8cedb6d8763649a716…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_sql.php
Log Message:
-----------
Define correctly the Table\SqlController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: f1349666bd83c3ab2ecf1770e651720e8798a4b1
https://github.com/phpmyadmin/phpmyadmin/commit/f1349666bd83c3ab2ecf1770e65…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_structure.php
Log Message:
-----------
Define correctly the Table\StructureController parameters
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: c301248ccdaac8b73615cc43cbbfb7e1c6ff8b7d
https://github.com/phpmyadmin/phpmyadmin/commit/c301248ccdaac8b73615cc43cbb…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_structure.php
Log Message:
-----------
Remove Di\Container in tbl_structure.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 8de3080d45b24f10f8e67f9033e19b55fe435e9e
https://github.com/phpmyadmin/phpmyadmin/commit/8de3080d45b24f10f8e67f9033e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_get_field.php
Log Message:
-----------
Remove Di\Container in tbl_get_field.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 1c710ee4e09a8db3ba1bf7a6e0e6f2ba703bc1ef
https://github.com/phpmyadmin/phpmyadmin/commit/1c710ee4e09a8db3ba1bf7a6e0e…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_gis_visualization.php
Log Message:
-----------
Remove Di\Container in tbl_gis_visualization.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 454eb60fbbf9f801cdba76dfcfc34643c04de5df
https://github.com/phpmyadmin/phpmyadmin/commit/454eb60fbbf9f801cdba76dfcfc…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services_controllers.yml
M tbl_indexes.php
Log Message:
-----------
Remove Di\Container in tbl_indexes.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: c46ddb8b16b1bbfa23b066d56b9f1f401ea4903a
https://github.com/phpmyadmin/phpmyadmin/commit/c46ddb8b16b1bbfa23b066d56b9…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M services.yml
M tbl_operations.php
Log Message:
-----------
Remove Di\Container in tbl_operations.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: f5b858c8da10b8fc4494620efc18d03b5ac2ab4e
https://github.com/phpmyadmin/phpmyadmin/commit/f5b858c8da10b8fc4494620efc1…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_relation.php
Log Message:
-----------
Remove Di\Container in tbl_relation.php
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 1b5131863f555b96507d66213dcf4ec76509e129
https://github.com/phpmyadmin/phpmyadmin/commit/1b5131863f555b96507d66213dc…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M test/bootstrap-dist.php
M test/bootstrap-phpstan.php
Log Message:
-----------
Get rid of old container in DatabaseInterface
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 39c439f08d7a1c17c3c9442679c3778938cfed4c
https://github.com/phpmyadmin/phpmyadmin/commit/39c439f08d7a1c17c3c9442679c…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-06-15 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Di/Migration.php
Log Message:
-----------
Fix phpstan errors
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: a922b1114ffadfaceabca1b9f140168956692c2d
https://github.com/phpmyadmin/phpmyadmin/commit/a922b1114ffadfaceabca1b9f14…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
A libraries/classes/Di/Migration.php
M ajax.php
M browse_foreigners.php
M chk_rel.php
M db_central_columns.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_routines.php
M db_search.php
M db_sql.php
M db_sql_autocomplete.php
M db_structure.php
M db_triggers.php
M export.php
M import.php
M index.php
M libraries/classes/Core.php
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M libraries/tbl_columns_definition_form.inc.php
M navigation.php
M normalization.php
M schema_export.php
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_plugins.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M server_variables.php
M services.yml
M services_controllers.yml
M tbl_addfield.php
M tbl_chart.php
M tbl_create.php
M tbl_find_replace.php
M tbl_get_field.php
M tbl_gis_visualization.php
M tbl_indexes.php
M tbl_operations.php
M tbl_relation.php
M tbl_sql.php
M tbl_structure.php
M test/bootstrap-dist.php
M test/bootstrap-phpstan.php
M transformation_overview.php
M transformation_wrapper.php
M view_operations.php
Log Message:
-----------
Merge pull request #15279 from Tithugues/feature/get_rid_of_old_container
Remove old DI container from various files
Commit: 04f3340b97d06489cf640a7096222439f3b0f3a2
https://github.com/phpmyadmin/phpmyadmin/commit/04f3340b97d06489cf640a70962…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M services.yml
M tbl_change.php
Log Message:
-----------
Remove old DI container in tbl_change.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9321e5cd2e47f3dd34f48ee47a2bca170fa916fd
https://github.com/phpmyadmin/phpmyadmin/commit/9321e5cd2e47f3dd34f48ee47a2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M services.yml
M tbl_export.php
Log Message:
-----------
Remove old DI container in tbl_export.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 72bcb678f6ef8f8989c2857ee3ffa5689f67d308
https://github.com/phpmyadmin/phpmyadmin/commit/72bcb678f6ef8f8989c2857ee3f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M tbl_replace.php
Log Message:
-----------
Remove old DI container in tbl_replace.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: dcee7d50035f72fe6311095cdc7ce07f9295c2e3
https://github.com/phpmyadmin/phpmyadmin/commit/dcee7d50035f72fe6311095cdc7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M tbl_select.php
Log Message:
-----------
Remove old DI container in tbl_select.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8d0df78d4582be4fb3ded1b659964376fce0110c
https://github.com/phpmyadmin/phpmyadmin/commit/8d0df78d4582be4fb3ded1b6599…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M tbl_zoom_select.php
Log Message:
-----------
Remove old DI container in tbl_zoom_select.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 89bce5a782894ef8075bf149a3cad3c31ad2679b
https://github.com/phpmyadmin/phpmyadmin/commit/89bce5a782894ef8075bf149a3c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M transformation_overview.php
Log Message:
-----------
Remove old DI container in transformation_overview.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b739e204c2978c8acc121534d6301ac2643db88b
https://github.com/phpmyadmin/phpmyadmin/commit/b739e204c2978c8acc121534d63…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M services.yml
M user_password.php
Log Message:
-----------
Remove old DI container in user_password.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d2c80393e072b21bf1c564aefc41b2435b655e7b
https://github.com/phpmyadmin/phpmyadmin/commit/d2c80393e072b21bf1c564aefc4…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M view_create.php
Log Message:
-----------
Remove old DI container in view_create.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2d620addfad11cdb7cff4407effb5244fabb79fb
https://github.com/phpmyadmin/phpmyadmin/commit/2d620addfad11cdb7cff4407eff…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M db_sql.php
M services.yml
M sql.php
M tbl_sql.php
Log Message:
-----------
Remove old DI container in sql.php, db_sql.php and tbl_sql.php
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2033507ce4ca94096dca9bf582c7c7f4ccf3e043
https://github.com/phpmyadmin/phpmyadmin/commit/2033507ce4ca94096dca9bf582c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Database/StructureControllerTest.php
M test/classes/Controllers/Server/VariablesControllerTest.php
Log Message:
-----------
Remove old DI container in db structure controller
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d74fca7cade11676722ee2c233f44476d173db81
https://github.com/phpmyadmin/phpmyadmin/commit/d74fca7cade11676722ee2c233f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Server/VariablesControllerTest.php
Log Message:
-----------
Remove old DI container in VariablesControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9aa85d058b6692d84d8e90f75626dd16a1d61e81
https://github.com/phpmyadmin/phpmyadmin/commit/9aa85d058b6692d84d8e90f7562…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Table/IndexesControllerTest.php
Log Message:
-----------
Remove old DI container in Table\IndexesControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d984b07ba6e7bde13080c213cb74b92ae7f41893
https://github.com/phpmyadmin/phpmyadmin/commit/d984b07ba6e7bde13080c213cb7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-15 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Table/SearchControllerTest.php
Log Message:
-----------
Remove old DI container in Table\SearchControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b793fbd5b9909cff68e96dae48bd7d4be5e0b5a1
https://github.com/phpmyadmin/phpmyadmin/commit/b793fbd5b9909cff68e96dae48b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M db_sql.php
M sql.php
M tbl_change.php
M tbl_export.php
M tbl_replace.php
M tbl_select.php
M tbl_sql.php
Log Message:
-----------
Declare $containerBuilder global in some files
As these may be imported files, it is necessary to add this.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 54667a0085b80d79712285e51534330658aae29d
https://github.com/phpmyadmin/phpmyadmin/commit/54667a0085b80d79712285e5153…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Table/RelationControllerTest.php
Log Message:
-----------
Remove old DI container in Table\RelationControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5c519cc819b0c220a53942192f727a71708e74b8
https://github.com/phpmyadmin/phpmyadmin/commit/5c519cc819b0c220a53942192f7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M test/classes/Controllers/Table/StructureControllerTest.php
Log Message:
-----------
Remove old DI container in Table\StructureControllerTest
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7ef47312db8baf09a1c44782a618493bee554442
https://github.com/phpmyadmin/phpmyadmin/commit/7ef47312db8baf09a1c44782a61…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M import.php
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M tbl_gis_visualization.php
M test/bootstrap-dist.php
M test/bootstrap-phpstan.php
M test/classes/Controllers/Table/IndexesControllerTest.php
Log Message:
-----------
Remove remaining calls to old DI container
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6c99653797b6dc0b5f1409edd3c30e015d040153
https://github.com/phpmyadmin/phpmyadmin/commit/6c99653797b6dc0b5f1409edd3c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M composer.json
D libraries/classes/Di/AliasItem.php
D libraries/classes/Di/Container.php
D libraries/classes/Di/ContainerException.php
D libraries/classes/Di/FactoryItem.php
D libraries/classes/Di/Item.php
D libraries/classes/Di/NotFoundException.php
D libraries/classes/Di/ReflectorItem.php
D libraries/classes/Di/ServiceItem.php
D libraries/classes/Di/ValueItem.php
D test/classes/Di/ContainerExceptionTest.php
D test/classes/Di/ContainerTest.php
D test/classes/Di/NotFoundExceptionTest.php
Log Message:
-----------
Remove custom dependency injection container
In favor of Symfony Dependency Injection Container
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d00665c652aa341213f0a3a26e60faf77fe56ed5
https://github.com/phpmyadmin/phpmyadmin/commit/d00665c652aa341213f0a3a26e6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M composer.json
M db_sql.php
M import.php
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
M services.yml
M sql.php
M tbl_change.php
M tbl_export.php
M tbl_gis_visualization.php
M tbl_replace.php
M tbl_select.php
M tbl_sql.php
M tbl_zoom_select.php
M test/bootstrap-dist.php
M test/bootstrap-phpstan.php
M test/classes/Controllers/Database/StructureControllerTest.php
M test/classes/Controllers/Server/VariablesControllerTest.php
M test/classes/Controllers/Table/IndexesControllerTest.php
M test/classes/Controllers/Table/RelationControllerTest.php
M test/classes/Controllers/Table/SearchControllerTest.php
M test/classes/Controllers/Table/StructureControllerTest.php
M transformation_overview.php
M user_password.php
M view_create.php
D libraries/classes/Di/AliasItem.php
D libraries/classes/Di/Container.php
D libraries/classes/Di/ContainerException.php
D libraries/classes/Di/FactoryItem.php
D libraries/classes/Di/Item.php
D libraries/classes/Di/NotFoundException.php
D libraries/classes/Di/ReflectorItem.php
D libraries/classes/Di/ServiceItem.php
D libraries/classes/Di/ValueItem.php
D test/classes/Di/ContainerExceptionTest.php
D test/classes/Di/ContainerTest.php
D test/classes/Di/NotFoundExceptionTest.php
Log Message:
-----------
Merge pull request #15335 from mauriciofauth/old-container
Removes custom dependency injection container in favor of Symfony Dependency Injection Container.
Commit: 9c505961df0342596ee6b59b1b803979de7d6eed
https://github.com/phpmyadmin/phpmyadmin/commit/9c505961df0342596ee6b59b1b8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Dbi/DbiDummy.php
M test/classes/Rte/EventsTest.php
M test/classes/Rte/RoutinesTest.php
M test/classes/Rte/TriggersTest.php
Log Message:
-----------
Fix missing globals in RTE tests
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 176d9adb911e8ef95e963d44464511a32c22f3e2
https://github.com/phpmyadmin/phpmyadmin/commit/176d9adb911e8ef95e963d44464…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Require facebook/webdriver 1.7.1
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a96f92c43cb9ef7f65a47fda17748671856bf955
https://github.com/phpmyadmin/phpmyadmin/commit/a96f92c43cb9ef7f65a47fda177…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-06-17 (Mon, 06 June 2019) -04:00
Changed paths:
M scripts/set-version.sh
Log Message:
-----------
Shellcheck fixes to set-version
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: ca5e5ce1974fad9c15e15c383f4094eaaba400b2
https://github.com/phpmyadmin/phpmyadmin/commit/ca5e5ce1974fad9c15e15c383f4…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-06-17 (Mon, 06 June 2019) -04:00
Changed paths:
M scripts/create-release.sh
Log Message:
-----------
Merge pull request #15333 from mauriciofauth/create-release
Add ignored files and version check in create-release.sh
Commit: b762a24238f0b8289e703f1d306d3fee82bc75b4
https://github.com/phpmyadmin/phpmyadmin/commit/b762a24238f0b8289e703f1d306…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-17 (Mon, 06 June 2019) -03:00
Changed paths:
M setup/lib/common.inc.php
Log Message:
-----------
Fix missing dbi global initialization on Setup
Fixes #15337
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 7e475c8faacf76689193967bb92d96a1527dab2b
https://github.com/phpmyadmin/phpmyadmin/commit/7e475c8faacf76689193967bb92…
Author: Deven Bansod <devenbansod(a)users.noreply.github.com>
Date: 2019-06-18 (Tue, 06 June 2019) +05:30
Changed paths:
M composer.json
Log Message:
-----------
Merge pull request #15341 from mauriciofauth/facebook-webdriver
Require facebook/webdriver 1.7.1
Commit: 65e61ae5c109ff0cf3533574f744b02fde645cb2
https://github.com/phpmyadmin/phpmyadmin/commit/65e61ae5c109ff0cf3533574f74…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-06-18 (Tue, 06 June 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: ee0932a00a8f973e47b290dfd34cf954a5279601
https://github.com/phpmyadmin/phpmyadmin/commit/ee0932a00a8f973e47b290dfd34…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-06-18 (Tue, 06 June 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: c044877b9e2c6fddcfb020a2791e1ccf6feb26e8
https://github.com/phpmyadmin/phpmyadmin/commit/c044877b9e2c6fddcfb020a2791…
Author: Walter Cheuk <wwycheuk(a)gmail.com>
Date: 2019-06-18 (Tue, 06 June 2019) +02:00
Changed paths:
M po/zh_TW.po
Log Message:
-----------
Translated using Weblate (Chinese (Traditional))
Currently translated at 99.7% (3312 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/zh_Hant/
Signed-off-by: Walter Cheuk <wwycheuk(a)gmail.com>
Commit: 6316967e01c5d8aeb820927d9d9a53211f6959bd
https://github.com/phpmyadmin/phpmyadmin/commit/6316967e01c5d8aeb820927d9d9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
M libraries/classes/InsertEdit.php
M libraries/classes/Table.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: affd02464c7f80dd64dde7f88df00ca4c83d9974
https://github.com/phpmyadmin/phpmyadmin/commit/affd02464c7f80dd64dde7f88df…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: ef0d23d53f39ea34aca2783347d7962639d5b8f5
https://github.com/phpmyadmin/phpmyadmin/commit/ef0d23d53f39ea34aca2783347d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f90f623751016cb3895b68215ac8918692faa588
https://github.com/phpmyadmin/phpmyadmin/commit/f90f623751016cb3895b68215ac…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-06-19 (Wed, 06 June 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: c97d42ce674ef6af3d3fd7731438ea36bcda02dd
https://github.com/phpmyadmin/phpmyadmin/commit/c97d42ce674ef6af3d3fd773143…
Author: Stefano Martinelli <stefano.ste.martinelli(a)gmail.com>
Date: 2019-06-19 (Wed, 06 June 2019) +02:00
Changed paths:
M po/it.po
Log Message:
-----------
Translated using Weblate (Italian)
Currently translated at 100.0% (3321 of 3321 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/it/
Signed-off-by: Stefano Martinelli <stefano.ste.martinelli(a)gmail.com>
Commit: 0bd9cc2beec41c8ef13e602da5e4adc7441f1f8a
https://github.com/phpmyadmin/phpmyadmin/commit/0bd9cc2beec41c8ef13e602da5e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M po/it.po
M po/ja.po
Log Message:
-----------
Merge remote-tracking branch 'weblate/master'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: dd0db50d116ef4c95b8e3a22374c70434dac6c95
https://github.com/phpmyadmin/phpmyadmin/commit/dd0db50d116ef4c95b8e3a22374…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M test/classes/UserPreferencesHeaderTest.php
Log Message:
-----------
Fix UserPreferencesHeaderTest failing test in Windows
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 86794c67cc8e5a925b51efe68730cfbd84630e04
https://github.com/phpmyadmin/phpmyadmin/commit/86794c67cc8e5a925b51efe6873…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) +02:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 12050dd6cfc4ab63a2e6b530de905678b80c1c6c
https://github.com/phpmyadmin/phpmyadmin/commit/12050dd6cfc4ab63a2e6b530de9…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Allow failure for the OSX tests
There is an issue with Travis Homebrew
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 391102088f92422ebaddbf74fbd08a358b5ee7ae
https://github.com/phpmyadmin/phpmyadmin/commit/391102088f92422ebaddbf74fbd…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-19 (Wed, 06 June 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Import.php
Log Message:
-----------
Merge branch 'QA_4_9'
Commit: db5ac6dccf94eaba62d27ac5c6862fda9270b029
https://github.com/phpmyadmin/phpmyadmin/commit/db5ac6dccf94eaba62d27ac5c68…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-06-21 (Fri, 06 June 2019) +02:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 911f74419ee6a2a19e56c390a43c79e7d4dfe529
https://github.com/phpmyadmin/phpmyadmin/commit/911f74419ee6a2a19e56c390a43…
Author: ssantos <ssantos(a)web.de>
Date: 2019-06-21 (Fri, 06 June 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 29854f8f896277d6cde93965bd5b3bd573a74ba1
https://github.com/phpmyadmin/phpmyadmin/commit/29854f8f896277d6cde93965bd5…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-06-21 (Fri, 06 June 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: a9d4aed0611b3e53f17af0a7b66eb717dbd47e50
https://github.com/phpmyadmin/phpmyadmin/commit/a9d4aed0611b3e53f17af0a7b66…
Author: Giovanni Sora <g.sora(a)tiscali.it>
Date: 2019-06-21 (Fri, 06 June 2019) +02:00
Changed paths:
M po/ia.po
Log Message:
-----------
Translated using Weblate (Interlingua)
Currently translated at 75.5% (2508 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ia/
Signed-off-by: Giovanni Sora <g.sora(a)tiscali.it>
Commit: 8cdd7229f324ff640e0bbe350eb72f328db79242
https://github.com/phpmyadmin/phpmyadmin/commit/8cdd7229f324ff640e0bbe350eb…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-06-21 (Fri, 06 June 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 010df8e4ecb6db79d35e9a4fa9454033034540f7
https://github.com/phpmyadmin/phpmyadmin/commit/010df8e4ecb6db79d35e9a4fa94…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Core.php
M libraries/classes/Display/Results.php
M libraries/classes/Plugins/Auth/AuthenticationSignon.php
M libraries/classes/Session.php
M libraries/classes/Util.php
M libraries/db_common.inc.php
M sql.php
M tbl_operations.php
M test/classes/CoreTest.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 693ef2e4a857c47dd326d38795420dedb5fe2bd1
https://github.com/phpmyadmin/phpmyadmin/commit/693ef2e4a857c47dd326d387954…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8707390acf2dbfdb1efb7444874b6d7b9227acdc
https://github.com/phpmyadmin/phpmyadmin/commit/8707390acf2dbfdb1efb7444874…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: 494bdfe97ecaaa951098a5f31f8b463a4b97d976
https://github.com/phpmyadmin/phpmyadmin/commit/494bdfe97ecaaa951098a5f31f8…
Author: ssantos <ssantos(a)web.de>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 36438b0796afa1947a9ac212c2c626f487bf187a
https://github.com/phpmyadmin/phpmyadmin/commit/36438b0796afa1947a9ac212c2c…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: a3a9baf5e3c58cb536dcd82c3b7f477ac77649b2
https://github.com/phpmyadmin/phpmyadmin/commit/a3a9baf5e3c58cb536dcd82c3b7…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3322 of 3322 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 9043682a952839c0819949e4bc5a6bcff16439f5
https://github.com/phpmyadmin/phpmyadmin/commit/9043682a952839c0819949e4bc5…
Author: Hosted Weblate <hosted(a)weblate.org>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M po/fr.po
M po/ja.po
M po/pt.po
M po/sl.po
Log Message:
-----------
Merge branch 'origin/master' into Weblate.
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/
Commit: 418b50dd4e722a9657cb8d48683546364df62ca8
https://github.com/phpmyadmin/phpmyadmin/commit/418b50dd4e722a9657cb8d48683…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/GisVisualizationController.php
M libraries/classes/Core.php
M tbl_gis_visualization.php
M templates/table/gis_visualization/gis_visualization.twig
M test/classes/CoreTest.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6cc352ac1251a693c23ca9b075b4b2a1f5d982ee
https://github.com/phpmyadmin/phpmyadmin/commit/6cc352ac1251a693c23ca9b075b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Config/ConfigFile.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Core.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Display/Results.php
M libraries/classes/File.php
M libraries/classes/FileListing.php
M libraries/classes/InsertEdit.php
M libraries/classes/Message.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Partition.php
M libraries/classes/Plugins/AuthenticationPlugin.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/Helpers/TableProperty.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
M libraries/classes/Plugins/Transformations/Abs/ExternalTransformationsPlugin.php
M libraries/classes/Properties/Options/OptionsPropertyOneItem.php
M libraries/classes/Properties/PropertyItem.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Relation.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Sql.php
M libraries/classes/StorageEngine.php
M libraries/classes/SysInfoBase.php
M libraries/classes/SysInfoLinux.php
M libraries/classes/SysInfoSunOS.php
M libraries/classes/SysInfoWINNT.php
M libraries/classes/ThemeManager.php
M libraries/classes/Util.php
M libraries/classes/VersionInformation.php
M libraries/classes/ZipExtension.php
M phpstan.neon.dist
M test/classes/Config/FormDisplayTest.php
M test/classes/PmaTestCase.php
M test/selenium/Database/ProceduresTest.php
Log Message:
-----------
phpstan level 3 fixes
21 errors left
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 083a46b36d6bc731db700467c24b034621d6b2da
https://github.com/phpmyadmin/phpmyadmin/commit/083a46b36d6bc731db700467c24…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Config/ConfigFile.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Core.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Display/Results.php
M libraries/classes/File.php
M libraries/classes/FileListing.php
M libraries/classes/InsertEdit.php
M libraries/classes/Message.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Partition.php
M libraries/classes/Plugins/AuthenticationPlugin.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/Helpers/TableProperty.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
M libraries/classes/Plugins/Transformations/Abs/ExternalTransformationsPlugin.php
M libraries/classes/Properties/Options/OptionsPropertyOneItem.php
M libraries/classes/Properties/PropertyItem.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Relation.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Sql.php
M libraries/classes/StorageEngine.php
M libraries/classes/SysInfoBase.php
M libraries/classes/SysInfoLinux.php
M libraries/classes/SysInfoSunOS.php
M libraries/classes/SysInfoWINNT.php
M libraries/classes/ThemeManager.php
M libraries/classes/Util.php
M libraries/classes/VersionInformation.php
M libraries/classes/ZipExtension.php
M phpstan.neon.dist
M test/classes/Config/FormDisplayTest.php
M test/classes/PmaTestCase.php
M test/selenium/Database/ProceduresTest.php
Log Message:
-----------
Merge #15322 - phpstan level 3 fixes
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d0b0ce14c15acee62cc80ca82fb1ec745b812ed0
https://github.com/phpmyadmin/phpmyadmin/commit/d0b0ce14c15acee62cc80ca82fb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M phpstan.neon.dist
Log Message:
-----------
Remove some excluded patterns from phpstan config
This commit needs to be reverted when level=3 is completed
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1a43a21f561814f4a2e65df9bf3cab035ea61d54
https://github.com/phpmyadmin/phpmyadmin/commit/1a43a21f561814f4a2e65df9bf3…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M test/classes/Plugins/Export/ExportOdtTest.php
Log Message:
-----------
Fix ExportOdtTest::testGetTableDefStandIn
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 996975262ffd095bdf10f7000342f1a53dcbc174
https://github.com/phpmyadmin/phpmyadmin/commit/996975262ffd095bdf10f700034…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M test/classes/Config/ConfigFileTest.php
Log Message:
-----------
Improve ConfigFileTest::tearDown
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 64c1b26bac93b3ec5315dc2957c5c65d9047b12d
https://github.com/phpmyadmin/phpmyadmin/commit/64c1b26bac93b3ec5315dc2957c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M import.php
M libraries/classes/Controllers/Server/VariablesController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Relation.php
M libraries/classes/Response.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Tracker.php
M tbl_addfield.php
Log Message:
-----------
Use strict compare for booleans
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a2268169ae97fc275469a0688ce6108367a2bda5
https://github.com/phpmyadmin/phpmyadmin/commit/a2268169ae97fc275469a0688ce…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M db_tracking.php
M export.php
M libraries/classes/CentralColumns.php
M libraries/classes/Config.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Controllers/Setup/HomeController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Core.php
M libraries/classes/Database/Qbe.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Display/Results.php
M libraries/classes/Import.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Normalization.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Import/ImportMediawiki.php
M libraries/classes/Plugins/Import/ImportOds.php
M libraries/classes/Plugins/Import/ImportShp.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Sql.php
M libraries/classes/Table.php
M libraries/classes/Tracking.php
M libraries/classes/VersionInformation.php
M libraries/tbl_columns_definition_form.inc.php
M test/classes/PmaTestCase.php
Log Message:
-----------
Use strict compare for count function
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d9f24280327316c575605b05faf74b8f05781d1f
https://github.com/phpmyadmin/phpmyadmin/commit/d9f24280327316c575605b05faf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M test/selenium/TestBase.php
Log Message:
-----------
Remove unused imports and fix an error reported by Scrutinizer
Commit: 3c74f22e893348ece4bfc20efa649db58a90e767
https://github.com/phpmyadmin/phpmyadmin/commit/3c74f22e893348ece4bfc20efa6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Sql.php
M libraries/classes/VersionInformation.php
M test/classes/TrackerTest.php
Log Message:
-----------
Minor code improvements
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 860809ea08f06936ddb796a93dfc28dd734aa7a9
https://github.com/phpmyadmin/phpmyadmin/commit/860809ea08f06936ddb796a93df…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix Windows CI exit failure (GPG agent)
See: https://travis-ci.community/t/timeout-after-build-finished-and-succeeded/13…
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 942897426bb6dd58f173972d471309f3516e0f13
https://github.com/phpmyadmin/phpmyadmin/commit/942897426bb6dd58f173972d471…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M tbl_gis_visualization.php
Log Message:
-----------
Merge branch 'QA_4_9'
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b9217146ab36bbd1fd4caaf0456d2e10a958d22a
https://github.com/phpmyadmin/phpmyadmin/commit/b9217146ab36bbd1fd4caaf0456…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-22 (Sat, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Display/Results.php
M libraries/classes/Sql.php
M test/classes/Display/ResultsTest.php
Log Message:
-----------
Fix multi server setup number of results selector
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 02766cf370ded8337fbc1c1ccdf890b311373075
https://github.com/phpmyadmin/phpmyadmin/commit/02766cf370ded8337fbc1c1ccdf…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-23 (Sun, 06 June 2019) -03:00
Changed paths:
A libraries/classes/Charsets/Charset.php
A libraries/classes/Charsets/Collation.php
A templates/charset_select.twig
A templates/collation_select.twig
M libraries/classes/Charsets.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/CollationsController.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Plugins/Export/ExportSql.php
M test/classes/CharsetsTest.php
M test/classes/Controllers/Server/CollationsControllerTest.php
Log Message:
-----------
Add Charset and Collation value types
And refactor Charset class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c0dc309b8ce189f529b8c170a9be7063fe34234d
https://github.com/phpmyadmin/phpmyadmin/commit/c0dc309b8ce189f529b8c170a9b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-23 (Sun, 06 June 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Disallow failures for OSX builds by enabling brew update
https://travis-ci.community/t/xcode-8-3-homebrew-outdated-error/3798
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 54fa7ecaa33c7231c11b6cd78c6f529f15b26f8a
https://github.com/phpmyadmin/phpmyadmin/commit/54fa7ecaa33c7231c11b6cd78c6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-23 (Sun, 06 June 2019) -03:00
Changed paths:
A libraries/classes/Charsets/Charset.php
A libraries/classes/Charsets/Collation.php
A templates/charset_select.twig
A templates/collation_select.twig
M libraries/classes/Charsets.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/CollationsController.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Dbi/DbiDummy.php
M libraries/classes/Plugins/Export/ExportSql.php
M test/classes/CharsetsTest.php
M test/classes/Controllers/Server/CollationsControllerTest.php
Log Message:
-----------
Merge pull request #15348 from mauriciofauth/charset-collation-types
Add Charset and Collation value objects
Commit: e361a5ccfebfbebbc1bcabaa9c7728b95321ef33
https://github.com/phpmyadmin/phpmyadmin/commit/e361a5ccfebfbebbc1bcabaa9c7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-23 (Sun, 06 June 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix PHP version in osx travis build
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 037666220007268cd2f43d1ab7a4c93ed4206c15
https://github.com/phpmyadmin/phpmyadmin/commit/037666220007268cd2f43d1ab7a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-23 (Sun, 06 June 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix composer installation on OSX build
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9b71301d48dd7b6ade18d72b9fa32aa9a820f375
https://github.com/phpmyadmin/phpmyadmin/commit/9b71301d48dd7b6ade18d72b9fa…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: eb949e5b6793fd636acdd53956fb615c8c8c087b
https://github.com/phpmyadmin/phpmyadmin/commit/eb949e5b6793fd636acdd53956f…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/ru.po
Log Message:
-----------
Translated using Weblate (Russian)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ru/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: aa80f90c941aa596d7e7a76286a9b1e107789be5
https://github.com/phpmyadmin/phpmyadmin/commit/aa80f90c941aa596d7e7a76286a…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: ec1f267a826cd04c958b8cbe5277e23076192242
https://github.com/phpmyadmin/phpmyadmin/commit/ec1f267a826cd04c958b8cbe527…
Author: ssantos <ssantos(a)web.de>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 55ca7be22a497e456eb21bf5442027fd9b0ab04a
https://github.com/phpmyadmin/phpmyadmin/commit/55ca7be22a497e456eb21bf5442…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 74e2571187641ac390c5b33e4932bb1177c836a6
https://github.com/phpmyadmin/phpmyadmin/commit/74e2571187641ac390c5b33e493…
Author: WWWesten <wwwesten(a)gmail.com>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/kk.po
Log Message:
-----------
Translated using Weblate (Kazakh)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/kk/
Signed-off-by: WWWesten <wwwesten(a)gmail.com>
Commit: 8fb5763b1da06a69c3252b7460333aef576012bf
https://github.com/phpmyadmin/phpmyadmin/commit/8fb5763b1da06a69c3252b74603…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 180b45f22509de436d599ff9ca052cafb532600e
https://github.com/phpmyadmin/phpmyadmin/commit/180b45f22509de436d599ff9ca0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Fix #15230 - Column misalignment
Fixes: #15230
Introduced by: 637fe6de06c1c7aa3b9d262462a2e9cac7768fd3
Commit: e0889beb52e67cbbec0d610eec4d209fe2448c9f
https://github.com/phpmyadmin/phpmyadmin/commit/e0889beb52e67cbbec0d610eec4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Improve code and readability of _getFieldVisibilityParams
Commit: bc585d97f7b3b868c58b4c42f0bd856b263fcc89
https://github.com/phpmyadmin/phpmyadmin/commit/bc585d97f7b3b868c58b4c42f0b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M doc/faq.rst
Log Message:
-----------
Merge branch 'QA_4_9'
I missed the sign-off for 180b45f22509de436d599ff9ca052cafb532600e and e0889beb52e67cbbec0d610eec4d209fe2448c9f
So the sign-off below is also for them.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6ecf6ec93e43d798d8ae56145830cf3d3566a0af
https://github.com/phpmyadmin/phpmyadmin/commit/6ecf6ec93e43d798d8ae5614583…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-24 (Mon, 06 June 2019) +02:00
Changed paths:
M js/ajax.js
M js/config.js
M js/console.js
M js/database/central_columns.js
M js/database/qbe.js
M js/database/structure.js
M js/designer/history.js
M js/designer/move.js
M js/export_output.js
M js/functions.js
M js/makegrid.js
M js/navigation.js
M js/normalization.js
M js/page_settings.js
M js/rte.js
M js/server/databases.js
M js/server/privileges.js
M js/server/status/monitor.js
M js/server/variables.js
M js/sql.js
M js/table/change.js
M js/table/chart.js
M js/table/operations.js
M js/u2f.js
Log Message:
-----------
Fixed most of deprecated Jquery calls
\.(blur|focus|focusin|focusout|resize|scroll|click|dblclick|mousedown|mouseup|mousemove|mouseover|mouseout|mouseenter|mouseleave|change|select|submit|keydown|keypress|keyup|contextmenu)\(\)
Ref: #13173
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b409c832248166c729b4b4357c8b84702f17338f
https://github.com/phpmyadmin/phpmyadmin/commit/b409c832248166c729b4b4357c8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-24 (Mon, 06 June 2019) -03:00
Changed paths:
A templates/rte/routines/parameter_row.twig
M libraries/classes/Rte/Routines.php
M test/classes/Rte/RoutinesTest.php
Log Message:
-----------
Extract HTML from Rte\Routines::getParameterRow
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0291c48114531d024ba467a08f379406a4bf3802
https://github.com/phpmyadmin/phpmyadmin/commit/0291c48114531d024ba467a08f3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-25 (Tue, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Charsets.php
M libraries/classes/Display/Import.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Twig/CharsetsExtension.php
M templates/display/import/import.twig
M test/classes/CharsetsTest.php
D templates/charset_select.twig
Log Message:
-----------
Remove Charsets::getCharsetDropdownBox method
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4fe624fa933b158f3aa8e7ec20a94109c6e9a723
https://github.com/phpmyadmin/phpmyadmin/commit/4fe624fa933b158f3aa8e7ec20a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-25 (Tue, 06 June 2019) -03:00
Changed paths:
M libraries/classes/CentralColumns.php
M libraries/classes/Charsets.php
M libraries/classes/Controllers/HomeController.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Normalization.php
M libraries/classes/Operations.php
M libraries/classes/Twig/CharsetsExtension.php
M libraries/tbl_columns_definition_form.inc.php
M templates/columns_definitions/column_attributes.twig
M templates/columns_definitions/column_definitions_form.twig
M templates/columns_definitions/table_fields_definitions.twig
M templates/database/central_columns/main.twig
M templates/home/index.twig
M templates/server/databases/index.twig
M test/classes/CharsetsTest.php
D templates/collation_select.twig
Log Message:
-----------
Remove Charsets::getCollationDropdownBox method
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4db8ce8cf01c6ff28ca015cadc2080f066f46180
https://github.com/phpmyadmin/phpmyadmin/commit/4db8ce8cf01c6ff28ca015cadc2…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-25 (Tue, 06 June 2019) -03:00
Changed paths:
M doc/faq.rst
M doc/glossary.rst
M libraries/classes/Config/Descriptions.php
M libraries/classes/Plugins/Export/ExportHtmlword.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M templates/columns_definitions/table_fields_definitions.twig
M templates/database/data_dictionary/index.twig
M templates/table/structure/display_structure.twig
M templates/transformation_overview.twig
M test/classes/Controllers/TransformationOverviewControllerTest.php
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportLatexTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
M test/classes/Plugins/Export/ExportSqlTest.php
Log Message:
-----------
Change MIME type references to Media (MIME) type
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: a12012b7ae1894b4315f9ff4dfc9e76e3cf835bb
https://github.com/phpmyadmin/phpmyadmin/commit/a12012b7ae1894b4315f9ff4dfc…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-25 (Tue, 06 June 2019) +02:00
Changed paths:
M js/ajax.js
M js/config.js
M js/console.js
M js/database/central_columns.js
M js/database/qbe.js
M js/database/structure.js
M js/designer/history.js
M js/designer/move.js
M js/export_output.js
M js/functions.js
M js/makegrid.js
M js/navigation.js
M js/normalization.js
M js/page_settings.js
M js/rte.js
M js/server/databases.js
M js/server/privileges.js
M js/server/status/monitor.js
M js/server/variables.js
M js/sql.js
M js/table/change.js
M js/table/chart.js
M js/table/operations.js
M js/u2f.js
Log Message:
-----------
Merge #15355 - Fix most of deprecated Jquery calls
Pull-request: #15355
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d28489094fb70718b9798683072ef9fd6d7132a3
https://github.com/phpmyadmin/phpmyadmin/commit/d28489094fb70718b9798683072…
Author: ssantos <ssantos(a)web.de>
Date: 2019-06-26 (Wed, 06 June 2019) +02:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: f58a86aa4d94f3c2c287117aaf596af7a5f6e247
https://github.com/phpmyadmin/phpmyadmin/commit/f58a86aa4d94f3c2c287117aaf5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-27 (Thu, 06 June 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Session.php
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 711ef54eca27fc20275d228b43de8314dd58bab6
https://github.com/phpmyadmin/phpmyadmin/commit/711ef54eca27fc20275d228b43d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-28 (Fri, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Charsets.php
M libraries/classes/Controllers/Server/DatabasesController.php
M libraries/classes/Dbi/DbiDummy.php
M test/classes/CharsetsTest.php
M test/classes/Controllers/Server/DatabasesControllerTest.php
Log Message:
-----------
Add Charsets::findCollationByName method
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e99f3ace5c59e18c1fb3ef645a1b7bc25429d508
https://github.com/phpmyadmin/phpmyadmin/commit/e99f3ace5c59e18c1fb3ef645a1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-28 (Fri, 06 June 2019) -03:00
Changed paths:
A test/classes/Stubs/DbiDummy.php
M libraries/classes/DatabaseInterface.php
M scripts/generate-twig-cache
M test/bootstrap-dist.php
M test/bootstrap-phpstan.php
M test/classes/CharsetsTest.php
M test/classes/DatabaseInterfaceTest.php
M test/classes/TableTest.php
D libraries/classes/Dbi/DbiDummy.php
Log Message:
-----------
Move DbiDummy extension to the test directory
DbiDummy extension is only used for testing purposes
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 064e5eef0a806413f8cc76ad435931b1cf7af16a
https://github.com/phpmyadmin/phpmyadmin/commit/064e5eef0a806413f8cc76ad435…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-28 (Fri, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Database/StructureController.php
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/Template.php
M scripts/generate-twig-cache
M templates/database/structure/body_for_table_summary.twig
M templates/table/structure/display_structure.twig
M templates/table/structure/display_table_stats.twig
M test/classes/Controllers/Server/CollationsControllerTest.php
D libraries/classes/Twig/CharsetsExtension.php
Log Message:
-----------
Use Collation value object when possible
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6b6d5ecd2c18f5aad51e54c525c564b40e526dc1
https://github.com/phpmyadmin/phpmyadmin/commit/6b6d5ecd2c18f5aad51e54c525c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-28 (Fri, 06 June 2019) -03:00
Changed paths:
A test/classes/Charsets/CollationTest.php
M libraries/classes/Charsets.php
M libraries/classes/Charsets/Collation.php
M test/classes/CharsetsTest.php
Log Message:
-----------
Move Charsets::getCollationDescr to Collation and make it private
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 792563b7f34952ddbbe4ae1ef743afdc834fb274
https://github.com/phpmyadmin/phpmyadmin/commit/792563b7f34952ddbbe4ae1ef74…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-29 (Sat, 06 June 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Charsets/Collation.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 984fffa759b3ce870f895db79931c305cfbd2133
https://github.com/phpmyadmin/phpmyadmin/commit/984fffa759b3ce870f895db7993…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-29 (Sat, 06 June 2019) -03:00
Changed paths:
M test/classes/Charsets/CollationTest.php
Log Message:
-----------
Add more test data to CollationTest::testGetCollationDescription
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: eff076eaf0061ed413d429e30927566056ff5567
https://github.com/phpmyadmin/phpmyadmin/commit/eff076eaf0061ed413d429e3092…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-29 (Sat, 06 June 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 957d6df66491adb753b75cd228cda2a2d247fcf4
https://github.com/phpmyadmin/phpmyadmin/commit/957d6df66491adb753b75cd228c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-29 (Sat, 06 June 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 276191b28d50bd5e76e2b2ab599196b4595da557
https://github.com/phpmyadmin/phpmyadmin/commit/276191b28d50bd5e76e2b2ab599…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-29 (Sat, 06 June 2019) +02:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3323 of 3323 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2d864eb96446a4908aac892e3b6e652cfc3efbed
https://github.com/phpmyadmin/phpmyadmin/commit/2d864eb96446a4908aac892e3b6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-30 (Sun, 06 June 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Charsets/Collation.php
M test/classes/Charsets/CollationTest.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c6ca604291c24873babb3398535efc7261bb0488
https://github.com/phpmyadmin/phpmyadmin/commit/c6ca604291c24873babb3398535…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-30 (Sun, 06 June 2019) -03:00
Changed paths:
A test/classes/Charsets/CharsetTest.php
M libraries/classes/Charsets/Charset.php
M libraries/classes/Charsets/Collation.php
M test/classes/Charsets/CollationTest.php
Log Message:
-----------
Improve tests of Charset and Collation value types
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f290fb9ddbbb8b58f6f95d403ca27effb6cda19c
https://github.com/phpmyadmin/phpmyadmin/commit/f290fb9ddbbb8b58f6f95d403ca…
Author: codetriage-readme-bot <schneemanbuys(a)gmail.com>
Date: 2019-06-30 (Sun, 06 June 2019) +02:00
Changed paths:
M CONTRIBUTING.md
Log Message:
-----------
Add CodeTriage badge to phpmyadmin/phpmyadmin
Adds a badge showing the number of people helping this repo on CodeTriage.
[![Open Source Helpers](https://www.codetriage.com/phpmyadmin/phpmyadmin/badges/users.svg)…
## What is CodeTriage?
CodeTriage is an Open Source app that is designed to make contributing to Open Source projects easier. It works by sending subscribers a few open issues in their inbox. If subscribers get busy, there is an algorithm that backs off issue load so they do not get overwhelmed
[Read more about the CodeTriage project](https://www.codetriage.com/what).
## Why am I getting this PR?
Your project was picked by the human, @schneems. They selected it from the projects submitted to https://www.codetriage.com and hand edited the PR. How did your project get added to [CodeTriage](https://www.codetriage.com/what)? Roughly about 3 years ago, [shreya22](https://github.com/shreya22) added this project to CodeTriage in order to start contributing. Since then, 82 people have subscribed to help this repo.
## What does adding a badge accomplish?
Adding a badge invites people to help contribute to your project. It also lets developers know that others are invested in the longterm success and maintainability of the project.
You can see an example of a CodeTriage badge on these popular OSS READMEs:
- [![Email clients like GMAIL do not render SVG images](https://www.codetriage.com/rails/rails/badges/users.svg)](https://w…https://github.com/rails/rails
- [![Email clients like GMAIL do not render SVG images](https://www.codetriage.com/crystal-lang/crystal/badges/users.svg)](…https://github.com/crystal-lang/crystal
## Have a question or comment?
While I am a bot, this PR was manually reviewed and monitored by a human - @schneems. My job is writing commit messages and handling PR logistics.
If you have any questions, you can reply back to this PR and they will be answered by @schneems. If you do not want a badge right now, no worries, close the PR, you will not hear from me again.
Thanks for making your project Open Source! Any feedback is greatly appreciated.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 172ffd871b57fe68032ed5eda9916a335bfc4b0a
https://github.com/phpmyadmin/phpmyadmin/commit/172ffd871b57fe68032ed5eda99…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-06-30 (Sun, 06 June 2019) -03:00
Changed paths:
M libraries/classes/Charsets.php
M test/classes/CharsetsTest.php
Log Message:
-----------
Fix case when collation name can be null
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1890e750355881004545f4e62f116dc45754de16
https://github.com/phpmyadmin/phpmyadmin/commit/1890e750355881004545f4e62f1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-06-30 (Sun, 06 June 2019) +02:00
Changed paths:
M CONTRIBUTING.md
Log Message:
-----------
Merge #15301 - Add CodeTriage badge
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7b8bed30aded5ab6829c3411157766e962c48ecf
https://github.com/phpmyadmin/phpmyadmin/commit/7b8bed30aded5ab6829c3411157…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-07-01 (Mon, 07 July 2019) +02:00
Changed paths:
M libraries/classes/Plugins/Export/ExportSql.php
Log Message:
-----------
Fix undefined index
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3fc92c60e4dd9f04f7ac89c78047c6dc06fb5a42
https://github.com/phpmyadmin/phpmyadmin/commit/3fc92c60e4dd9f04f7ac89c7804…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-07-01 (Mon, 07 July 2019) +02:00
Changed paths:
M error_report.php
M libraries/classes/ErrorReport.php
M libraries/classes/Utils/HttpRequest.php
Log Message:
-----------
Merge branch 'QA_4_9'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b9ec5071fe682514146699bf42e48ffb84183778
https://github.com/phpmyadmin/phpmyadmin/commit/b9ec5071fe682514146699bf42e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-02 (Tue, 07 July 2019) -03:00
Changed paths:
A libraries/classes/Server/Plugin.php
A libraries/classes/Server/Plugins.php
M libraries/classes/Controllers/Server/PluginsController.php
M services.yml
M services_controllers.yml
M templates/server/plugins/index.twig
M test/classes/Controllers/Server/PluginsControllerTest.php
Log Message:
-----------
Add Server\Plugin value object
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 34a63c6a771a57bf1ec3a2fccd513fd3caf5b1aa
https://github.com/phpmyadmin/phpmyadmin/commit/34a63c6a771a57bf1ec3a2fccd5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-02 (Tue, 07 July 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Server/PluginsController.php
M libraries/classes/Server/Plugin.php
Log Message:
-----------
Add toArray method to Server\Plugin class
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 21a747cfbef0dee398a0049aece37c1c0ce3bf57
https://github.com/phpmyadmin/phpmyadmin/commit/21a747cfbef0dee398a0049aece…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-03 (Wed, 07 July 2019) -03:00
Changed paths:
A test/classes/Server/PluginTest.php
A test/classes/Server/PluginsTest.php
M libraries/classes/Server/Plugins.php
M test/classes/Stubs/DbiDummy.php
Log Message:
-----------
Add tests for Server\Plugin and Server\Plugins
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e53413cba066c86a5ce13b537b375a82cbe9d5ac
https://github.com/phpmyadmin/phpmyadmin/commit/e53413cba066c86a5ce13b537b3…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-07-05 (Fri, 07 July 2019) +02:00
Changed paths:
M templates/database/central_columns/main.twig
M templates/table/relation/common_form.twig
Log Message:
-----------
Fix closing tags in twigs
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: d31f8329fb9484a8a01babfe07c18f8c80f79175
https://github.com/phpmyadmin/phpmyadmin/commit/d31f8329fb9484a8a01babfe07c…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-07-05 (Fri, 07 July 2019) +02:00
Changed paths:
M templates/table/search/zoom_result_form.twig
Log Message:
-----------
Fix closing tags in twigs
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 932995f7d7395728f25023c663f18009c0af29a7
https://github.com/phpmyadmin/phpmyadmin/commit/932995f7d7395728f25023c663f…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-07-05 (Fri, 07 July 2019) +02:00
Changed paths:
M libraries/classes/Plugins/Schema/SchemaDia.php
M libraries/classes/Plugins/Schema/SchemaEps.php
M libraries/classes/Plugins/Schema/SchemaPdf.php
M libraries/classes/Plugins/Schema/SchemaSvg.php
Log Message:
-----------
Add missing returns, regarding existing phpdoc
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 04616ff7fe52629e0ae35e2a07067d3569106da4
https://github.com/phpmyadmin/phpmyadmin/commit/04616ff7fe52629e0ae35e2a070…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-07-05 (Fri, 07 July 2019) +02:00
Changed paths:
M libraries/classes/Config/Validator.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
Log Message:
-----------
Import instead of using FQN
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 39c85e51ca106c956e4c608a53c63b9b31963e27
https://github.com/phpmyadmin/phpmyadmin/commit/39c85e51ca106c956e4c608a53c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-06 (Sat, 07 July 2019) -03:00
Changed paths:
M libraries/classes/Config/Validator.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
Log Message:
-----------
Merge pull request #15373 from Tithugues/fix/import-instead-of-using-fqn
Import instead of using FQN
Commit: 3e94a7b7aecf951bf917575add12f89a18aec448
https://github.com/phpmyadmin/phpmyadmin/commit/3e94a7b7aecf951bf917575add1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-06 (Sat, 07 July 2019) -03:00
Changed paths:
M libraries/classes/Plugins/Schema/SchemaDia.php
M libraries/classes/Plugins/Schema/SchemaEps.php
M libraries/classes/Plugins/Schema/SchemaPdf.php
M libraries/classes/Plugins/Schema/SchemaSvg.php
Log Message:
-----------
Merge pull request #15372 from Tithugues/fix/add-missing-returns
Add missing returns, regarding existing phpdoc
Commit: 60e7f44d30bc50fbb18f58aaac6c2718d9e92fa3
https://github.com/phpmyadmin/phpmyadmin/commit/60e7f44d30bc50fbb18f58aaac6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-06 (Sat, 07 July 2019) -03:00
Changed paths:
M templates/database/central_columns/main.twig
M templates/table/relation/common_form.twig
M templates/table/search/zoom_result_form.twig
Log Message:
-----------
Merge pull request #15371 from Tithugues/fix/twigs
Fix closing tags in twigs
Commit: 7babd6203b94fc33889e0826747b8f3fdc140b87
https://github.com/phpmyadmin/phpmyadmin/commit/7babd6203b94fc33889e0826747…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-07-08 (Mon, 07 July 2019) -04:00
Changed paths:
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 5.0.0-alpha1
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 781949372bb9438db4e3b8a6506530a4fe038dac
https://github.com/phpmyadmin/phpmyadmin/commit/781949372bb9438db4e3b8a6506…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-07-08 (Mon, 07 July 2019) -04:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 5.0.0-alpha1
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 8993c446c9784b66935595ed6371063d0941a51e
https://github.com/phpmyadmin/phpmyadmin/commit/8993c446c9784b66935595ed637…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-07-08 (Mon, 07 July 2019) -04:00
Changed paths:
D composer.lock
Log Message:
-----------
Removing composer.lock
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 409dd22cbe2b7cdcc678393d11827b021cf828c9
https://github.com/phpmyadmin/phpmyadmin/commit/409dd22cbe2b7cdcc678393d118…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-07-08 (Mon, 07 July 2019) -04:00
Changed paths:
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Reset version number to 5.0.0-dev for ongoing development
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 5b67d2189cd930ceb4e72da737dbd267b781daf9
https://github.com/phpmyadmin/phpmyadmin/commit/5b67d2189cd930ceb4e72da737d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-10 (Wed, 07 July 2019) -03:00
Changed paths:
M libraries/classes/Util.php
Log Message:
-----------
Fix wrong path when getting documentation link
Fixes #15381
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: d10456fb0a349bc86d61bafbfc83950f2025e08c
https://github.com/phpmyadmin/phpmyadmin/commit/d10456fb0a349bc86d61bafbfc8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-10 (Wed, 07 July 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix Windows test build on Travis
Choco now installs MariaDb 10.4
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
(cherry picked from commit 0371f104a9e2ee8b29b4e8b69dc1a7c723e2fa6d)
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 62e8d39445e54a51f8690cd4cad92ccdad7b010d
https://github.com/phpmyadmin/phpmyadmin/commit/62e8d39445e54a51f8690cd4cad…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-10 (Wed, 07 July 2019) -03:00
Changed paths:
M doc/faq.rst
M doc/glossary.rst
M libraries/classes/Config/Descriptions.php
M libraries/classes/Plugins/Export/ExportHtmlword.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M templates/columns_definitions/table_fields_definitions.twig
M templates/database/data_dictionary/index.twig
M templates/table/structure/display_structure.twig
M templates/transformation_overview.twig
M test/classes/Controllers/TransformationOverviewControllerTest.php
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportLatexTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
M test/classes/Plugins/Export/ExportSqlTest.php
Log Message:
-----------
Merge pull request #15354 from mauriciofauth/media-type
Change MIME type references to Media (MIME) type
Commit: f7f185b1de3ec09031b5cee03757a6539cad431d
https://github.com/phpmyadmin/phpmyadmin/commit/f7f185b1de3ec09031b5cee0375…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-11 (Thu, 07 July 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b77a095e3801e011e658b045a79b6ef34bca5132
https://github.com/phpmyadmin/phpmyadmin/commit/b77a095e3801e011e658b045a79…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-11 (Thu, 07 July 2019) -03:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15350
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 982fe9e52bd966bbae6f2ed88b76b97af07776e9
https://github.com/phpmyadmin/phpmyadmin/commit/982fe9e52bd966bbae6f2ed88b7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-11 (Thu, 07 July 2019) -03:00
Changed paths:
M js/vendor/jquery/additional-methods.js
M js/vendor/jquery/jquery.validate.js
M package.json
M yarn.lock
Log Message:
-----------
Update jquery-validation to 1.19.1
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 59e18b4ae71b50a2ff1788fc02b780eef06a5afa
https://github.com/phpmyadmin/phpmyadmin/commit/59e18b4ae71b50a2ff1788fc02b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-11 (Thu, 07 July 2019) -03:00
Changed paths:
M package.json
M yarn.lock
Log Message:
-----------
Update sass, eslint and stylelint
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e8dfc8f0131b09efafe669968a5896dbfadae314
https://github.com/phpmyadmin/phpmyadmin/commit/e8dfc8f0131b09efafe669968a5…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
M .eslintrc.json
Log Message:
-----------
Restore eslint standard from v5
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 996911aad0036c46618eb21fdda247b01d7d618a
https://github.com/phpmyadmin/phpmyadmin/commit/996911aad0036c46618eb21fdda…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
M js/vendor/jquery/jquery-migrate.js
M package.json
M yarn.lock
Log Message:
-----------
Update jQuery Migrate
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: f0c2fccd95c85b1ec50644514e4af19e643d8a4d
https://github.com/phpmyadmin/phpmyadmin/commit/f0c2fccd95c85b1ec50644514e4…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
M js/vendor/codemirror/addon/hint/show-hint.js
M js/vendor/codemirror/lib/codemirror.js
M js/vendor/codemirror/mode/javascript/javascript.js
M package.json
M yarn.lock
Log Message:
-----------
Update CodeMirror
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9f06a13fadfb849527c196aa1a14b312efc04370
https://github.com/phpmyadmin/phpmyadmin/commit/9f06a13fadfb849527c196aa1a1…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3c14c9cd8cc42fa7e2e64aeec6a80cc81bee8054
https://github.com/phpmyadmin/phpmyadmin/commit/3c14c9cd8cc42fa7e2e64aeec6a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
M package.json
M yarn.lock
Log Message:
-----------
Force use of lodash version >= 4.17.13
To address security vulnerability
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9d5300c64acabb31894dd345a286395a385def7c
https://github.com/phpmyadmin/phpmyadmin/commit/9d5300c64acabb31894dd345a28…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-12 (Fri, 07 July 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 71dec1b917e869e7ca34b4907d4172cb20c7f8c3
https://github.com/phpmyadmin/phpmyadmin/commit/71dec1b917e869e7ca34b4907d4…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-07-29 (Mon, 07 July 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/Server/Privileges.php
M libraries/classes/Url.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1999610316ec595bbbd67ad3ac94255de0ef906e
https://github.com/phpmyadmin/phpmyadmin/commit/1999610316ec595bbbd67ad3ac9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-11 (Sun, 08 August 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/LanguageManager.php
M test/classes/LanguageTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f26d4c50290b29ebc59432d81560b01576789d5f
https://github.com/phpmyadmin/phpmyadmin/commit/f26d4c50290b29ebc59432d8156…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-15 (Thu, 08 August 2019) +02:00
Changed paths:
M ChangeLog
M js/navigation.js
M templates/table/structure/display_structure.twig
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 990323e8dbee6914ceeae6d1306babd7e933ce5d
https://github.com/phpmyadmin/phpmyadmin/commit/990323e8dbee6914ceeae6d1306…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-15 (Thu, 08 August 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/CreateAddField.php
M libraries/classes/Display/Results.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Tracker.php
M libraries/classes/Tracking.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f428277bad851848d29973e94c05beb32ad9511d
https://github.com/phpmyadmin/phpmyadmin/commit/f428277bad851848d29973e94c0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-20 (Tue, 08 August 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/CreateAddField.php
M libraries/classes/Display/Results.php
M libraries/classes/Import.php
M libraries/classes/InsertEdit.php
M libraries/classes/LanguageManager.php
M libraries/classes/Table.php
M libraries/tbl_columns_definition_form.inc.php
M phpstan.neon.dist
M templates/columns_definitions/column_null.twig
Log Message:
-----------
Merge branch 'QA_4_9' into 'QA_5_0'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f8688c277437a20d889e71bae6d7ae690058a624
https://github.com/phpmyadmin/phpmyadmin/commit/f8688c277437a20d889e71bae6d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-20 (Tue, 08 August 2019) +02:00
Changed paths:
M test/classes/TableTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into 'QA_5_0'
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5267b38eb8342a261c54f273e7ba5089e457e1a5
https://github.com/phpmyadmin/phpmyadmin/commit/5267b38eb8342a261c54f273e7b…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-08-21 (Wed, 08 August 2019) -03:00
Changed paths:
M test/bootstrap-phpstan.php
Log Message:
-----------
Set $plugin_param global for PHPStan
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
(cherry picked from commit 736a1be378fc668e5965b8a83f31c971de4f891a)
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 601fbf9fef629d3d8e84b9a80ba9698072a9af62
https://github.com/phpmyadmin/phpmyadmin/commit/601fbf9fef629d3d8e84b9a80ba…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-08-21 (Wed, 08 August 2019) -03:00
Changed paths:
M libraries/classes/InsertEdit.php
M libraries/tbl_columns_definition_form.inc.php
Log Message:
-----------
Fix type errors with stripcslashes function
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 027f39057a18d91baf7f89081cb48a7ffc43bfda
https://github.com/phpmyadmin/phpmyadmin/commit/027f39057a18d91baf7f89081cb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-23 (Fri, 08 August 2019) +02:00
Changed paths:
A libraries/classes/Database/Designer/DesignerTable.php
M db_designer.php
M js/designer/move.js
M js/messages.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Export.php
M libraries/classes/InsertEdit.php
M libraries/classes/Plugins/Schema/ExportRelationSchema.php
M libraries/classes/Plugins/Schema/TableStats.php
M libraries/tbl_columns_definition_form.inc.php
M schema_export.php
M templates/database/designer/database_tables.twig
M templates/database/designer/main.twig
M test/classes/Database/Designer/CommonTest.php
M test/classes/Plugins/Schema/DiaRelationSchemaTest.php
M test/classes/Plugins/Schema/EpsRelationSchemaTest.php
M test/classes/Plugins/Schema/PdfRelationSchemaTest.php
M test/classes/Plugins/Schema/SvgRelationSchemaTest.php
M themes/pmahomme/scss/_designer.scss
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
- Fixed css img urls for designer
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1af61f88b3ad5bdec54594e1744c6deb4b6368e3
https://github.com/phpmyadmin/phpmyadmin/commit/1af61f88b3ad5bdec54594e1744…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-23 (Fri, 08 August 2019) +02:00
Changed paths:
M js/designer/move.js
M libraries/classes/Database/Designer/Common.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 564894ce46e37de05cfb24461caf32ad48c23954
https://github.com/phpmyadmin/phpmyadmin/commit/564894ce46e37de05cfb24461ca…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-23 (Fri, 08 August 2019) +02:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b8527d90ddb79d5573748362fd1c898f66346643
https://github.com/phpmyadmin/phpmyadmin/commit/b8527d90ddb79d5573748362fd1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-23 (Fri, 08 August 2019) +02:00
Changed paths:
M libraries/classes/Database/Designer.php
Log Message:
-----------
Fix typo introduced by 1af61f88b3ad5bdec
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 53ae5007e0b3e3bb184d113aeb0378c9ec9cc3b9
https://github.com/phpmyadmin/phpmyadmin/commit/53ae5007e0b3e3bb184d113aeb0…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-08-27 (Tue, 08 August 2019) -03:00
Changed paths:
M ChangeLog
M js/vendor/codemirror/lib/codemirror.css
M js/vendor/codemirror/lib/codemirror.js
M js/vendor/codemirror/mode/javascript/javascript.js
M js/vendor/js.cookie.js
M package.json
M yarn.lock
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1f63c3bab0fd9ffd34fd4e23513ad8f87abb8e1c
https://github.com/phpmyadmin/phpmyadmin/commit/1f63c3bab0fd9ffd34fd4e23513…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-08-27 (Tue, 08 August 2019) -03:00
Changed paths:
M package.json
M yarn.lock
Log Message:
-----------
Update Yarn dev dependencies
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 823408d7599bc4820f4ea68e5071af2125b1b4cf
https://github.com/phpmyadmin/phpmyadmin/commit/823408d7599bc4820f4ea68e507…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-08-28 (Wed, 08 August 2019) -03:00
Changed paths:
M ChangeLog
M doc/config.rst
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2f2c942282c3c0153a41cb03bd432ded32a59cc0
https://github.com/phpmyadmin/phpmyadmin/commit/2f2c942282c3c0153a41cb03bd4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-29 (Thu, 08 August 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/SysInfoWINNT.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 319057e33c97edffecb08b436ee403e8db70a5b4
https://github.com/phpmyadmin/phpmyadmin/commit/319057e33c97edffecb08b436ee…
Author: Mauro Valvano <valvano.m(a)live.it>
Date: 2019-08-30 (Fri, 08 August 2019) +02:00
Changed paths:
M url.php
Log Message:
-----------
Fixed url.php crashing because it was not loading the DatabaseInterface service
Signed-off-by: Mauro Valvano <valvano.m(a)live.it>
Commit: e844368b463ef98677665d88e51f37c5c179604e
https://github.com/phpmyadmin/phpmyadmin/commit/e844368b463ef98677665d88e51…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-31 (Sat, 08 August 2019) +02:00
Changed paths:
M url.php
Log Message:
-----------
Merge #15437 - Fixed url.php crashing because it's not loading the DatabaseInterface service
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: aabd93fc7b01ede5ef400a0c0bbeb553a0e67f51
https://github.com/phpmyadmin/phpmyadmin/commit/aabd93fc7b01ede5ef400a0c0bb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-08-31 (Sat, 08 August 2019) +02:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for e844368b463ef9867
Pull-request: #15437
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a5ba1064d79da9f2e547fb28bc64c422973a2bbb
https://github.com/phpmyadmin/phpmyadmin/commit/a5ba1064d79da9f2e547fb28bc6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-09-04 (Wed, 09 September 2019) -03:00
Changed paths:
M libraries/classes/Server/Privileges.php
Log Message:
-----------
Fix type error when editing routine privs
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 25c16c6fd8eec6bad214aee73cce0bbc9c05b703
https://github.com/phpmyadmin/phpmyadmin/commit/25c16c6fd8eec6bad214aee73cc…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-09-04 (Wed, 09 September 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 8343320841419aae0179a713eda23d6065d81766
https://github.com/phpmyadmin/phpmyadmin/commit/8343320841419aae0179a713eda…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-09-08 (Sun, 09 September 2019) +02:00
Changed paths:
M ChangeLog
M js/designer/move.js
M js/navigation.js
M libraries/classes/Database/Designer.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d070127c2d08144a2279e1d021a94b7a1acb899f
https://github.com/phpmyadmin/phpmyadmin/commit/d070127c2d08144a2279e1d021a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-09-08 (Sun, 09 September 2019) +02:00
Changed paths:
M doc/config.rst
M doc/setup.rst
M doc/two_factor.rst
M libraries/config.default.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7a6827ff111bd7f6bf71e5a38642771d9ca5ac3f
https://github.com/phpmyadmin/phpmyadmin/commit/7a6827ff111bd7f6bf71e5a3864…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-09-20 (Fri, 09 September 2019) -04:00
Changed paths:
Log Message:
-----------
Merge commit '7a809b7adc' into QA_5_0
Commit: 25a7c7abdbc0f8ac9a29d66eebda5cfa3a2e5ca8
https://github.com/phpmyadmin/phpmyadmin/commit/25a7c7abdbc0f8ac9a29d66eebd…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-09-20 (Fri, 09 September 2019) -04:00
Changed paths:
M composer.json
Log Message:
-----------
Fix merge confliects
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 725f407305f8f42076e18b12c4e0f9675579fa4e
https://github.com/phpmyadmin/phpmyadmin/commit/725f407305f8f42076e18b12c4e…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-09-20 (Fri, 09 September 2019) -04:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: 08696bc55ede081062867a713fd75abdb91f451e
https://github.com/phpmyadmin/phpmyadmin/commit/08696bc55ede081062867a713fd…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-09-21 (Sat, 09 September 2019) -03:00
Changed paths:
M ChangeLog
M js/setup/scripts.js
M libraries/classes/Controllers/Setup/HomeController.php
M setup/index.php
M templates/server/databases/index.twig
M templates/setup/home/index.twig
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 3e330fd40334cff559ac68ec2058d2f9007fbd8c
https://github.com/phpmyadmin/phpmyadmin/commit/3e330fd40334cff559ac68ec205…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-09-21 (Sat, 09 September 2019) -03:00
Changed paths:
M libraries/classes/BrowseForeigners.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Normalization.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: adbaf63551297ea2ef5f67b0086b7071422a61f0
https://github.com/phpmyadmin/phpmyadmin/commit/adbaf63551297ea2ef5f67b0086…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-09-22 (Sun, 09 September 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Dbi/DbiMysqli.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bbf94a7f40fe7f8b4e818f56ea39663341a9a2fb
https://github.com/phpmyadmin/phpmyadmin/commit/bbf94a7f40fe7f8b4e818f56ea3…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-09-22 (Sun, 09 September 2019) +02:00
Changed paths:
A libraries/advisory_rules_generic.txt
A libraries/advisory_rules_mysql_before80003.txt
M ChangeLog
M libraries/classes/Advisor.php
M test/classes/AdvisorTest.php
M test/classes/Controllers/Server/Status/MonitorControllerTest.php
D libraries/advisory_rules.txt
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Pull-request: #15457
Closes: #15457
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: dc13e00241349436002a0b697e8739eb31fec6bf
https://github.com/phpmyadmin/phpmyadmin/commit/dc13e00241349436002a0b697e8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-10-05 (Sat, 10 October 2019) -03:00
Changed paths:
M composer.json
Log Message:
-----------
Add conflict on pragmarx/google2fa >=6.1
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
(cherry picked from commit dd5d6d834dfae86297315cd07b7e21c972170495)
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 4bb1a2d80e117c0a06ea9fe806601ccbe10d9c64
https://github.com/phpmyadmin/phpmyadmin/commit/4bb1a2d80e117c0a06ea9fe8066…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-10-05 (Sat, 10 October 2019) -03:00
Changed paths:
M test/classes/Controllers/Server/Status/AdvisorControllerTest.php
Log Message:
-----------
Fix missing version key on AdvisorControllerTest
Related to 88821f8248b4544fe51c426cea0cecd1aaaa1af2
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: cc50cf178eab77605c1c1aab4c6f273a5227a434
https://github.com/phpmyadmin/phpmyadmin/commit/cc50cf178eab77605c1c1aab4c6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-10-11 (Fri, 10 October 2019) -03:00
Changed paths:
M libraries/classes/Advisor.php
M scripts/advisor2po
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 389945bc92d8363b602102c09442c737ae4a4d48
https://github.com/phpmyadmin/phpmyadmin/commit/389945bc92d8363b602102c0944…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-10-11 (Fri, 10 October 2019) -03:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 2efeb1185d3a37abea9819474fed291ca0ac8ce1
https://github.com/phpmyadmin/phpmyadmin/commit/2efeb1185d3a37abea9819474fe…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-17 (Thu, 10 October 2019) +02:00
Changed paths:
M ChangeLog
M js/table/relation.js
M libraries/tbl_columns_definition_form.inc.php
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5698fb221fe8798a220464dc806fb0ae30810454
https://github.com/phpmyadmin/phpmyadmin/commit/5698fb221fe8798a220464dc806…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-18 (Fri, 10 October 2019) +02:00
Changed paths:
M ChangeLog
M js/database/qbe.js
M libraries/classes/Database/Qbe.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: a840e635c33fa4e7f779f65deeda993c3b04993c
https://github.com/phpmyadmin/phpmyadmin/commit/a840e635c33fa4e7f779f65deed…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-18 (Fri, 10 October 2019) +02:00
Changed paths:
M ChangeLog
M js/server/privileges.js
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: 1cdf57c0a9460a35c4ad663fac1ff93a6609cb0e
https://github.com/phpmyadmin/phpmyadmin/commit/1cdf57c0a9460a35c4ad663fac1…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
Log Message:
-----------
Merge commit '4cc8f70c85' into QA_5_0
Commit: 8183b5e85442162b626e4307d8576ef365857c24
https://github.com/phpmyadmin/phpmyadmin/commit/8183b5e85442162b626e4307d85…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
M ChangeLog
M libraries/classes/Operations.php
M test/selenium/Database/ProceduresTest.php
Log Message:
-----------
Merge commit '2d558e45bf' into QA_5_0
Commit: dd28239a37d699fd9d7c330be8eafa4bb7aee877
https://github.com/phpmyadmin/phpmyadmin/commit/dd28239a37d699fd9d7c330be8e…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
M test/classes/OperationsTest.php
Log Message:
-----------
Merge commit '4e7fac843d' into QA_5_0
Commit: f4978c8a8e0cb57af935c69d94da95a5fed588d5
https://github.com/phpmyadmin/phpmyadmin/commit/f4978c8a8e0cb57af935c69d94d…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M templates/database/designer/database_tables.twig
Log Message:
-----------
Merge commit 'd15211db5c' into QA_5_0
Commit: 7075cb0a41007030f48c549d0085f990405915c0
https://github.com/phpmyadmin/phpmyadmin/commit/7075cb0a41007030f48c549d008…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
M js/designer/move.js
Log Message:
-----------
Merge commit '712e3d7eb9' into QA_5_0
Commit: 60416ddd087593c041e33a7eafb1c5fe734ff9d5
https://github.com/phpmyadmin/phpmyadmin/commit/60416ddd087593c041e33a7eafb…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-10-20 (Sun, 10 October 2019) -04:00
Changed paths:
M doc/bookmarks.rst
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: 3236ae281bb516389d90d59484b0dfcb954622de
https://github.com/phpmyadmin/phpmyadmin/commit/3236ae281bb516389d90d59484b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-21 (Mon, 10 October 2019) +02:00
Changed paths:
M js/designer/move.js
Log Message:
-----------
Fix merge error - 7075cb0a41007030f48c549d0085f990405915c0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fc393eac393fadb858225374f799f87415645d92
https://github.com/phpmyadmin/phpmyadmin/commit/fc393eac393fadb858225374f79…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-21 (Mon, 10 October 2019) +02:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/classes/Operations.php
M phpcs.xml.dist
Log Message:
-----------
Fix phpcs and ignore PSR2.Methods.FunctionCallSignature.Indent
Commit: af026702e104a9a2810bd84f0a21ab9ac96369aa
https://github.com/phpmyadmin/phpmyadmin/commit/af026702e104a9a2810bd84f0a2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-21 (Mon, 10 October 2019) +02:00
Changed paths:
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Fix merge error - 2efeb1185d3a37abea9819474fed291ca0ac8ce1
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: dca01a5f77dab70455c5075d2a8ce3b7b462a323
https://github.com/phpmyadmin/phpmyadmin/commit/dca01a5f77dab70455c5075d2a8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-10-21 (Mon, 10 October 2019) -03:00
Changed paths:
M libraries/classes/Database/Designer/Common.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 67a37881c3b6bdbd1f173555c2fc44127452ce7d
https://github.com/phpmyadmin/phpmyadmin/commit/67a37881c3b6bdbd1f173555c2f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-21 (Mon, 10 October 2019) +02:00
Changed paths:
M ChangeLog
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/Operations.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d6da466fc0bd23cd3606e385ae181f710e6d66ff
https://github.com/phpmyadmin/phpmyadmin/commit/d6da466fc0bd23cd3606e385ae1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-29 (Tue, 10 October 2019) +01:00
Changed paths:
M ChangeLog
M tbl_operations.php
M test/classes/ConfigTest.php
M test/classes/InsertEditTest.php
M themes/metro/scss/_icons.scss
M themes/original/scss/_icons.scss
M themes/pmahomme/scss/_icons.scss
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2575421da490d09248e20bcc00e26bfc84a506dd
https://github.com/phpmyadmin/phpmyadmin/commit/2575421da490d09248e20bcc00e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-29 (Tue, 10 October 2019) +01:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: bccc8287007e2828f28ddaacd47f7607a8731aed
https://github.com/phpmyadmin/phpmyadmin/commit/bccc8287007e2828f28ddaacd47…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-29 (Tue, 10 October 2019) +01:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: cbdc5c0e833f5f5cffdcf6782d9409ca94ce127b
https://github.com/phpmyadmin/phpmyadmin/commit/cbdc5c0e833f5f5cffdcf6782d9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-30 (Wed, 10 October 2019) +01:00
Changed paths:
M ChangeLog
M js/sql.js
M libraries/classes/Navigation/NavigationTree.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ab0b6e248a9c77c782f1274a63ea426d40cc300d
https://github.com/phpmyadmin/phpmyadmin/commit/ab0b6e248a9c77c782f1274a63e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-10-30 (Wed, 10 October 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15540
Ref: 128d3a09a0392a5a0a6c4e6ea9aefcd8ddf9efca
Yes, the commit comes from QA 4.9 and the ChangeLog is QA 5.0
This is because 4.9 users are not affected but they can still have the fix.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3eff90088113c4bc66a7c445aed4af8ed2fd7890
https://github.com/phpmyadmin/phpmyadmin/commit/3eff90088113c4bc66a7c445aed…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-01 (Fri, 11 November 2019) -04:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: c7f7f9c6c0d6266f7a7929201a2bb170e2998058
https://github.com/phpmyadmin/phpmyadmin/commit/c7f7f9c6c0d6266f7a7929201a2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-03 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M import_status.php
M libraries/classes/Config.php
M libraries/classes/ErrorReport.php
M libraries/classes/LanguageManager.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/AuthenticationPlugin.php
M libraries/classes/Session.php
M libraries/classes/ThemeManager.php
M libraries/classes/Url.php
M libraries/common.inc.php
M test/classes/ConfigTest.php
M test/classes/LanguageTest.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Revert: 45d46a6316c7a79d8c110ccbd18035c4d0c633fb
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 15a4cbe505394362b0d382021265a295e60b75b1
https://github.com/phpmyadmin/phpmyadmin/commit/15a4cbe505394362b0d38202126…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-03 (Sun, 11 November 2019) +01:00
Changed paths:
M test/classes/ErrorReportTest.php
Log Message:
-----------
Fix ErrorReport test after merge of #15273
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 87c5d39074e914da2c7c2e591407a390682330a7
https://github.com/phpmyadmin/phpmyadmin/commit/87c5d39074e914da2c7c2e59140…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-11-03 (Sun, 11 November 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3329 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 057118c7424340f04df32a93add2e34de63d4678
https://github.com/phpmyadmin/phpmyadmin/commit/057118c7424340f04df32a93add…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-11-03 (Sun, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 99.9% (3328 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: e0ee0f8165fc70482e7988ea1787ad435b3997c9
https://github.com/phpmyadmin/phpmyadmin/commit/e0ee0f8165fc70482e7988ea178…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-11-04 (Mon, 11 November 2019) -03:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9e90099ffa037838143a6e804d685dad9c42cd4e
https://github.com/phpmyadmin/phpmyadmin/commit/9e90099ffa037838143a6e804d6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-05 (Tue, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Plugins/Transformations/Abs/LongToIPv4TransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Binarytoip.php
M libraries/classes/Util.php
M test/classes/EncodingTest.php
M test/classes/FileTest.php
M test/classes/ImportTest.php
M test/classes/LanguageTest.php
M test/classes/Plugins/Transformations/TransformationPluginsTest.php
M test/classes/UtilTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7309d31c6afa7fe40d1efa52e7e8e5b42d148481
https://github.com/phpmyadmin/phpmyadmin/commit/7309d31c6afa7fe40d1efa52e7e…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-11-07 (Thu, 11 November 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3329 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 56c4f1373ebb209c53bb40100a50c5739741cab2
https://github.com/phpmyadmin/phpmyadmin/commit/56c4f1373ebb209c53bb40100a5…
Author: Kongfa Warorot <gongpha(a)hotmail.com>
Date: 2019-11-07 (Thu, 11 November 2019) +01:00
Changed paths:
M po/th.po
Log Message:
-----------
Translated using Weblate (Thai)
Currently translated at 32.3% (1076 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/th/
Signed-off-by: Kongfa Warorot <gongpha(a)hotmail.com>
Commit: adce47f8adccf819b8a3c2e56cf46e5d54305558
https://github.com/phpmyadmin/phpmyadmin/commit/adce47f8adccf819b8a3c2e56cf…
Author: Giovanni Sora <g.sora(a)tiscali.it>
Date: 2019-11-07 (Thu, 11 November 2019) +01:00
Changed paths:
M po/ia.po
Log Message:
-----------
Translated using Weblate (Interlingua)
Currently translated at 75.9% (2528 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/ia/
Signed-off-by: Giovanni Sora <g.sora(a)tiscali.it>
Commit: 8c83c7a1290e1337d542dad07c61e211a83b7809
https://github.com/phpmyadmin/phpmyadmin/commit/8c83c7a1290e1337d542dad07c6…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-11-08 (Fri, 11 November 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3329 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: fab5fee1095426845f27806e98ae54a37a1bf28c
https://github.com/phpmyadmin/phpmyadmin/commit/fab5fee1095426845f27806e98a…
Author: Giovanni Sora <g.sora(a)tiscali.it>
Date: 2019-11-08 (Fri, 11 November 2019) +01:00
Changed paths:
M po/ia.po
Log Message:
-----------
Translated using Weblate (Interlingua)
Currently translated at 76.1% (2535 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/ia/
Signed-off-by: Giovanni Sora <g.sora(a)tiscali.it>
Commit: 00284d479459998da3b9673251a15ab0a53ba2e7
https://github.com/phpmyadmin/phpmyadmin/commit/00284d479459998da3b9673251a…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-11-08 (Fri, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 99.9% (3328 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: c16891cb403d7924a33f0f4b301123a7473bc215
https://github.com/phpmyadmin/phpmyadmin/commit/c16891cb403d7924a33f0f4b301…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-09 (Sat, 11 November 2019) +01:00
Changed paths:
M js/messages.php
M libraries/classes/Database/Designer/DesignerTable.php
M libraries/classes/Util.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: a75f03901b208799dc973880b65f48ebec3a4ff6
https://github.com/phpmyadmin/phpmyadmin/commit/a75f03901b208799dc973880b65…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-09 (Sat, 11 November 2019) +01:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 088ff73f818d72b986a0f46c291ef821294d4c45
https://github.com/phpmyadmin/phpmyadmin/commit/088ff73f818d72b986a0f46c291…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-11-09 (Sat, 11 November 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3329 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: ab9c164126ca02755f9f95869d506d25cdaa5e95
https://github.com/phpmyadmin/phpmyadmin/commit/ab9c164126ca02755f9f95869d5…
Author: Hosted Weblate <hosted(a)weblate.org>
Date: 2019-11-09 (Sat, 11 November 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Merge branch 'origin/QA_5_0' into Weblate.
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/
Commit: 685eeaf9a5e5252b5b94a3283e63cfa91dd17544
https://github.com/phpmyadmin/phpmyadmin/commit/685eeaf9a5e5252b5b94a3283e6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-09 (Sat, 11 November 2019) +01:00
Changed paths:
M CONTRIBUTING.md
M doc/bookmarks.rst
M doc/charts.rst
M doc/copyright.rst
M doc/glossary.rst
M doc/setup.rst
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1a07f9bc250cf51a6878078ec465ee20cf83b661
https://github.com/phpmyadmin/phpmyadmin/commit/1a07f9bc250cf51a6878078ec46…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-10 (Sun, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3329 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: df0543694c766c5946ebb96dd70f5a12b2cf1033
https://github.com/phpmyadmin/phpmyadmin/commit/df0543694c766c5946ebb96dd70…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-10 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M doc/config.rst
M doc/two_factor.rst
M libraries/classes/Controllers/Table/StructureController.php
M libraries/classes/CreateAddField.php
M libraries/classes/Relation.php
M tbl_export.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bf8939add6cf0bda7fb317e3ffea8ca2d4261270
https://github.com/phpmyadmin/phpmyadmin/commit/bf8939add6cf0bda7fb317e3ffe…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-10 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/StructureController.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Fixes the merge mitake done in df0543694c766c5946ebb96dd70f5a12b2cf1033
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a845d2fbe51185cd3488249cab7e383f004f2402
https://github.com/phpmyadmin/phpmyadmin/commit/a845d2fbe51185cd3488249cab7…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-10 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Util.php
Log Message:
-----------
Fix phpcs issue introduced by PR #15556
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5a83a289d82954f8ba7a13058f268b8c8883dd75
https://github.com/phpmyadmin/phpmyadmin/commit/5a83a289d82954f8ba7a13058f2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-11 (Mon, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M doc/two_factor.rst
M js/navigation.js
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/File.php
M libraries/classes/Navigation/Nodes/NodeDatabase.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Relation.php
M server_privileges.php
M server_user_groups.php
M test/selenium/TrackingTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 09959091bdb5ba5f8d7848c33bab2ba8204cfbf8
https://github.com/phpmyadmin/phpmyadmin/commit/09959091bdb5ba5f8d7848c33ba…
Author: Mattias Münster <mattiasmun(a)gmail.com>
Date: 2019-11-13 (Wed, 11 November 2019) +01:00
Changed paths:
M po/sv.po
Log Message:
-----------
Translated using Weblate (Swedish)
Currently translated at 89.7% (2985 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/sv/
Signed-off-by: Mattias Münster <mattiasmun(a)gmail.com>
Commit: 1f56a2263c7752bb6825eae5757f9b575c4622b7
https://github.com/phpmyadmin/phpmyadmin/commit/1f56a2263c7752bb6825eae5757…
Author: Marino <mrabach(a)gmail.com>
Date: 2019-11-15 (Fri, 11 November 2019) +01:00
Changed paths:
M po/hr.po
Log Message:
-----------
Translated using Weblate (Croatian)
Currently translated at 27.3% (908 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/hr/
Signed-off-by: Marino <mrabach(a)gmail.com>
Commit: 6fcc37e81b01c43d03337e91e18295a32f626f76
https://github.com/phpmyadmin/phpmyadmin/commit/6fcc37e81b01c43d03337e91e18…
Author: Marino <mrabach(a)gmail.com>
Date: 2019-11-16 (Sat, 11 November 2019) +01:00
Changed paths:
M po/hr.po
Log Message:
-----------
Translated using Weblate (Croatian)
Currently translated at 32.1% (1069 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/hr/
Signed-off-by: Marino <mrabach(a)gmail.com>
Commit: 2fee82940df619ac06ce8c3bcc99b9effa0cc6fa
https://github.com/phpmyadmin/phpmyadmin/commit/2fee82940df619ac06ce8c3bcc9…
Author: Yaron Shahrabani <sh.yaron(a)gmail.com>
Date: 2019-11-18 (Mon, 11 November 2019) +01:00
Changed paths:
M po/he.po
Log Message:
-----------
Translated using Weblate (Hebrew)
Currently translated at 49.1% (1633 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/he/
Signed-off-by: Yaron Shahrabani <sh.yaron(a)gmail.com>
Commit: 78f50ab20fb55192b105aa486717d8fb3ffc44e3
https://github.com/phpmyadmin/phpmyadmin/commit/78f50ab20fb55192b105aa48671…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-18 (Mon, 11 November 2019) +01:00
Changed paths:
M po/ml.po
Log Message:
-----------
Translated using Weblate (Malayalam)
Currently translated at 1.7% (56 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/ml/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6c7a996044439256c728c4bd6c55c4092fa0399d
https://github.com/phpmyadmin/phpmyadmin/commit/6c7a996044439256c728c4bd6c5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-18 (Mon, 11 November 2019) +01:00
Changed paths:
M po/ml.po
Log Message:
-----------
Translated using Weblate (Malayalam)
Currently translated at 1.7% (58 of 3329 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/ml/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bee6f1c476fc0a926caac5c25ab1e6e6401a7056
https://github.com/phpmyadmin/phpmyadmin/commit/bee6f1c476fc0a926caac5c25ab…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-18 (Mon, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Sql.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 68cfb777a53884944de4a8b308107a3f184a674a
https://github.com/phpmyadmin/phpmyadmin/commit/68cfb777a53884944de4a8b3081…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-20 (Wed, 11 November 2019) +01:00
Changed paths:
M db_designer.php
M js/designer/move.js
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Database/Designer/DesignerTable.php
M templates/database/designer/database_tables.twig
M themes/metro/scss/_designer.scss
M themes/pmahomme/scss/_designer.scss
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a225ddb3c2973133005837b98df5269b8cc1ad43
https://github.com/phpmyadmin/phpmyadmin/commit/a225ddb3c2973133005837b98df…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-20 (Wed, 11 November 2019) +01:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2a2c6f75afd38cccb535b334d65e7ddc67954c0b
https://github.com/phpmyadmin/phpmyadmin/commit/2a2c6f75afd38cccb535b334d65…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-20 (Wed, 11 November 2019) +01:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fba5afa1afcc76c7a39b42bb026c48a00d5df866
https://github.com/phpmyadmin/phpmyadmin/commit/fba5afa1afcc76c7a39b42bb026…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-20 (Wed, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ffb9b91153b1b7ddc735c7ad91a5276a5858028a
https://github.com/phpmyadmin/phpmyadmin/commit/ffb9b91153b1b7ddc735c7ad91a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-11-20 (Wed, 11 November 2019) -03:00
Changed paths:
A themes/metro/scss/blueeyes-theme-rtl.scss
A themes/metro/scss/blueeyes-theme.scss
A themes/metro/scss/mono-theme-rtl.scss
A themes/metro/scss/mono-theme.scss
A themes/metro/scss/redmond-theme-rtl.scss
A themes/metro/scss/redmond-theme.scss
A themes/metro/scss/teal-theme-rtl.scss
A themes/metro/scss/teal-theme.scss
Log Message:
-----------
Add Metro theme optional color schemes
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 30411bcc5445e10f6229379a57b58c2879d282d4
https://github.com/phpmyadmin/phpmyadmin/commit/30411bcc5445e10f6229379a57b…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-11-21 (Thu, 11 November 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3330 of 3330 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 992a79d318b4f80daa148e62d7a55f7b0a816dd1
https://github.com/phpmyadmin/phpmyadmin/commit/992a79d318b4f80daa148e62d7a…
Author: Kongfa Warorot <gongpha(a)hotmail.com>
Date: 2019-11-21 (Thu, 11 November 2019) +01:00
Changed paths:
M po/th.po
Log Message:
-----------
Translated using Weblate (Thai)
Currently translated at 32.6% (1085 of 3330 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/th/
Signed-off-by: Kongfa Warorot <gongpha(a)hotmail.com>
Commit: fbdd44cc7965691941c9129e28eeb5f448fab410
https://github.com/phpmyadmin/phpmyadmin/commit/fbdd44cc7965691941c9129e28e…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-11-21 (Thu, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3330 of 3330 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 28bdc02c3c5b27cfe249f7ac328b3a335c8fe29f
https://github.com/phpmyadmin/phpmyadmin/commit/28bdc02c3c5b27cfe249f7ac328…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-22 (Fri, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M js/designer/history.js
M js/designer/move.js
M js/functions.js
M js/messages.php
M libraries/classes/Display/GitRevision.php
M libraries/classes/Footer.php
M templates/database/designer/database_tables.twig
M templates/database/designer/main.twig
Log Message:
-----------
Merge branch 'QA_4_9-security' into QA_5_0-security
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c7075fb450ebf73d9045b2a4de61e57c59a33f30
https://github.com/phpmyadmin/phpmyadmin/commit/c7075fb450ebf73d9045b2a4de6…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-22 (Fri, 11 November 2019) +01:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9-security' into QA_5_0-security
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 106eea596881a2ce6b42e285bcbce7db6155bda7
https://github.com/phpmyadmin/phpmyadmin/commit/106eea596881a2ce6b42e285bcb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-22 (Fri, 11 November 2019) +01:00
Changed paths:
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 66192e31f54a5047f7a4936fd279d7d84bbae73f
https://github.com/phpmyadmin/phpmyadmin/commit/66192e31f54a5047f7a4936fd27…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-22 (Fri, 11 November 2019) +01:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9-security' into QA_5_0-security
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c1e1816af73e4d818242bf72ab31a9fc711f0747
https://github.com/phpmyadmin/phpmyadmin/commit/c1e1816af73e4d818242bf72ab3…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-21 (Thu, 11 November 2019) -05:00
Changed paths:
M ChangeLog
Log Message:
-----------
Fix merge conflicts in ChangeLog
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 478a75dce5f74272d3e53dfcf6f6a5c595c24904
https://github.com/phpmyadmin/phpmyadmin/commit/478a75dce5f74272d3e53dfcf6f…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-21 (Thu, 11 November 2019) -05:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: 3cf66e239ae629825b8b5f5d729643aec5963b58
https://github.com/phpmyadmin/phpmyadmin/commit/3cf66e239ae629825b8b5f5d729…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-21 (Thu, 11 November 2019) -05:00
Changed paths:
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 5.0.0-rc1
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: aaf114f8e306318b7e1d0a3e20a8ff69b11ea3fa
https://github.com/phpmyadmin/phpmyadmin/commit/aaf114f8e306318b7e1d0a3e20a…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-22 (Fri, 11 November 2019) -05:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 5.0.0-rc1
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: f5b4fe69da4cd372688527d982dd6ca833b5f373
https://github.com/phpmyadmin/phpmyadmin/commit/f5b4fe69da4cd372688527d982d…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-22 (Fri, 11 November 2019) -05:00
Changed paths:
D composer.lock
Log Message:
-----------
Removing composer.lock
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 4f21a0b9fe560036f701108966727d21436fe824
https://github.com/phpmyadmin/phpmyadmin/commit/4f21a0b9fe560036f7011089667…
Author: Shailesh Jain <jainshailesh91(a)gmail.com>
Date: 2019-11-22 (Fri, 11 November 2019) +05:30
Changed paths:
M js/navigation.js
Log Message:
-----------
Panels on homescreen go underneath of floating menubar fixed
Signed-off-by: Shailesh Jain <jainshailesh91(a)gmail.com>
Commit: 4bde7fb6afc6972778d5e898c715445d9a6617d0
https://github.com/phpmyadmin/phpmyadmin/commit/4bde7fb6afc6972778d5e898c71…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-22 (Fri, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Display/GitRevision.php
Log Message:
-----------
Fix a merge issue reported by Scrutinizer
- isRemoteBranch was undefined
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3f9ac1dc98cf445cf6079a247eefb680f96aeb10
https://github.com/phpmyadmin/phpmyadmin/commit/3f9ac1dc98cf445cf6079a247ee…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-23 (Sat, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Database/Designer/Common.php
Log Message:
-----------
Fix engine can be null
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 293d273632fbe5faa75d98d0d738cc9b9ea03189
https://github.com/phpmyadmin/phpmyadmin/commit/293d273632fbe5faa75d98d0d73…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-23 (Sat, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Database/Designer/Common.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8fbd20ba31dd55d73fb10bc9aad47de92cce6d84
https://github.com/phpmyadmin/phpmyadmin/commit/8fbd20ba31dd55d73fb10bc9aad…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-23 (Sat, 11 November 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 4.9.3-dev
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 2a7a8c7dbfe4849fe834fa98c7e1697d15cba2fc
https://github.com/phpmyadmin/phpmyadmin/commit/2a7a8c7dbfe4849fe834fa98c7e…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-11-23 (Sat, 11 November 2019) -05:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Commit: 758bed849d3efa261566e9da780d2b53dce5ccb2
https://github.com/phpmyadmin/phpmyadmin/commit/758bed849d3efa261566e9da780…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-23 (Sat, 11 November 2019) +01:00
Changed paths:
M js/navigation.js
Log Message:
-----------
Merge #15581 - Fix panels on homescreen go underneath of floating menubar
Pull-request: #15581
Fixes: #15570
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d7d6c443e0a5a65bc3d27f6cbee626f18cdd1f4b
https://github.com/phpmyadmin/phpmyadmin/commit/d7d6c443e0a5a65bc3d27f6cbee…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-23 (Sat, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15570
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9457e11ad39f27ae1889da764363f3bd68167bfc
https://github.com/phpmyadmin/phpmyadmin/commit/9457e11ad39f27ae1889da76436…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: 734b55a5f35edd658548a3a3aca45999b43c29ac
https://github.com/phpmyadmin/phpmyadmin/commit/734b55a5f35edd658548a3a3aca…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 2a475f57749207e32d0c42f66a7917be3785f473
https://github.com/phpmyadmin/phpmyadmin/commit/2a475f57749207e32d0c42f66a7…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: 28d76482b818b2bf036dd6e0179ea0e1467c1e6e
https://github.com/phpmyadmin/phpmyadmin/commit/28d76482b818b2bf036dd6e0179…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/TableRelationController.php
Log Message:
-----------
Fix #15591 - Undefined index: foreign_keys_data
Fixes: #15591
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 086f4402376718ab2ac42f5d332beab6bad191ef
https://github.com/phpmyadmin/phpmyadmin/commit/086f4402376718ab2ac42f5d332…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15591
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: dcc934b98a82fa8c0702c0babdf96085f4205304
https://github.com/phpmyadmin/phpmyadmin/commit/dcc934b98a82fa8c0702c0babdf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M js/navigation.js
M libraries/classes/Controllers/Table/RelationController.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5f5dc024a16423e63b3845065535c1d689f0a80a
https://github.com/phpmyadmin/phpmyadmin/commit/5f5dc024a16423e63b384506553…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Config.php
M libraries/classes/ErrorHandler.php
M show_config_errors.php
Log Message:
-----------
Fix #15592 - Warning: error_reporting() has been disabled for security reasons
Fixes: #15592
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b6e1ea68f3f9f22885b146aefd0bb74eb3eab67b
https://github.com/phpmyadmin/phpmyadmin/commit/b6e1ea68f3f9f22885b146aefd0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/TableRelationController.php
Log Message:
-----------
Fix issue reported by Scrutinizer
It seems like ... can also be of type null; however, parameter $existrel_foreign of PhpMyAdmin\Table::updateForeignKeys does only seem to accept array
Link: https://scrutinizer-ci.com/g/phpmyadmin/phpmyadmin/inspections/72ec4952-c55…
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d935fe286f9064ef788d05074380a042376e5a6b
https://github.com/phpmyadmin/phpmyadmin/commit/d935fe286f9064ef788d0507438…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15592
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 2f0fff5fa1142af08d085625de8350aa6701e021
https://github.com/phpmyadmin/phpmyadmin/commit/2f0fff5fa1142af08d085625de8…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/ErrorHandler.php
Log Message:
-----------
Fix #15592 - Add all errors since we do not have access to error_reporting function
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ecb5faac0c403ddc305617efbf2ad999fbe6f4dd
https://github.com/phpmyadmin/phpmyadmin/commit/ecb5faac0c403ddc305617efbf2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Fix #15434 - Add support for middle click on table sort column
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4aa4095e3064f5526d067268686092fbe5bd959a
https://github.com/phpmyadmin/phpmyadmin/commit/4aa4095e3064f5526d067268686…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog for #15434
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 8f470aaa2fb2cbb399e40eaa0f19614737dc91b6
https://github.com/phpmyadmin/phpmyadmin/commit/8f470aaa2fb2cbb399e40eaa0f1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/ErrorHandler.php
Log Message:
-----------
Fix #15592 - Hide user warning, errors and notices
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 99a8b4ea4d8b924740858df97f37123ec784128e
https://github.com/phpmyadmin/phpmyadmin/commit/99a8b4ea4d8b924740858df97f3…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Sql.php
Log Message:
-----------
Fix php notice "undefined index table_create_time" when setting displayed columns on results of a view
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: c1e8674fa6b2e719acac0da7460ab7d5beed7a86
https://github.com/phpmyadmin/phpmyadmin/commit/c1e8674fa6b2e719acac0da7460…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog for 99a8b4ea4d
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3ebcf62e784aadf060982364ecaf593263f35676
https://github.com/phpmyadmin/phpmyadmin/commit/3ebcf62e784aadf060982364eca…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Config.php
M libraries/classes/Controllers/Table/RelationController.php
M libraries/classes/Display/Results.php
M libraries/classes/ErrorHandler.php
M libraries/classes/Sql.php
M show_config_errors.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ff812e93666a56fab0b8ab9dde125726bfb19d21
https://github.com/phpmyadmin/phpmyadmin/commit/ff812e93666a56fab0b8ab9dde1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-11-24 (Sun, 11 November 2019) +01:00
Changed paths:
M libraries/classes/Controllers/Table/RelationController.php
Log Message:
-----------
Fix a merge mistake
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 7980468153bcc0c62946f652947a39873ac3381b
https://github.com/phpmyadmin/phpmyadmin/commit/7980468153bcc0c62946f652947…
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/tr.po
Log Message:
-----------
Translated using Weblate (Turkish)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/tr/
Signed-off-by: Burak Yavuz <hitowerdigit(a)hotmail.com>
Commit: fa8fb26aa6bd945a805e6edcd36711a8df394491
https://github.com/phpmyadmin/phpmyadmin/commit/fa8fb26aa6bd945a805e6edcd36…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: 22c91a07b900c2ce54e4e192449fa0f94154886a
https://github.com/phpmyadmin/phpmyadmin/commit/22c91a07b900c2ce54e4e192449…
Author: ssantos <ssantos(a)web.de>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 3f7d63a10eea9b5033eb162fc39ab898d9f8654f
https://github.com/phpmyadmin/phpmyadmin/commit/3f7d63a10eea9b5033eb162fc39…
Author: dingo thirteen <dingo13(a)d404.nl>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/nl.po
Log Message:
-----------
Translated using Weblate (Dutch)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/nl/
Signed-off-by: dingo thirteen <dingo13(a)d404.nl>
Commit: 2d693acf89f1e0ce398ee764a822b1554b479ae7
https://github.com/phpmyadmin/phpmyadmin/commit/2d693acf89f1e0ce398ee764a82…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: ce2642849751875535b5dfab632a6478ac5733f2
https://github.com/phpmyadmin/phpmyadmin/commit/ce2642849751875535b5dfab632…
Author: Domen <mitenem(a)outlook.com>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/sl.po
Log Message:
-----------
Translated using Weblate (Slovenian)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/sl/
Signed-off-by: Domen <mitenem(a)outlook.com>
Commit: e54f08b929e172b708a1f2ff616bf858d89d1f25
https://github.com/phpmyadmin/phpmyadmin/commit/e54f08b929e172b708a1f2ff616…
Author: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Date: 2019-11-26 (Tue, 11 November 2019) +01:00
Changed paths:
M po/ja.po
Log Message:
-----------
Translated using Weblate (Japanese)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/ja/
Signed-off-by: Joshua PowellNishiyama <nzjpnboy(a)outlook.com>
Commit: c28bedd3e5ae78c78bbdac984e4a648c5016498b
https://github.com/phpmyadmin/phpmyadmin/commit/c28bedd3e5ae78c78bbdac984e4…
Author: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Date: 2019-11-29 (Fri, 11 November 2019) +01:00
Changed paths:
A po/am.po
Log Message:
-----------
Added translation using Weblate (Amharic)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/am/
Signed-off-by: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Commit: 6dc447abf360571805f8c2a70ed8818902d10580
https://github.com/phpmyadmin/phpmyadmin/commit/6dc447abf360571805f8c2a70ed…
Author: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Date: 2019-11-29 (Fri, 11 November 2019) +01:00
Changed paths:
A po/am.po
Log Message:
-----------
Added translation using Weblate (Amharic)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/am/
Signed-off-by: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Commit: 94ba5dd301d940ce770850581d0ff569e403696e
https://github.com/phpmyadmin/phpmyadmin/commit/94ba5dd301d940ce770850581d0…
Author: AnawinWz <imonmac(a)hotmail.com>
Date: 2019-11-30 (Sat, 11 November 2019) +01:00
Changed paths:
M po/th.po
Log Message:
-----------
Translated using Weblate (Thai)
Currently translated at 40.6% (1343 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/th/
Signed-off-by: AnawinWz <imonmac(a)hotmail.com>
Commit: 435d68b48e7e79a35c0ad893199b52a223bec868
https://github.com/phpmyadmin/phpmyadmin/commit/435d68b48e7e79a35c0ad893199…
Author: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Date: 2019-11-30 (Sat, 11 November 2019) +01:00
Changed paths:
M po/am.po
Log Message:
-----------
Translated using Weblate (Amharic)
Currently translated at 0.6% (21 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/am/
Signed-off-by: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Commit: d8444c18a98f8e37d1f078a9fc95cbd921f0ceca
https://github.com/phpmyadmin/phpmyadmin/commit/d8444c18a98f8e37d1f078a9fc9…
Author: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Date: 2019-11-30 (Sat, 11 November 2019) +01:00
Changed paths:
M po/am.po
Log Message:
-----------
Translated using Weblate (Amharic)
Currently translated at 0.6% (21 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/am/
Signed-off-by: Eyob Shiferaw <eeyyoobb(a)gmail.com>
Commit: 2dbe8f400bb4791d000ffc7f12f132aa33d5cf27
https://github.com/phpmyadmin/phpmyadmin/commit/2dbe8f400bb4791d000ffc7f12f…
Author: Ashwin Ginoria <ashwinginoria(a)gmail.com>
Date: 2019-12-04 (Wed, 12 December 2019) +05:30
Changed paths:
M libraries/classes/InsertEdit.php
M tbl_change.php
Log Message:
-----------
Removed 3rd Parameter to fix #15571
Signed-off-by: Ashwin Ginoria <ashwinginoria(a)gmail.com>
Date: Wed Dec 4 14:26:34 2019 +0530
Commit: 48e8433a69245f7ea0c8051a0dc534a395ef7ffc
https://github.com/phpmyadmin/phpmyadmin/commit/48e8433a69245f7ea0c8051a0dc…
Author: Petr Pešula <p.pesula(a)gmail.com>
Date: 2019-12-05 (Thu, 12 December 2019) +01:00
Changed paths:
M po/cs.po
Log Message:
-----------
Translated using Weblate (Czech)
Currently translated at 90.3% (2985 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/cs/
Signed-off-by: Petr Pešula <p.pesula(a)gmail.com>
Commit: 08a6170e30d5110e1a130b22f3bdf5f162eb30c0
https://github.com/phpmyadmin/phpmyadmin/commit/08a6170e30d5110e1a130b22f3b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-05 (Thu, 12 December 2019) +01:00
Changed paths:
M libraries/classes/InsertEdit.php
M test/classes/InsertEditTest.php
Log Message:
-----------
Fix tests and phpdoc for #15571
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b3a3e3fbe409a2c199a1d5b7565d0abe5b724e50
https://github.com/phpmyadmin/phpmyadmin/commit/b3a3e3fbe409a2c199a1d5b7565…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-05 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/InsertEdit.php
M tbl_change.php
M test/classes/InsertEditTest.php
Log Message:
-----------
Merge #15613 - Fix #15571 Fatal error when trying to edit row with row checked and button under the table
Pull-request: #15613
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 59f5cdea433b4c76f1d8dc4d56d385a3be09c50f
https://github.com/phpmyadmin/phpmyadmin/commit/59f5cdea433b4c76f1d8dc4d56d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-05 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/InsertEdit.php
M tbl_change.php
M test/classes/InsertEditTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 86a536451bb36b68e4be73d8a5666d74243e3a30
https://github.com/phpmyadmin/phpmyadmin/commit/86a536451bb36b68e4be73d8a56…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-05 (Thu, 12 December 2019) +01:00
Changed paths:
M test/classes/FileListingTest.php
Log Message:
-----------
Improve test suite because php-bz2 can be not installed
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 81825ebda9f0066a272b89baf67f78266f01c00b
https://github.com/phpmyadmin/phpmyadmin/commit/81825ebda9f0066a272b89baf67…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M db_designer.php
Log Message:
-----------
Fix #15633 - designer set display field broken for php 5.x versions
Fixes: #15633
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3fe68cee4e21aed886dea94bead24863c6d7443e
https://github.com/phpmyadmin/phpmyadmin/commit/3fe68cee4e21aed886dea94bead…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15633
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: edc53d2c6e5851ccffb82baf3a7a464b1e09ce42
https://github.com/phpmyadmin/phpmyadmin/commit/edc53d2c6e5851ccffb82baf3a7…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b3c28b8732c118f7c8cca24a85fa2b6c016e4db4
https://github.com/phpmyadmin/phpmyadmin/commit/b3c28b8732c118f7c8cca24a85f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15621
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: fd2b172365575fc6a5420aea0eb3073deb19326b
https://github.com/phpmyadmin/phpmyadmin/commit/fd2b172365575fc6a5420aea0eb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Config.php
M test/classes/ConfigTest.php
Log Message:
-----------
Fix #15621 - Support CloudFront-Forwarded-Proto header
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5e271bd93b90bb5598eab685575dea818c510865
https://github.com/phpmyadmin/phpmyadmin/commit/5e271bd93b90bb5598eab685575…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-09 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Config.php
M test/classes/ConfigTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b92b286be524242d35570eb0bc7b89b10fa14731
https://github.com/phpmyadmin/phpmyadmin/commit/b92b286be524242d35570eb0bc7…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-10 (Tue, 12 December 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Use PHP 7.4 instead of 7.4snapshot in Travis build
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 19388f0a8c183a76fcc9598572e041811afdb7f1
https://github.com/phpmyadmin/phpmyadmin/commit/19388f0a8c183a76fcc9598572e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-10 (Tue, 12 December 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 1bae7c17d0db47e14137fde269080beff7c0bef6
https://github.com/phpmyadmin/phpmyadmin/commit/1bae7c17d0db47e14137fde2690…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-10 (Tue, 12 December 2019) -03:00
Changed paths:
M libraries/classes/LanguageManager.php
Log Message:
-----------
Add support for Amharic language
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e309499a5f5cf71046c7dd2850aecd98a3804b56
https://github.com/phpmyadmin/phpmyadmin/commit/e309499a5f5cf71046c7dd2850a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-10 (Tue, 12 December 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Ignore platform requirements for PHP nightly
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: b6233af781359df8bc12f33e86df7db7bbae24ff
https://github.com/phpmyadmin/phpmyadmin/commit/b6233af781359df8bc12f33e86d…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-10 (Tue, 12 December 2019) -03:00
Changed paths:
M libraries/classes/LanguageManager.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 5c095d97919d869b6268d2567911f73de0ef0b69
https://github.com/phpmyadmin/phpmyadmin/commit/5c095d97919d869b6268d256791…
Author: ssantos <ssantos(a)web.de>
Date: 2019-12-13 (Fri, 12 December 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: db973e60e9e642683ae2425e5ca77c200ee417bd
https://github.com/phpmyadmin/phpmyadmin/commit/db973e60e9e642683ae2425e5ca…
Author: popcorner <memoword(a)163.com>
Date: 2019-12-13 (Fri, 12 December 2019) +01:00
Changed paths:
M po/zh_CN.po
Log Message:
-----------
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/zh_Hans/
Signed-off-by: popcorner <memoword(a)163.com>
Commit: cad3bff4fed6cc0e58b62f4c7b09925b8f6eda7e
https://github.com/phpmyadmin/phpmyadmin/commit/cad3bff4fed6cc0e58b62f4c7b0…
Author: popcorner <memoword(a)163.com>
Date: 2019-12-13 (Fri, 12 December 2019) +01:00
Changed paths:
M po/zh_CN.po
Log Message:
-----------
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/zh_Hans/
Signed-off-by: popcorner <memoword(a)163.com>
Commit: 7b4e6681f25abdc641e4715c45dc7bf1cf965cd0
https://github.com/phpmyadmin/phpmyadmin/commit/7b4e6681f25abdc641e4715c45d…
Author: flies <a.rzadkowolski(a)gmail.com>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Keep PMA_handleRedirectAndReload compatility with old versions
Signed-off-by: Arkadiusz Rzadkowolski <a.rzadkowolski(a)gmail.com>
Commit: 8dbd41ba3b521d4cac86f5750d6890d351a4c445
https://github.com/phpmyadmin/phpmyadmin/commit/8dbd41ba3b521d4cac86f5750d6…
Author: R. Gurung <gurungrahul2(a)gmail.com>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
changing !isset array index into null
Signed-off-by: R. Gurung <gurungrahul2(a)gmail.com>
Commit: 52cef303840d544db4af6406f5b54a7b3189a583
https://github.com/phpmyadmin/phpmyadmin/commit/52cef303840d544db4af6406f5b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Config.php
Log Message:
-----------
Fix php 8.0 php notices - Undefined index
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e1a1ec9115fbf7cbcd93b3985b1e6a15b799e00f
https://github.com/phpmyadmin/phpmyadmin/commit/e1a1ec9115fbf7cbcd93b3985b1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for 52cef303840d
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 39fae3e84d158ca0f24b43f903e0c7bdf7cae617
https://github.com/phpmyadmin/phpmyadmin/commit/39fae3e84d158ca0f24b43f903e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Config.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 94e30e9845fa3a35fca7173a0312ff2b73bd31bf
https://github.com/phpmyadmin/phpmyadmin/commit/94e30e9845fa3a35fca7173a031…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Error.php
Log Message:
-----------
Add missing E_USER_DEPRECATED to Error handler
Can be seen on 5.0 because "The "filter" tag in "home/index.twig" at line 18 is deprecated since Twig 2.9, use the "apply" tag instead."
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6f034732c3a3ed7b74a96b83957c3f4c4ba412ed
https://github.com/phpmyadmin/phpmyadmin/commit/6f034732c3a3ed7b74a96b83957…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Error.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b475cfdd6c5176399020a3139bc6ad900b36da58
https://github.com/phpmyadmin/phpmyadmin/commit/b475cfdd6c5176399020a3139bc…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M templates/home/index.twig
M templates/scripts.twig
M templates/server/replication/index.twig
M templates/server/replication/slave_configuration.twig
Log Message:
-----------
Use apply tag instead of filter and fix for loop
https://twig.symfony.com/doc/1.x/tags/apply.htmlhttps://twig.symfony.com/doc/2.x/deprecated.html#tags
"The filter tag is deprecated in Twig 2.9. Use the apply tag instead (the Twig\TokenParser\FilterTokenParser classes is also deprecated)."
and "Adding an if condition on a for tag is deprecated in Twig 2.10. Use a filter filter or an "if" condition inside the "for" body instead (if your condition depends on a variable updated inside the loop)"
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 990978f064adf7d65548abcea71464679ad83ebb
https://github.com/phpmyadmin/phpmyadmin/commit/990978f064adf7d65548abcea71…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for b475cfdd6c5176
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9f32a895b5d6fc71881812776ddd5501fc56f828
https://github.com/phpmyadmin/phpmyadmin/commit/9f32a895b5d6fc71881812776dd…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
Log Message:
-----------
Fix #15435 - ReCAPTCHA couldn't find user-provided function: Functions.recaptchaCallback
Fixes: #15435
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6b564e37803d9d345796669605ebb28dc850ecc8
https://github.com/phpmyadmin/phpmyadmin/commit/6b564e37803d9d345796669605e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15435
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b4bcd34e289d91971751eef9690171483e3a5eb3
https://github.com/phpmyadmin/phpmyadmin/commit/b4bcd34e289d91971751eef9690…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Fix eslint after #15435
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 13e91a0e932c50acbec6f268cf8ad06b04a36271
https://github.com/phpmyadmin/phpmyadmin/commit/13e91a0e932c50acbec6f268cf8…
Author: Nikhil Nagdev <nnagdev58(a)gmail.com>
Date: 2019-12-17 (Tue, 12 December 2019) +05:30
Changed paths:
M libraries/classes/Table.php
Log Message:
-----------
Fixed issue of renaming the primary key
Signed-off-by: Nikhil Nagdev <nnagdev58(a)gmail.com>
Commit: bee397e680dba679915c00d9d575f3650fd276b4
https://github.com/phpmyadmin/phpmyadmin/commit/bee397e680dba679915c00d9d57…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/table/select.js
Log Message:
-----------
#15623 Set automatic width
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: 16efdd1b5f7121e490c6bb13f84c3d374a17fb16
https://github.com/phpmyadmin/phpmyadmin/commit/16efdd1b5f7121e490c6bb13f84…
Author: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Display date/time picker only for date/time fields
Signed-off-by: Hugues Peccatte <hugues.peccatte(a)gmail.com>
Commit: ac9118d044d64baeaf517448aad31aec7e58a67d
https://github.com/phpmyadmin/phpmyadmin/commit/ac9118d044d64baeaf517448aad…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
M js/table/select.js
Log Message:
-----------
Merge #15632 and #15631 - UI fixes for datetime picker and modal
Fixes: #15623
Pull-request: #15631
Pull-request: #15632
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 91ed866c63e19280ecea209d4496b764f8ee7d55
https://github.com/phpmyadmin/phpmyadmin/commit/91ed866c63e19280ecea209d449…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15623
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a993e36acad72d7909c6f022e8bc65d8d40eb6cb
https://github.com/phpmyadmin/phpmyadmin/commit/a993e36acad72d7909c6f022e8b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Table.php
Log Message:
-----------
Merge #15659 - Fix #14732 Can't rename primary key with auto increment
Pull-request: #15659
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 782f39602c302cc8a74fecc764ac154d64b9a0ee
https://github.com/phpmyadmin/phpmyadmin/commit/782f39602c302cc8a74fecc764a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14732
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ea8f8f3a866a98a6d7674b94c557b6c6a0b8cf14
https://github.com/phpmyadmin/phpmyadmin/commit/ea8f8f3a866a98a6d7674b94c55…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Merge #15654 - Keep PMA_handleRedirectAndReload compatility with old versions
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 850c125684e7e0cc6b6ac28ead1033a1c6fc5e4f
https://github.com/phpmyadmin/phpmyadmin/commit/850c125684e7e0cc6b6ac28ead1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Table.php
M test/classes/TableTest.php
Log Message:
-----------
Fix #14732 Can't rename primary key with auto increment
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f00273209ef2258b228f1d7fd9c73020c3bd8cff
https://github.com/phpmyadmin/phpmyadmin/commit/f00273209ef2258b228f1d7fd9c…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-16 (Mon, 12 December 2019) +01:00
Changed paths:
M test/classes/UserPreferencesTest.php
Log Message:
-----------
Fix a phpstan error
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9ef2215ca0aa91c7dce0af17875db2a827bae9b3
https://github.com/phpmyadmin/phpmyadmin/commit/9ef2215ca0aa91c7dce0af17875…
Author: Володимир Бриняк <bardvv(a)gmail.com>
Date: 2019-12-17 (Tue, 12 December 2019) +01:00
Changed paths:
M po/uk.po
Log Message:
-----------
Translated using Weblate (Ukrainian)
Currently translated at 99.9% (3304 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/uk/
Signed-off-by: Володимир Бриняк <bardvv(a)gmail.com>
Commit: bed84bbf58969724f76e03a078ed6e18eca00f5d
https://github.com/phpmyadmin/phpmyadmin/commit/bed84bbf58969724f76e03a078e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-17 (Tue, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Twig/MessageExtension.php
Log Message:
-----------
Add type-hints to prevent a type error
Uncaught TypeError: Argument 1 passed to PhpMyAdmin\Message::notice() must be of the type string, object given
This error only occurs because of 4bb10d2ed35f3e71f7798a98100fae9107385378 that changed filter to apply
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4cbcf4889bfeb447f9f32c83cc4f309e66288806
https://github.com/phpmyadmin/phpmyadmin/commit/4cbcf4889bfeb447f9f32c83cc4…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-17 (Tue, 12 December 2019) -03:00
Changed paths:
M libraries/classes/Util.php
Log Message:
-----------
Fix TypeError in Util class
TypeError: str_replace() expects parameter 3 to be string or array, int given
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 73c1ff9875a169d735da85bee8edb36a69a53aa7
https://github.com/phpmyadmin/phpmyadmin/commit/73c1ff9875a169d735da85bee8e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-17 (Tue, 12 December 2019) -03:00
Changed paths:
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
Log Message:
-----------
Fix Plugins/Auth/AuthenticationCookieTest.php
Related to commit 9f32a895b5d6fc71881812776ddd5501fc56f828.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
(cherry picked from commit 39770eec8805756fedaa203bb89db25d56dbabbe)
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: c01377b161f3d00a2de16ad41e9a97c6f580e157
https://github.com/phpmyadmin/phpmyadmin/commit/c01377b161f3d00a2de16ad41e9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Fix undefined index for proxysql on @@version_comment and @@version
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 87a84b396c9846107522126fcf974aacd8f5691d
https://github.com/phpmyadmin/phpmyadmin/commit/87a84b396c9846107522126fcf9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Merge #15653 - php 7.4 type error
Fixes: #15640
Pull-request: #15653
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5ed6a7364f241a409166bf660634d019c52e3c1a
https://github.com/phpmyadmin/phpmyadmin/commit/5ed6a7364f241a409166bf66063…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15640
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 02304bcebfbdedfccb0857c48f202cbe681f7912
https://github.com/phpmyadmin/phpmyadmin/commit/02304bcebfbdedfccb0857c48f2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
M libraries/classes/Display/Results.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: eb8472ba312c5f99ce3be3e3baff079255a4323b
https://github.com/phpmyadmin/phpmyadmin/commit/eb8472ba312c5f99ce3be3e3baf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M templates/columns_definitions/column_attributes.twig
M templates/database/tracking/tables.twig
M templates/gis_data_editor_form.twig
M templates/navigation/item_unhide_dialog.twig
M templates/server/privileges/initials_row.twig
Log Message:
-----------
Fix for if in twig is deprecated
"Using an "if" condition on "for" tag in "columns_definitions/column_attributes.twig" at line 163 is deprecated since Twig 2.10.0, use a "filter" filter or an "if" condition inside the "for" body instead (if your condition depends on a variable updated inside the loop)."
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 99250a88ba5aae65f0c35b5645d5ee918d4c6343
https://github.com/phpmyadmin/phpmyadmin/commit/99250a88ba5aae65f0c35b5645d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M templates/columns_definitions/column_attributes.twig
M templates/database/tracking/untracked_tables.twig
M templates/privileges/initials_row.twig
M templates/server/databases/databases_footer.twig
M templates/server/databases/table_header.twig
M templates/server/databases/table_row.twig
Log Message:
-----------
Fix for if in twig is deprecated
"Using an "if" condition on "for" tag in "columns_definitions/column_attributes.twig" at line 163 is deprecated since Twig 2.10.0, use a "filter" filter or an "if" condition inside the "for" body instead (if your condition depends on a variable updated inside the loop)."
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bd33d92f39e7b0ea91aa96a3766207d389483927
https://github.com/phpmyadmin/phpmyadmin/commit/bd33d92f39e7b0ea91aa96a3766…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M templates/columns_definitions/column_virtuality.twig
M templates/columns_definitions/partitions.twig
M templates/database/designer/js_fields.twig
M templates/database/multi_table_query/form.twig
M templates/display/export/options_rows.twig
M templates/display/import/javascript.twig
Log Message:
-----------
Fix spaceless is deprecated
"Deprecation Notice in ./vendor/twig/twig/src/TokenParser/SpacelessTokenParser.php#36
The spaceless tag in "columns_definitions/column_virtuality.twig" at line 18 is deprecated since Twig 2.7, use the spaceless filter instead."
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6da3f0ed5eae9cb76a27d65bce5c2e08e729bc74
https://github.com/phpmyadmin/phpmyadmin/commit/6da3f0ed5eae9cb76a27d65bce5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-18 (Wed, 12 December 2019) +01:00
Changed paths:
M templates/columns_definitions/column_virtuality.twig
M templates/columns_definitions/partitions.twig
M templates/database/designer/main.twig
M templates/database/multi_table_query/form.twig
M templates/display/export/options_rows.twig
M templates/display/import/javascript.twig
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b0747a807045656d6d15a59c832aa8bf7f4a69bb
https://github.com/phpmyadmin/phpmyadmin/commit/b0747a807045656d6d15a59c832…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-19 (Thu, 12 December 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 0fb628bf4f19b03fb83e394fdb86ed10ea9a0176
https://github.com/phpmyadmin/phpmyadmin/commit/0fb628bf4f19b03fb83e394fdb8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-19 (Thu, 12 December 2019) +01:00
Changed paths:
M po/pt_BR.po
Log Message:
-----------
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/pt_BR/
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 74d4510c3afdd533c8ba350389530df242825b2c
https://github.com/phpmyadmin/phpmyadmin/commit/74d4510c3afdd533c8ba3503895…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-19 (Thu, 12 December 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix dbase versions in build matrix
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9d477ec97d56105d922e0ba530f982382f355a51
https://github.com/phpmyadmin/phpmyadmin/commit/9d477ec97d56105d922e0ba530f…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-19 (Thu, 12 December 2019) -03:00
Changed paths:
M .travis.yml
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 56e8ebd8e99609b59e6a77363702caa3ff0b1b8b
https://github.com/phpmyadmin/phpmyadmin/commit/56e8ebd8e99609b59e6a7736370…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-19 (Thu, 12 December 2019) +01:00
Changed paths:
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Fix #15641 - Replication actions are not sent to a mysql link
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 28c29223fca6ed3fa2189d281e9e0a84eb725405
https://github.com/phpmyadmin/phpmyadmin/commit/28c29223fca6ed3fa2189d281e9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-19 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15641
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 198bd239e8759a210143aec9bfe5782d5066eff2
https://github.com/phpmyadmin/phpmyadmin/commit/198bd239e8759a210143aec9bfe…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-19 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/Replication.php
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: beb304c9470fa2d0b4cb0597b8ab9bd62bc01d59
https://github.com/phpmyadmin/phpmyadmin/commit/beb304c9470fa2d0b4cb0597b8a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-20 (Fri, 12 December 2019) -03:00
Changed paths:
M libraries/classes/InsertEdit.php
Log Message:
-----------
Fix coding standard error
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e69b22e9f71fb2467324c785ac8f66a8853bf5b8
https://github.com/phpmyadmin/phpmyadmin/commit/e69b22e9f71fb2467324c785ac8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-20 (Fri, 12 December 2019) -03:00
Changed paths:
M .travis.yml
M composer.json
M phpcs.xml.dist
Log Message:
-----------
Add phpcs to the Travis build
Adds composer test command.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: eaa1cebb730ff513189cf32677e8f867a1ff3d08
https://github.com/phpmyadmin/phpmyadmin/commit/eaa1cebb730ff513189cf32677e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-20 (Fri, 12 December 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e1db42a0f6a729ec74d78968fd2bd71967d34179
https://github.com/phpmyadmin/phpmyadmin/commit/e1db42a0f6a729ec74d78968fd2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Bookmark.php
Log Message:
-----------
Fix phpdoc for Sami
Ref: #14345
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 313da618bd49569cfc68a7dd3f1e72941e0e73eb
https://github.com/phpmyadmin/phpmyadmin/commit/313da618bd49569cfc68a7dd3f1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M doc/config.rst
M doc/faq.rst
M doc/glossary.rst
M doc/require.rst
M doc/setup.rst
M doc/transformations.rst
M libraries/classes/Database/DatabaseList.php
M libraries/classes/IpAllowDeny.php
M libraries/classes/Plugins/Export/ExportPhparray.php
M libraries/classes/Plugins/Schema/Dia/Dia.php
M libraries/classes/Plugins/Schema/Eps/Eps.php
M libraries/classes/Plugins/Schema/Svg/Svg.php
M libraries/classes/Plugins/Transformations/TEMPLATE_ABSTRACT
M libraries/classes/Session.php
M libraries/classes/Util.php
Log Message:
-----------
Fix redirection form secure.php.net to www.php.net
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 171bc9a456cd7064e01a0d64f0af1b3221565253
https://github.com/phpmyadmin/phpmyadmin/commit/171bc9a456cd7064e01a0d64f0a…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M doc/conf.py
Log Message:
-----------
Ignore yubico.com from links checks
Ref: fa2f887703d3971395286e4382c4abf90c983799
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 83d05641bb3b6703000fc3d9bb1b3a02c416c94a
https://github.com/phpmyadmin/phpmyadmin/commit/83d05641bb3b6703000fc3d9bb1…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix OSX build
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6337a888c5156ac2b8380a46ca426a1d7bc4557b
https://github.com/phpmyadmin/phpmyadmin/commit/6337a888c5156ac2b8380a46ca4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Add php 7.4 step using phpunit 8
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e88b6bfc80a9309bbb15a8754868ffab69b24f2f
https://github.com/phpmyadmin/phpmyadmin/commit/e88b6bfc80a9309bbb15a875486…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Disable xdebug for php 7.4 CI
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 6e7e90169a9e4de45c246d67486ae9bd35b7ded6
https://github.com/phpmyadmin/phpmyadmin/commit/6e7e90169a9e4de45c246d67486…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Fix a possibly undefined index as reported to our server
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d40f89ebd916a1d7a771d7ab10d3079417230f68
https://github.com/phpmyadmin/phpmyadmin/commit/d40f89ebd916a1d7a771d7ab10d…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Rte/Routines.php
M test/classes/Rte/RoutinesTest.php
Log Message:
-----------
Fix a possible php7.4 error / failing tests
"Trying to access array offset on value of type null"
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5000171c40a3ebae7257779a1ac12714c5662c1e
https://github.com/phpmyadmin/phpmyadmin/commit/5000171c40a3ebae7257779a1ac…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Fix mysql password issue on OSX build
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9d3f7519c990b3b4b34991b9cf8b1884ceef177b
https://github.com/phpmyadmin/phpmyadmin/commit/9d3f7519c990b3b4b34991b9cf8…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-21 (Sat, 12 December 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
Log Message:
-----------
Revert "Fix #14433 - "You do not have privileges to manipulate with the users!" on root superadmin"
This reverts commit b8650115be7cc2d79d231723b7a6f1961e834d27.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 542ba3025a9272b9547a3fd3aabfb8711eed626a
https://github.com/phpmyadmin/phpmyadmin/commit/542ba3025a9272b9547a3fd3aab…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-21 (Sat, 12 December 2019) -03:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
Log Message:
-----------
Fix control user issue
Partially reverts commit 2bc8afea5f47d0d409163754698ad13487410158.
Fixes #15608
Related to #14433
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 931a6ecffab102ae6d2bc70ab5bc9923cb18eb70
https://github.com/phpmyadmin/phpmyadmin/commit/931a6ecffab102ae6d2bc70ab5b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Use phpunit 8 on OSX CI and fix file filter
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 774fc686bb1e874cae5a73e0960fd81abe605fea
https://github.com/phpmyadmin/phpmyadmin/commit/774fc686bb1e874cae5a73e0960…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Fix #15641 - Replication actions are not sent to a mysql link
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: aa2f369bf399cd4ebd2a7617f3e1611e39b539d3
https://github.com/phpmyadmin/phpmyadmin/commit/aa2f369bf399cd4ebd2a7617f3e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
M doc/conf.py
M doc/config.rst
M doc/faq.rst
M doc/glossary.rst
M doc/require.rst
M doc/setup.rst
M doc/transformations.rst
M libraries/classes/Database/DatabaseList.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/IpAllowDeny.php
M libraries/classes/Plugins/Export/ExportPhparray.php
M libraries/classes/Plugins/Schema/Dia/Dia.php
M libraries/classes/Plugins/Schema/Eps/Eps.php
M libraries/classes/Plugins/Schema/Svg/Svg.php
M libraries/classes/Plugins/Transformations/TEMPLATE_ABSTRACT
M libraries/classes/ReplicationGui.php
M libraries/classes/Session.php
M libraries/classes/Util.php
M test/classes/Rte/RoutinesTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a3d621762229b3dd0cf600095241eab3c01d57f3
https://github.com/phpmyadmin/phpmyadmin/commit/a3d621762229b3dd0cf60009524…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Disable xdebug for php 7.4 Linux CI
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: f402a8f2cf8639c373ad4a1a7d7097568dd15c7d
https://github.com/phpmyadmin/phpmyadmin/commit/f402a8f2cf8639c373ad4a1a7d7…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
Log Message:
-----------
Merge #15681 - Fix #15608 DisableIS is broken on pma 4.9.2 with controluser configured
Fixes: #15608
Pull-request: #15681
Ref: 2bc8afea5f47d0d409163754698ad13487410158
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a1acccdf59897f005f1168fee74d5dc1063fa3fc
https://github.com/phpmyadmin/phpmyadmin/commit/a1acccdf59897f005f1168fee74…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15608
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9633175165a6e7904cb69a8f1965b9379bc00d7f
https://github.com/phpmyadmin/phpmyadmin/commit/9633175165a6e7904cb69a8f196…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/DatabaseInterface.php
M libraries/common.inc.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d2d29ee45ea7aa7b4b684d6d30b1bf797a721321
https://github.com/phpmyadmin/phpmyadmin/commit/d2d29ee45ea7aa7b4b684d6d30b…
Author: Harsh Kukreja <harshkukreja99(a)gmail.com>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Show Processlist triggers exception removed
Signed-off-by: Harsh Kukreja <harshkukreja99(a)gmail.com>
Commit: 567b39a623041fefdd70f9f8edecd080a5ae5e59
https://github.com/phpmyadmin/phpmyadmin/commit/567b39a623041fefdd70f9f8ede…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M libraries/classes/Display/Results.php
Log Message:
-----------
Merge #15683 - Fix #15677 Show Processlist triggers exception
Pull-request: #15683
Fixes: #15677
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 527d1af4c5aa807fa9d055ee0a3fed53f26e107b
https://github.com/phpmyadmin/phpmyadmin/commit/527d1af4c5aa807fa9d055ee0a3…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15677
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ba570e102dd8229b79e4c5608234b2934e5fc781
https://github.com/phpmyadmin/phpmyadmin/commit/ba570e102dd8229b79e4c560823…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
Log Message:
-----------
Disable xdebug for selenium tests and for apidocs
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 823aad9ad6d7f2528a5424a0b11193858d79ef6d
https://github.com/phpmyadmin/phpmyadmin/commit/823aad9ad6d7f2528a5424a0b11…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M index.php
M libraries/classes/Charsets.php
Log Message:
-----------
Fix #15614 - Undefined offset on index page for MySQL 5.7.8
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: efbf84bdb18b0bbf89e9fc5bbe4f52cbbd359d7e
https://github.com/phpmyadmin/phpmyadmin/commit/efbf84bdb18b0bbf89e9fc5bbe4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M .travis.yml
M libraries/classes/Charsets.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bfe41c0434d0ac5aa348f1fd6bf787a51a413065
https://github.com/phpmyadmin/phpmyadmin/commit/bfe41c0434d0ac5aa348f1fd6bf…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15614
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0a783a464131ced2a3a48dbf8d0ffb8c4dd5d380
https://github.com/phpmyadmin/phpmyadmin/commit/0a783a464131ced2a3a48dbf8d0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-21 (Sat, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1a605524174666bd6364d92c8706038eeb6cd9d8
https://github.com/phpmyadmin/phpmyadmin/commit/1a605524174666bd6364d92c870…
Author: Nikhil Nagdev <nnagdev58(a)gmail.com>
Date: 2019-12-23 (Mon, 12 December 2019) +05:30
Changed paths:
M js/functions.js
Log Message:
-----------
Changed default time of datetime picker as current time
Signed-off-by: Nikhil Nagdev <nnagdev58(a)gmail.com>
Commit: 956f7010cbd5040eef6cd1b6947e5344ad62de04
https://github.com/phpmyadmin/phpmyadmin/commit/956f7010cbd5040eef6cd1b6947…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-12-23 (Mon, 12 December 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: e2553ac4aa94c1678f3bcc6145930f7a51669caf
https://github.com/phpmyadmin/phpmyadmin/commit/e2553ac4aa94c1678f3bcc61459…
Author: Olivier Humbert <trebmuh(a)tuxfamily.org>
Date: 2019-12-23 (Mon, 12 December 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/fr/
Signed-off-by: Olivier Humbert <trebmuh(a)tuxfamily.org>
Commit: 23e304ce0175e3f7289ece50f7adbb90cf92b71f
https://github.com/phpmyadmin/phpmyadmin/commit/23e304ce0175e3f7289ece50f7a…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-23 (Mon, 12 December 2019) -03:00
Changed paths:
M po/af.po
M po/am.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: e58e9149936f1501a3067a5e6cf8a7c1b0c12dd8
https://github.com/phpmyadmin/phpmyadmin/commit/e58e9149936f1501a3067a5e6cf…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-23 (Mon, 12 December 2019) -03:00
Changed paths:
M po/af.po
M po/am.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
Log Message:
-----------
Update po files
[CI skip]
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 9d3e7b97c5f33dcc1f6c16faa8ca424bd7c5ac29
https://github.com/phpmyadmin/phpmyadmin/commit/9d3e7b97c5f33dcc1f6c16faa8c…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-23 (Mon, 12 December 2019) -03:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 6deb9d8d558be47ec640632453fd70173ba9852e
https://github.com/phpmyadmin/phpmyadmin/commit/6deb9d8d558be47ec640632453f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-23 (Mon, 12 December 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/fr/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 188bda5945c0267fd6f40215abbf70cba474b749
https://github.com/phpmyadmin/phpmyadmin/commit/188bda5945c0267fd6f40215abb…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-23 (Mon, 12 December 2019) +01:00
Changed paths:
M po/fr.po
Log Message:
-----------
Translated using Weblate (French)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fr/
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: bc792b446d88dbb58c9e094db100ecfff957d35f
https://github.com/phpmyadmin/phpmyadmin/commit/bc792b446d88dbb58c9e094db10…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M js/server_status_queries.js
Log Message:
-----------
Fix #15692 - js error when user has not enough privilege to view query statistics.
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 51b6fe76fd338dd608c219e585e4629d30ed2ac4
https://github.com/phpmyadmin/phpmyadmin/commit/51b6fe76fd338dd608c219e585e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15692
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: d4794efbf88ffa3a8369023ce19e1803a92a59b1
https://github.com/phpmyadmin/phpmyadmin/commit/d4794efbf88ffa3a8369023ce19…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M js/server/status/queries.js
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0c80c0eaa3695865aa557fa0afd7c635d3a3aa4a
https://github.com/phpmyadmin/phpmyadmin/commit/0c80c0eaa3695865aa557fa0afd…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M test/classes/EncodingTest.php
Log Message:
-----------
Add a group to exclude a test on debian
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 49513022dff29e17c949b6a71377e320acf3742c
https://github.com/phpmyadmin/phpmyadmin/commit/49513022dff29e17c949b6a7137…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M test/classes/EncodingTest.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4de2fecc4aa6c24c8c61bed6f479bddec1208882
https://github.com/phpmyadmin/phpmyadmin/commit/4de2fecc4aa6c24c8c61bed6f47…
Author: Harsh Kukreja <harshkukreja99(a)gmail.com>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M themes/pmahomme/css/common.css.php
Log Message:
-----------
Datepicker z-index issue solved
Signed-off-by: Harsh Kukreja <harshkukreja99(a)gmail.com>
Commit: 6b71a7822a81a286d2213d262802c2f126327ba5
https://github.com/phpmyadmin/phpmyadmin/commit/6b71a7822a81a286d2213d26280…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M themes/pmahomme/css/common.css.php
Log Message:
-----------
Merge #15694 - Fix #14248 Date selection in search menu missing higher Z-index value
Pull-request: #15694
Fixes: #14248
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: e2dc9246159058389de9449f507dea06f749a4c9
https://github.com/phpmyadmin/phpmyadmin/commit/e2dc9246159058389de9449f507…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #14248
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: a6de41913911a5b53023511bb752bdc6a0e240f6
https://github.com/phpmyadmin/phpmyadmin/commit/a6de41913911a5b53023511bb75…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M themes/original/css/common.css.php
Log Message:
-----------
Fix #14248 - calendar z-index issue on theme original
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5b3d126b4f6c0a00abb123e83aa1063da0e9e9a5
https://github.com/phpmyadmin/phpmyadmin/commit/5b3d126b4f6c0a00abb123e83aa…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M themes/metro/scss/_common.scss
M themes/original/scss/_common.scss
M themes/pmahomme/scss/_common.scss
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 1f817e8690757a40ad65386f9b28fd5ff112a5cd
https://github.com/phpmyadmin/phpmyadmin/commit/1f817e8690757a40ad65386f9b2…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M libraries/tbl_columns_definition_form.inc.php
Log Message:
-----------
Fix Uncaught TypeError on php 8.0 when adding a column to table create form
"Uncaught TypeError: Expected parameter 1 to be an array, null given in tbl_columns_definition_form.inc.php:227"
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b9e9346a21389d8c6cbcf35ad680f51aa32fe6f5
https://github.com/phpmyadmin/phpmyadmin/commit/b9e9346a21389d8c6cbcf35ad68…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for 1f817e8690757a
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b8a6425f4e4f09e389a8065f6dd7459cf95183ed
https://github.com/phpmyadmin/phpmyadmin/commit/b8a6425f4e4f09e389a8065f6dd…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Merge #15685 - Fix #15682 - Timestamp method not taking current time
Pull-request: #15685
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 5c00acf88f91835f3324833b8e5d02fad71227e7
https://github.com/phpmyadmin/phpmyadmin/commit/5c00acf88f91835f3324833b8e5…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15682
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 103ea287ef04739a016d03a8402d617b804fac4b
https://github.com/phpmyadmin/phpmyadmin/commit/103ea287ef04739a016d03a8402…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M js/functions.js
M libraries/tbl_columns_definition_form.inc.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 54e202af5e61c57a7b4ba4ca28f22360d5a1e581
https://github.com/phpmyadmin/phpmyadmin/commit/54e202af5e61c57a7b4ba4ca28f…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Fix #15636 - Trying to access array offset on value o type null
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 0faa43af246e6b4d61ad4aa64642bbd07ea7dd24
https://github.com/phpmyadmin/phpmyadmin/commit/0faa43af246e6b4d61ad4aa6464…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15636
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ee6b388a4ee5304c6d648ef914ea0b87b230b47d
https://github.com/phpmyadmin/phpmyadmin/commit/ee6b388a4ee5304c6d648ef914e…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M libraries/classes/ReplicationGui.php
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: da537322997ba05572a1388b7212894c2cfd6e7b
https://github.com/phpmyadmin/phpmyadmin/commit/da537322997ba05572a1388b721…
Author: ssantos <ssantos(a)web.de>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 1a269779bc78602d069fef88eddfa56110ff0ebc
https://github.com/phpmyadmin/phpmyadmin/commit/1a269779bc78602d069fef88edd…
Author: ssantos <ssantos(a)web.de>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M po/de.po
Log Message:
-----------
Translated using Weblate (German)
Currently translated at 99.5% (3317 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/de/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 4ac4f268ec8066ee45b43fd311f4fea5dbdbe45e
https://github.com/phpmyadmin/phpmyadmin/commit/4ac4f268ec8066ee45b43fd311f…
Author: ssantos <ssantos(a)web.de>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3307 of 3307 strings)
[CI skip]
Translation: phpMyAdmin/4.9
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/4-9/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 9aef1e836c90ded73dfc902ecc450a1be3550d21
https://github.com/phpmyadmin/phpmyadmin/commit/9aef1e836c90ded73dfc902ecc4…
Author: ssantos <ssantos(a)web.de>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M po/pt.po
Log Message:
-----------
Translated using Weblate (Portuguese)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/pt/
Signed-off-by: ssantos <ssantos(a)web.de>
Commit: 120b5587680ab3278f1e01eaa5183c8303f92cbc
https://github.com/phpmyadmin/phpmyadmin/commit/120b5587680ab3278f1e01eaa51…
Author: dingo thirteen <dingo13(a)d404.nl>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M po/nl.po
Log Message:
-----------
Translated using Weblate (Dutch)
Currently translated at 100.0% (3332 of 3332 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/nl/
Signed-off-by: dingo thirteen <dingo13(a)d404.nl>
Commit: f4c6ec504c993667b1a72d7ff2b224293b5f0a7b
https://github.com/phpmyadmin/phpmyadmin/commit/f4c6ec504c993667b1a72d7ff2b…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M db_export.php
Log Message:
-----------
Fix #15697 - Uncaught Error: Call to a member function get() on null in db_export.php
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 9f5bd8a01801d9c7cb9588ba9e0f0895bad40898
https://github.com/phpmyadmin/phpmyadmin/commit/9f5bd8a01801d9c7cb9588ba9e0…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15697
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 3f2fb42a5c3bf4c86bbc232cfd4f23da481cef5f
https://github.com/phpmyadmin/phpmyadmin/commit/3f2fb42a5c3bf4c86bbc232cfd4…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-25 (Wed, 12 December 2019) +01:00
Changed paths:
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 4348fe071d176a1b39ef853f618877bf4c3c1aa1
https://github.com/phpmyadmin/phpmyadmin/commit/4348fe071d176a1b39ef853f618…
Author: Yash Bothra <yashrajbothra786(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) +05:30
Changed paths:
M js/functions.js
Log Message:
-----------
#15695 added timeInput datepicker option
Signed-off-by: Yash Bothra <yashrajbothra786(a)gmail.com>
Commit: 99f2c9e4aaddbe9f49fa81d7b03a1d22f2a79e85
https://github.com/phpmyadmin/phpmyadmin/commit/99f2c9e4aaddbe9f49fa81d7b03…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M templates/display/import/javascript.twig
Log Message:
-----------
Fix import status URLs
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 567c21312c74b3c940631452848e5c10bb9990a1
https://github.com/phpmyadmin/phpmyadmin/commit/567c21312c74b3c940631452848…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M js/functions.js
Log Message:
-----------
Merge #15708 - Fixes #15695 - Input field for the time in datetime picker is disabled
Pull-request: #15708
Fixes: #15695
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ed932e87d6e06c35c8c3075f1fa313ec1d7fcfce
https://github.com/phpmyadmin/phpmyadmin/commit/ed932e87d6e06c35c8c3075f1fa…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
Log Message:
-----------
Add ChangeLog entry for #15695
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: 894f6903ba9c858d07407f811d94475fc6b0aa08
https://github.com/phpmyadmin/phpmyadmin/commit/894f6903ba9c858d07407f811d9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M ChangeLog
M js/functions.js
M templates/display/import/javascript.twig
Log Message:
-----------
Merge branch 'QA_4_9' into QA_5_0
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: ed048bd10f42dcbfbb628718e06f851b88f11b86
https://github.com/phpmyadmin/phpmyadmin/commit/ed048bd10f42dcbfbb628718e06…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 4.9.3
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: be969e94b36b08a4c8b1de9aae8ea7384b342a1b
https://github.com/phpmyadmin/phpmyadmin/commit/be969e94b36b08a4c8b1de9aae8…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
Log Message:
-----------
Fix merge conflicts
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 0f159139c3c3794ec7007e9163486d8edf2412f8
https://github.com/phpmyadmin/phpmyadmin/commit/0f159139c3c3794ec7007e91634…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 5.0.0
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: f4b113872b20149f944f80c7090bc09a9b768def
https://github.com/phpmyadmin/phpmyadmin/commit/f4b113872b20149f944f80c7090…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 4.9.3
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: d097753382f376556817a255e1be4c7c9bc3178b
https://github.com/phpmyadmin/phpmyadmin/commit/d097753382f376556817a255e1b…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
D composer.lock
Log Message:
-----------
Removing composer.lock
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 4fc0e8af3f5def8b4f0f608e73d0281b4177b809
https://github.com/phpmyadmin/phpmyadmin/commit/4fc0e8af3f5def8b4f0f608e73d…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A po/am.po
M .travis.yml
M ChangeLog
M README
M composer.json
M db_designer.php
M doc/conf.py
M doc/config.rst
M doc/faq.rst
M doc/glossary.rst
M doc/require.rst
M doc/setup.rst
M doc/transformations.rst
M index.php
M js/functions.js
M js/navigation.js
M js/server_status_queries.js
M libraries/classes/Bookmark.php
M libraries/classes/Charsets.php
M libraries/classes/Config.php
M libraries/classes/Controllers/Table/TableRelationController.php
M libraries/classes/Database/DatabaseList.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Display/Results.php
M libraries/classes/Error.php
M libraries/classes/ErrorHandler.php
M libraries/classes/InsertEdit.php
M libraries/classes/IpAllowDeny.php
M libraries/classes/LanguageManager.php
M libraries/classes/Plugins/Export/ExportPhparray.php
M libraries/classes/Plugins/Schema/Dia/Dia.php
M libraries/classes/Plugins/Schema/Eps/Eps.php
M libraries/classes/Plugins/Schema/Svg/Svg.php
M libraries/classes/Plugins/Transformations/TEMPLATE_ABSTRACT
M libraries/classes/ReplicationGui.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Session.php
M libraries/classes/Sql.php
M libraries/classes/Util.php
M libraries/common.inc.php
M libraries/tbl_columns_definition_form.inc.php
M package.json
M phpcs.xml.dist
M po/af.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
M show_config_errors.php
M tbl_change.php
M templates/columns_definitions/column_attributes.twig
M templates/columns_definitions/column_virtuality.twig
M templates/columns_definitions/partitions.twig
M templates/database/designer/js_fields.twig
M templates/database/multi_table_query/form.twig
M templates/database/tracking/untracked_tables.twig
M templates/display/export/options_rows.twig
M templates/display/import/javascript.twig
M templates/privileges/initials_row.twig
M templates/server/databases/databases_footer.twig
M templates/server/databases/table_header.twig
M templates/server/databases/table_row.twig
M test/classes/ConfigTest.php
M test/classes/EncodingTest.php
M test/classes/InsertEditTest.php
M test/classes/Rte/RoutinesTest.php
M themes/original/css/common.css.php
M themes/pmahomme/css/common.css.php
Log Message:
-----------
Merge branch 'QA_4_9' into STABLE
Commit: c124aacc32329f69f3e8189c61c5d82f6d9fcd47
https://github.com/phpmyadmin/phpmyadmin/commit/c124aacc32329f69f3e8189c61c…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 5.0.0
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 96a06cef33aac590cd26c8897ed4cbdfa6fa8425
https://github.com/phpmyadmin/phpmyadmin/commit/96a06cef33aac590cd26c8897ed…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
D composer.lock
Log Message:
-----------
Removing composer.lock
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: fda8a1b2dae8f596a7ea88839d8a35b6ce997fc1
https://github.com/phpmyadmin/phpmyadmin/commit/fda8a1b2dae8f596a7ea88839d8…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A .github/FUNDING.yml
A .github/ISSUE_TEMPLATE/bug_report.md
A .github/ISSUE_TEMPLATE/feature_request.md
A .github/ISSUE_TEMPLATE/security_report.md
A .stylelintrc.json
A js/database/central_columns.js
A js/database/multi_table_query.js
A js/database/operations.js
A js/database/qbe.js
A js/database/query_generator.js
A js/database/search.js
A js/database/structure.js
A js/database/tracking.js
A js/drag_drop_import.js
A js/menu_resizer.js
A js/server/databases.js
A js/server/plugins.js
A js/server/privileges.js
A js/server/status/advisor.js
A js/server/status/monitor.js
A js/server/status/processes.js
A js/server/status/queries.js
A js/server/status/sorter.js
A js/server/status/variables.js
A js/server/user_groups.js
A js/server/variables.js
A js/setup/ajax.js
A js/setup/scripts.js
A js/table/change.js
A js/table/chart.js
A js/table/find_replace.js
A js/table/gis_visualization.js
A js/table/operations.js
A js/table/relation.js
A js/table/select.js
A js/table/structure.js
A js/table/tracking.js
A js/table/zoom_plot_jqplot.js
A js/vendor/bootstrap/bootstrap.bundle.min.js
A js/vendor/bootstrap/bootstrap.bundle.min.js.map
A js/vendor/jquery/jquery.min.map
A libraries/classes/Charsets/Charset.php
A libraries/classes/Charsets/Collation.php
A libraries/classes/Config/SpecialSchemaLinks.php
A libraries/classes/Controllers/AbstractController.php
A libraries/classes/Controllers/AjaxController.php
A libraries/classes/Controllers/BrowseForeignersController.php
A libraries/classes/Controllers/Database/AbstractController.php
A libraries/classes/Controllers/Database/CentralColumnsController.php
A libraries/classes/Controllers/Database/DataDictionaryController.php
A libraries/classes/Controllers/Database/EventsController.php
A libraries/classes/Controllers/Database/MultiTableQueryController.php
A libraries/classes/Controllers/Database/RoutinesController.php
A libraries/classes/Controllers/Database/SqlController.php
A libraries/classes/Controllers/Database/StructureController.php
A libraries/classes/Controllers/Database/TriggersController.php
A libraries/classes/Controllers/HomeController.php
A libraries/classes/Controllers/Server/BinlogController.php
A libraries/classes/Controllers/Server/CollationsController.php
A libraries/classes/Controllers/Server/DatabasesController.php
A libraries/classes/Controllers/Server/EnginesController.php
A libraries/classes/Controllers/Server/PluginsController.php
A libraries/classes/Controllers/Server/ReplicationController.php
A libraries/classes/Controllers/Server/SqlController.php
A libraries/classes/Controllers/Server/Status/AbstractController.php
A libraries/classes/Controllers/Server/Status/AdvisorController.php
A libraries/classes/Controllers/Server/Status/MonitorController.php
A libraries/classes/Controllers/Server/Status/ProcessesController.php
A libraries/classes/Controllers/Server/Status/QueriesController.php
A libraries/classes/Controllers/Server/Status/StatusController.php
A libraries/classes/Controllers/Server/Status/VariablesController.php
A libraries/classes/Controllers/Server/VariablesController.php
A libraries/classes/Controllers/Setup/AbstractController.php
A libraries/classes/Controllers/Setup/ConfigController.php
A libraries/classes/Controllers/Setup/FormController.php
A libraries/classes/Controllers/Setup/HomeController.php
A libraries/classes/Controllers/Setup/ServersController.php
A libraries/classes/Controllers/Table/AbstractController.php
A libraries/classes/Controllers/Table/ChartController.php
A libraries/classes/Controllers/Table/GisVisualizationController.php
A libraries/classes/Controllers/Table/IndexesController.php
A libraries/classes/Controllers/Table/RelationController.php
A libraries/classes/Controllers/Table/SearchController.php
A libraries/classes/Controllers/Table/SqlController.php
A libraries/classes/Controllers/Table/StructureController.php
A libraries/classes/Controllers/TransformationOverviewController.php
A libraries/classes/Di/Migration.php
A libraries/classes/Display/Error.php
A libraries/classes/InternalRelations.php
A libraries/classes/Server/Plugin.php
A libraries/classes/Server/Plugins.php
A libraries/classes/Setup/ConfigGenerator.php
A libraries/classes/Setup/FormProcessing.php
A libraries/classes/Setup/Index.php
A libraries/classes/TablePartitionDefinition.php
A libraries/classes/UserPreferencesHeader.php
A phpstan.neon.dist
A scripts/set-version.sh
A services.yml
A services_controllers.yml
A templates/changelog.twig
A templates/create_tracking_version.twig
A templates/database/central_columns/main.twig
A templates/database/data_dictionary/index.twig
A templates/database/designer/main.twig
A templates/database/search/main.twig
A templates/database/structure/index.twig
A templates/database/tracking/tables.twig
A templates/display/results/data_for_resetting_column_order.twig
A templates/display/results/page_selector.twig
A templates/display/results/sort_by_key.twig
A templates/display/results/table.twig
A templates/display/results/table_headers.twig
A templates/display/results/table_navigation.twig
A templates/error/generic.twig
A templates/footer.twig
A templates/gis_data_editor_form.twig
A templates/header.twig
A templates/home/index.twig
A templates/navigation/item_unhide_dialog.twig
A templates/navigation/main.twig
A templates/navigation/tree/database_select.twig
A templates/navigation/tree/path.twig
A templates/navigation/tree/state.twig
A templates/preferences/autoload.twig
A templates/preferences/forms/main.twig
A templates/preferences/manage/error.twig
A templates/preferences/manage/main.twig
A templates/preferences/two_factor/configure.twig
A templates/preferences/two_factor/confirm.twig
A templates/preferences/two_factor/main.twig
A templates/rte/routines/parameter_row.twig
A templates/scripts.twig
A templates/server/binlog/index.twig
A templates/server/collations/index.twig
A templates/server/engines/index.twig
A templates/server/engines/show.twig
A templates/server/plugins/index.twig
A templates/server/privileges/add_user_fieldset.twig
A templates/server/privileges/choose_user_group.twig
A templates/server/privileges/column_privileges.twig
A templates/server/privileges/delete_user_fieldset.twig
A templates/server/privileges/edit_routine_privileges.twig
A templates/server/privileges/global_priv_table.twig
A templates/server/privileges/initials_row.twig
A templates/server/privileges/privileges_summary.twig
A templates/server/privileges/require_options.twig
A templates/server/privileges/resource_limits.twig
A templates/server/replication/change_master.twig
A templates/server/replication/database_multibox.twig
A templates/server/replication/index.twig
A templates/server/replication/master_add_slave_user.twig
A templates/server/replication/master_configuration.twig
A templates/server/replication/master_replication.twig
A templates/server/replication/slave_configuration.twig
A templates/server/replication/status_table.twig
A templates/server/status/advisor/index.twig
A templates/server/status/base.twig
A templates/server/status/monitor/index.twig
A templates/server/status/processes/index.twig
A templates/server/status/processes/list.twig
A templates/server/status/queries/index.twig
A templates/server/status/status/index.twig
A templates/server/status/variables/index.twig
A templates/server/variables/index.twig
A templates/setup/base.twig
A templates/setup/config/index.twig
A templates/setup/error.twig
A templates/setup/form/index.twig
A templates/setup/home/index.twig
A templates/setup/servers/index.twig
A templates/sql/bookmark.twig
A templates/sql/detailed_table.twig
A templates/sql/enum_column_dropdown.twig
A templates/sql/profiling_chart.twig
A templates/sql/relational_column_dropdown.twig
A templates/sql/set_column.twig
A templates/sql/sql_query_results.twig
A templates/table/operations/view.twig
A templates/table/page_with_secondary_tabs.twig
A templates/table/tracking/main.twig
A templates/themes.twig
A templates/transformation_overview.twig
A test/EnvironmentTest.php
A test/bootstrap-phpstan.php
A test/ci-phplint
A test/classes/Charsets/CharsetTest.php
A test/classes/Charsets/CollationTest.php
A test/classes/Controllers/Database/StructureControllerTest.php
A test/classes/Controllers/Server/BinlogControllerTest.php
A test/classes/Controllers/Server/CollationsControllerTest.php
A test/classes/Controllers/Server/DatabasesControllerTest.php
A test/classes/Controllers/Server/EnginesControllerTest.php
A test/classes/Controllers/Server/PluginsControllerTest.php
A test/classes/Controllers/Server/Status/AdvisorControllerTest.php
A test/classes/Controllers/Server/Status/MonitorControllerTest.php
A test/classes/Controllers/Server/Status/ProcessesControllerTest.php
A test/classes/Controllers/Server/Status/QueriesControllerTest.php
A test/classes/Controllers/Server/Status/StatusControllerTest.php
A test/classes/Controllers/Server/Status/VariablesControllerTest.php
A test/classes/Controllers/Server/VariablesControllerTest.php
A test/classes/Controllers/Table/IndexesControllerTest.php
A test/classes/Controllers/Table/RelationControllerTest.php
A test/classes/Controllers/Table/SearchControllerTest.php
A test/classes/Controllers/Table/StructureControllerTest.php
A test/classes/Controllers/TransformationOverviewControllerTest.php
A test/classes/Dbi/DbiDummyTest.php
A test/classes/Display/ErrorTest.php
A test/classes/ErrorReportTest.php
A test/classes/FileListingTest.php
A test/classes/Server/PluginTest.php
A test/classes/Server/PluginsTest.php
A test/classes/Stubs/DbiDummy.php
A test/classes/UserPreferencesHeaderTest.php
A test/libraries/FilesTest.php
A test/libraries/common/GetCheckboxTest.php
A test/sami-config.php
A test/selenium/Database/EventsTest.php
A test/selenium/Database/OperationsTest.php
A test/selenium/Database/ProceduresTest.php
A test/selenium/Database/QueryByExampleTest.php
A test/selenium/Database/StructureTest.php
A test/selenium/Database/TriggersTest.php
A test/selenium/Table/BrowseTest.php
A test/selenium/Table/CreateTest.php
A test/selenium/Table/InsertTest.php
A test/selenium/Table/OperationsTest.php
A test/selenium/Table/StructureTest.php
A themes/metro/css/.gitignore
A themes/metro/fonts/IcoMoon.eot
A themes/metro/fonts/IcoMoon.svg
A themes/metro/fonts/IcoMoon.ttf
A themes/metro/fonts/IcoMoon.woff
A themes/metro/fonts/opensans-bold-webfont.eot
A themes/metro/fonts/opensans-bold-webfont.ttf
A themes/metro/fonts/opensans-bold-webfont.woff
A themes/metro/fonts/opensans-extrabold-webfont.eot
A themes/metro/fonts/opensans-extrabold-webfont.ttf
A themes/metro/fonts/opensans-extrabold-webfont.woff
A themes/metro/fonts/opensans-light-webfont.eot
A themes/metro/fonts/opensans-light-webfont.ttf
A themes/metro/fonts/opensans-light-webfont.woff
A themes/metro/fonts/opensans-regular-webfont.eot
A themes/metro/fonts/opensans-regular-webfont.ttf
A themes/metro/fonts/opensans-regular-webfont.woff
A themes/metro/img/ajax_clock_small.gif
A themes/metro/img/arrow_ltr.png
A themes/metro/img/arrow_rtl.png
A themes/metro/img/asc_order.png
A themes/metro/img/b_bookmark.png
A themes/metro/img/b_browse.png
A themes/metro/img/b_calendar.png
A themes/metro/img/b_chart.png
A themes/metro/img/b_close.png
A themes/metro/img/b_column_add.png
A themes/metro/img/b_comment.png
A themes/metro/img/b_dbstatistics.png
A themes/metro/img/b_deltbl.png
A themes/metro/img/b_docs.png
A themes/metro/img/b_docsql.png
A themes/metro/img/b_drop.png
A themes/metro/img/b_edit.png
A themes/metro/img/b_empty.png
A themes/metro/img/b_engine.png
A themes/metro/img/b_event_add.png
A themes/metro/img/b_events.png
A themes/metro/img/b_export.png
A themes/metro/img/b_favorite.png
A themes/metro/img/b_find_replace.png
A themes/metro/img/b_firstpage.png
A themes/metro/img/b_ftext.png
A themes/metro/img/b_globe.gif
A themes/metro/img/b_group.png
A themes/metro/img/b_help.png
A themes/metro/img/b_home.png
A themes/metro/img/b_import.png
A themes/metro/img/b_index.png
A themes/metro/img/b_index_add.png
A themes/metro/img/b_info.png
A themes/metro/img/b_inline_edit.png
A themes/metro/img/b_insrow.png
A themes/metro/img/b_key.png
A themes/metro/img/b_lastpage.png
A themes/metro/img/b_minus.png
A themes/metro/img/b_more.png
A themes/metro/img/b_move.png
A themes/metro/img/b_newdb.png
A themes/metro/img/b_newtbl.png
A themes/metro/img/b_nextpage.png
A themes/metro/img/b_no_favorite.png
A themes/metro/img/b_pdfdoc.png
A themes/metro/img/b_plugin.png
A themes/metro/img/b_plus.png
A themes/metro/img/b_prevpage.png
A themes/metro/img/b_primary.png
A themes/metro/img/b_print.png
A themes/metro/img/b_props.png
A themes/metro/img/b_relations.png
A themes/metro/img/b_report.png
A themes/metro/img/b_routine_add.png
A themes/metro/img/b_routines.png
A themes/metro/img/b_save.png
A themes/metro/img/b_saveimage.png
A themes/metro/img/b_sbrowse.png
A themes/metro/img/b_sdb.png
A themes/metro/img/b_search.png
A themes/metro/img/b_select.png
A themes/metro/img/b_snewtbl.png
A themes/metro/img/b_spatial.png
A themes/metro/img/b_sql.png
A themes/metro/img/b_sqldoc.png
A themes/metro/img/b_sqlhelp.png
A themes/metro/img/b_table_add.png
A themes/metro/img/b_tblanalyse.png
A themes/metro/img/b_tblexport.png
A themes/metro/img/b_tblimport.png
A themes/metro/img/b_tblops.png
A themes/metro/img/b_tbloptimize.png
A themes/metro/img/b_tipp.png
A themes/metro/img/b_trigger_add.png
A themes/metro/img/b_triggers.png
A themes/metro/img/b_unique.png
A themes/metro/img/b_usradd.png
A themes/metro/img/b_usrcheck.png
A themes/metro/img/b_usrdrop.png
A themes/metro/img/b_usredit.png
A themes/metro/img/b_usrlist.png
A themes/metro/img/b_versions.png
A themes/metro/img/b_view.png
A themes/metro/img/b_view_add.png
A themes/metro/img/b_views.png
A themes/metro/img/bd_browse.png
A themes/metro/img/bd_deltbl.png
A themes/metro/img/bd_drop.png
A themes/metro/img/bd_edit.png
A themes/metro/img/bd_empty.png
A themes/metro/img/bd_export.png
A themes/metro/img/bd_firstpage.png
A themes/metro/img/bd_ftext.png
A themes/metro/img/bd_index.png
A themes/metro/img/bd_insrow.png
A themes/metro/img/bd_lastpage.png
A themes/metro/img/bd_nextpage.png
A themes/metro/img/bd_prevpage.png
A themes/metro/img/bd_primary.png
A themes/metro/img/bd_routine_add.png
A themes/metro/img/bd_sbrowse.png
A themes/metro/img/bd_select.png
A themes/metro/img/bd_spatial.png
A themes/metro/img/bd_unique.png
A themes/metro/img/centralColumns.png
A themes/metro/img/centralColumns_add.png
A themes/metro/img/centralColumns_delete.png
A themes/metro/img/col_drop.png
A themes/metro/img/col_pointer.png
A themes/metro/img/col_pointer_ver.png
A themes/metro/img/console.png
A themes/metro/img/database.png
A themes/metro/img/designer/2leftarrow.png
A themes/metro/img/designer/2leftarrow_m.png
A themes/metro/img/designer/2rightarrow.png
A themes/metro/img/designer/2rightarrow_m.png
A themes/metro/img/designer/FieldKey_small.png
A themes/metro/img/designer/Field_small.png
A themes/metro/img/designer/Field_small_char.png
A themes/metro/img/designer/Field_small_date.png
A themes/metro/img/designer/Field_small_int.png
A themes/metro/img/designer/Header_Linked.png
A themes/metro/img/designer/anchor.png
A themes/metro/img/designer/and_icon.png
A themes/metro/img/designer/ang_direct.png
A themes/metro/img/designer/bord.png
A themes/metro/img/designer/bottom.png
A themes/metro/img/designer/def.png
A themes/metro/img/designer/display_field.png
A themes/metro/img/designer/downarrow1.png
A themes/metro/img/designer/downarrow2.png
A themes/metro/img/designer/downarrow2_m.png
A themes/metro/img/designer/exec.png
A themes/metro/img/designer/exec_small.png
A themes/metro/img/designer/exitFullscreen.png
A themes/metro/img/designer/export.png
A themes/metro/img/designer/favicon.ico
A themes/metro/img/designer/grid.png
A themes/metro/img/designer/help.png
A themes/metro/img/designer/help_relation.png
A themes/metro/img/designer/left_panel_butt.png
A themes/metro/img/designer/left_panel_tab.png
A themes/metro/img/designer/minus.png
A themes/metro/img/designer/or_icon.png
A themes/metro/img/designer/page_add.png
A themes/metro/img/designer/page_delete.png
A themes/metro/img/designer/page_edit.png
A themes/metro/img/designer/pdf.png
A themes/metro/img/designer/plus.png
A themes/metro/img/designer/query_builder.png
A themes/metro/img/designer/relation.png
A themes/metro/img/designer/reload.png
A themes/metro/img/designer/resize.png
A themes/metro/img/designer/resizeright.png
A themes/metro/img/designer/rightarrow1.png
A themes/metro/img/designer/rightarrow2.png
A themes/metro/img/designer/save.png
A themes/metro/img/designer/save_as.png
A themes/metro/img/designer/table.png
A themes/metro/img/designer/toggle_lines.png
A themes/metro/img/designer/uparrow2_m.png
A themes/metro/img/designer/viewInFullscreen.png
A themes/metro/img/docs_menu_bg.png
A themes/metro/img/east-mini.png
A themes/metro/img/error.ico
A themes/metro/img/eye.png
A themes/metro/img/eye_grey.png
A themes/metro/img/hide.png
A themes/metro/img/item.png
A themes/metro/img/item_ltr.png
A themes/metro/img/item_rtl.png
A themes/metro/img/lightbulb.png
A themes/metro/img/lightbulb_off.png
A themes/metro/img/more.png
A themes/metro/img/new_data.png
A themes/metro/img/new_data_hovered.png
A themes/metro/img/new_data_selected.png
A themes/metro/img/new_data_selected_hovered.png
A themes/metro/img/new_struct.png
A themes/metro/img/new_struct_hovered.png
A themes/metro/img/new_struct_selected.png
A themes/metro/img/new_struct_selected_hovered.png
A themes/metro/img/normalize.png
A themes/metro/img/north-mini.png
A themes/metro/img/pause.png
A themes/metro/img/php_sym.png
A themes/metro/img/play.png
A themes/metro/img/pma_logo.png
A themes/metro/img/pma_logo2.png
A themes/metro/img/s_asc.png
A themes/metro/img/s_asci.png
A themes/metro/img/s_attention.png
A themes/metro/img/s_cancel.png
A themes/metro/img/s_cancel2.png
A themes/metro/img/s_cog.png
A themes/metro/img/s_collapseall.png
A themes/metro/img/s_db.png
A themes/metro/img/s_desc.png
A themes/metro/img/s_error.png
A themes/metro/img/s_error2.png
A themes/metro/img/s_fulltext.png
A themes/metro/img/s_host.png
A themes/metro/img/s_info.png
A themes/metro/img/s_lang.png
A themes/metro/img/s_link.png
A themes/metro/img/s_lock.png
A themes/metro/img/s_loggoff.png
A themes/metro/img/s_notice.png
A themes/metro/img/s_okay.png
A themes/metro/img/s_partialtext.png
A themes/metro/img/s_passwd.png
A themes/metro/img/s_process.png
A themes/metro/img/s_really.png
A themes/metro/img/s_reload.png
A themes/metro/img/s_replication.png
A themes/metro/img/s_rights.png
A themes/metro/img/s_sortable.png
A themes/metro/img/s_status.png
A themes/metro/img/s_success.png
A themes/metro/img/s_sync.png
A themes/metro/img/s_tbl.png
A themes/metro/img/s_theme.png
A themes/metro/img/s_top.png
A themes/metro/img/s_unlink.png
A themes/metro/img/s_vars.png
A themes/metro/img/s_views.png
A themes/metro/img/show.png
A themes/metro/img/south-mini.png
A themes/metro/img/spacer.png
A themes/metro/img/sprites.png
A themes/metro/img/toggle-ltr.png
A themes/metro/img/toggle-rtl.png
A themes/metro/img/vertical_line.png
A themes/metro/img/west-mini.png
A themes/metro/img/window-new.png
A themes/metro/img/zoom-minus-mini.png
A themes/metro/img/zoom-plus-mini.png
A themes/metro/img/zoom-world-mini.png
A themes/metro/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png
A themes/metro/jquery/images/ui-bg_glass_65_ffffff_1x400.png
A themes/metro/jquery/images/ui-bg_glass_75_dadada_1x400.png
A themes/metro/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png
A themes/metro/jquery/images/ui-bg_glass_95_fef1ec_1x400.png
A themes/metro/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
A themes/metro/jquery/images/ui-icons_222222_256x240.png
A themes/metro/jquery/images/ui-icons_2e83ff_256x240.png
A themes/metro/jquery/images/ui-icons_454545_256x240.png
A themes/metro/jquery/images/ui-icons_888888_256x240.png
A themes/metro/jquery/images/ui-icons_cd0a0a_256x240.png
A themes/metro/jquery/jquery-ui.css
A themes/metro/screen.png
A themes/metro/scss/_codemirror.scss
A themes/metro/scss/_common.scss
A themes/metro/scss/_designer.scss
A themes/metro/scss/_enum-editor.scss
A themes/metro/scss/_gis.scss
A themes/metro/scss/_icons.scss
A themes/metro/scss/_jqplot.scss
A themes/metro/scss/_navigation.scss
A themes/metro/scss/_resizable-menu.scss
A themes/metro/scss/_rte.scss
A themes/metro/scss/_variables.scss
A themes/metro/scss/blueeyes-theme-rtl.scss
A themes/metro/scss/blueeyes-theme.scss
A themes/metro/scss/mono-theme-rtl.scss
A themes/metro/scss/mono-theme.scss
A themes/metro/scss/printview.scss
A themes/metro/scss/redmond-theme-rtl.scss
A themes/metro/scss/redmond-theme.scss
A themes/metro/scss/teal-theme-rtl.scss
A themes/metro/scss/teal-theme.scss
A themes/metro/scss/theme-rtl.scss
A themes/metro/scss/theme.scss
A themes/metro/theme.json
A themes/original/css/.gitignore
A themes/original/img/b_left.png
A themes/original/img/b_right.png
A themes/original/scss/_common.scss
A themes/original/scss/_icons.scss
A themes/original/scss/_navigation.scss
A themes/original/scss/_variables.scss
A themes/original/scss/printview.scss
A themes/original/scss/theme-rtl.scss
A themes/original/scss/theme.scss
A themes/pmahomme/css/.gitignore
A themes/pmahomme/scss/_bootstrap.scss
A themes/pmahomme/scss/_codemirror.scss
A themes/pmahomme/scss/_common.scss
A themes/pmahomme/scss/_designer.scss
A themes/pmahomme/scss/_direction.scss
A themes/pmahomme/scss/_enum-editor.scss
A themes/pmahomme/scss/_gis.scss
A themes/pmahomme/scss/_icons.scss
A themes/pmahomme/scss/_jqplot.scss
A themes/pmahomme/scss/_navigation.scss
A themes/pmahomme/scss/_resizable-menu.scss
A themes/pmahomme/scss/_rte.scss
A themes/pmahomme/scss/_variables.scss
A themes/pmahomme/scss/printview.scss
A themes/pmahomme/scss/theme-rtl.scss
A themes/pmahomme/scss/theme.scss
M .editorconfig
M .eslintrc.json
M .github/PULL_REQUEST_TEMPLATE.md
M .gitignore
M .scrutinizer.yml
M .travis.yml
M CONTRIBUTING.md
M ChangeLog
M README
M ajax.php
M browse_foreigners.php
M build.xml
M changelog.php
M chk_rel.php
M composer.json
M config.sample.inc.php
M db_central_columns.php
M db_datadict.php
M db_designer.php
M db_events.php
M db_export.php
M db_import.php
M db_multi_table_query.php
M db_operations.php
M db_qbe.php
M db_routines.php
M db_search.php
M db_sql.php
M db_sql_autocomplete.php
M db_sql_format.php
M db_structure.php
M db_tracking.php
M db_triggers.php
M doc/conf.py
M doc/config.rst
M doc/credits.rst
M doc/faq.rst
M doc/glossary.rst
M doc/require.rst
M doc/setup.rst
M doc/two_factor.rst
M doc/vendors.rst
M error_report.php
M examples/config.manyhosts.inc.php
M examples/openid.php
M examples/signon-script.php
M examples/signon.php
M export.php
M gis_data_editor.php
M import.php
M import_status.php
M index.php
M js/ajax.js
M js/chart.js
M js/codemirror/addon/lint/sql-lint.js
M js/common.js
M js/config.js
M js/console.js
M js/cross_framing_protection.js
M js/designer/database.js
M js/designer/history.js
M js/designer/init.js
M js/designer/move.js
M js/designer/objects.js
M js/designer/page.js
M js/doclinks.js
M js/error_report.js
M js/export.js
M js/export_output.js
M js/functions.js
M js/gis_data_editor.js
M js/import.js
M js/indexes.js
M js/jqplot/plugins/jqplot.byteFormatter.js
M js/keyhandler.js
M js/makegrid.js
M js/messages.php
M js/microhistory.js
M js/multi_column_sort.js
M js/navigation.js
M js/normalization.js
M js/page_settings.js
M js/replication.js
M js/rte.js
M js/shortcuts_handler.js
M js/sql.js
M js/transformations/image_upload.js
M js/transformations/sql_editor.js
M js/u2f.js
M js/vendor/u2f-api-polyfill.js
M js/whitelist.php
M libraries/advisory_rules_generic.txt
M libraries/classes/Advisor.php
M libraries/classes/Bookmark.php
M libraries/classes/BrowseForeigners.php
M libraries/classes/CentralColumns.php
M libraries/classes/Charsets.php
M libraries/classes/CheckUserPrivileges.php
M libraries/classes/Config.php
M libraries/classes/Config/ConfigFile.php
M libraries/classes/Config/Descriptions.php
M libraries/classes/Config/Form.php
M libraries/classes/Config/FormDisplay.php
M libraries/classes/Config/FormDisplayTemplate.php
M libraries/classes/Config/Forms/BaseForm.php
M libraries/classes/Config/Forms/BaseFormList.php
M libraries/classes/Config/Forms/Page/BrowseForm.php
M libraries/classes/Config/Forms/Page/DbStructureForm.php
M libraries/classes/Config/Forms/Page/EditForm.php
M libraries/classes/Config/Forms/Page/ExportForm.php
M libraries/classes/Config/Forms/Page/ImportForm.php
M libraries/classes/Config/Forms/Page/NaviForm.php
M libraries/classes/Config/Forms/Page/PageFormList.php
M libraries/classes/Config/Forms/Page/SqlForm.php
M libraries/classes/Config/Forms/Page/TableStructureForm.php
M libraries/classes/Config/Forms/Setup/ConfigForm.php
M libraries/classes/Config/Forms/Setup/ExportForm.php
M libraries/classes/Config/Forms/Setup/FeaturesForm.php
M libraries/classes/Config/Forms/Setup/ImportForm.php
M libraries/classes/Config/Forms/Setup/MainForm.php
M libraries/classes/Config/Forms/Setup/NaviForm.php
M libraries/classes/Config/Forms/Setup/ServersForm.php
M libraries/classes/Config/Forms/Setup/SetupFormList.php
M libraries/classes/Config/Forms/Setup/SqlForm.php
M libraries/classes/Config/Forms/User/ExportForm.php
M libraries/classes/Config/Forms/User/FeaturesForm.php
M libraries/classes/Config/Forms/User/ImportForm.php
M libraries/classes/Config/Forms/User/MainForm.php
M libraries/classes/Config/Forms/User/NaviForm.php
M libraries/classes/Config/Forms/User/SqlForm.php
M libraries/classes/Config/Forms/User/UserFormList.php
M libraries/classes/Config/PageSettings.php
M libraries/classes/Config/ServerConfigChecks.php
M libraries/classes/Config/Validator.php
M libraries/classes/Console.php
M libraries/classes/Core.php
M libraries/classes/CreateAddField.php
M libraries/classes/Database/DatabaseList.php
M libraries/classes/Database/Designer.php
M libraries/classes/Database/Designer/Common.php
M libraries/classes/Database/Designer/DesignerTable.php
M libraries/classes/Database/MultiTableQuery.php
M libraries/classes/Database/Qbe.php
M libraries/classes/Database/Search.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbi/DbiExtension.php
M libraries/classes/Dbi/DbiMysqli.php
M libraries/classes/Display/ChangePassword.php
M libraries/classes/Display/CreateTable.php
M libraries/classes/Display/Export.php
M libraries/classes/Display/GitRevision.php
M libraries/classes/Display/Import.php
M libraries/classes/Display/ImportAjax.php
M libraries/classes/Display/Results.php
M libraries/classes/Encoding.php
M libraries/classes/Engines/Bdb.php
M libraries/classes/Engines/Berkeleydb.php
M libraries/classes/Engines/Binlog.php
M libraries/classes/Engines/Innobase.php
M libraries/classes/Engines/Innodb.php
M libraries/classes/Engines/Memory.php
M libraries/classes/Engines/Merge.php
M libraries/classes/Engines/MrgMyisam.php
M libraries/classes/Engines/Myisam.php
M libraries/classes/Engines/Ndbcluster.php
M libraries/classes/Engines/Pbxt.php
M libraries/classes/Engines/PerformanceSchema.php
M libraries/classes/Error.php
M libraries/classes/ErrorHandler.php
M libraries/classes/ErrorReport.php
M libraries/classes/Export.php
M libraries/classes/File.php
M libraries/classes/FileListing.php
M libraries/classes/Font.php
M libraries/classes/Footer.php
M libraries/classes/Gis/GisFactory.php
M libraries/classes/Gis/GisGeometry.php
M libraries/classes/Gis/GisGeometryCollection.php
M libraries/classes/Gis/GisLineString.php
M libraries/classes/Gis/GisMultiLineString.php
M libraries/classes/Gis/GisMultiPoint.php
M libraries/classes/Gis/GisMultiPolygon.php
M libraries/classes/Gis/GisPoint.php
M libraries/classes/Gis/GisPolygon.php
M libraries/classes/Gis/GisVisualization.php
M libraries/classes/Header.php
M libraries/classes/Import.php
M libraries/classes/Index.php
M libraries/classes/IndexColumn.php
M libraries/classes/InsertEdit.php
M libraries/classes/IpAllowDeny.php
M libraries/classes/Language.php
M libraries/classes/LanguageManager.php
M libraries/classes/Linter.php
M libraries/classes/ListAbstract.php
M libraries/classes/ListDatabase.php
M libraries/classes/Logging.php
M libraries/classes/Menu.php
M libraries/classes/Message.php
M libraries/classes/Mime.php
M libraries/classes/MultSubmits.php
M libraries/classes/Navigation/Navigation.php
M libraries/classes/Navigation/NavigationTree.php
M libraries/classes/Navigation/NodeFactory.php
M libraries/classes/Navigation/Nodes/Node.php
M libraries/classes/Navigation/Nodes/NodeColumn.php
M libraries/classes/Navigation/Nodes/NodeColumnContainer.php
M libraries/classes/Navigation/Nodes/NodeDatabase.php
M libraries/classes/Navigation/Nodes/NodeDatabaseChild.php
M libraries/classes/Navigation/Nodes/NodeDatabaseChildContainer.php
M libraries/classes/Navigation/Nodes/NodeDatabaseContainer.php
M libraries/classes/Navigation/Nodes/NodeEvent.php
M libraries/classes/Navigation/Nodes/NodeEventContainer.php
M libraries/classes/Navigation/Nodes/NodeFunction.php
M libraries/classes/Navigation/Nodes/NodeFunctionContainer.php
M libraries/classes/Navigation/Nodes/NodeIndex.php
M libraries/classes/Navigation/Nodes/NodeIndexContainer.php
M libraries/classes/Navigation/Nodes/NodeProcedure.php
M libraries/classes/Navigation/Nodes/NodeProcedureContainer.php
M libraries/classes/Navigation/Nodes/NodeTable.php
M libraries/classes/Navigation/Nodes/NodeTableContainer.php
M libraries/classes/Navigation/Nodes/NodeTrigger.php
M libraries/classes/Navigation/Nodes/NodeTriggerContainer.php
M libraries/classes/Navigation/Nodes/NodeView.php
M libraries/classes/Navigation/Nodes/NodeViewContainer.php
M libraries/classes/Normalization.php
M libraries/classes/OpenDocument.php
M libraries/classes/Operations.php
M libraries/classes/OutputBuffering.php
M libraries/classes/ParseAnalyze.php
M libraries/classes/Partition.php
M libraries/classes/Pdf.php
M libraries/classes/Plugins.php
M libraries/classes/Plugins/Auth/AuthenticationConfig.php
M libraries/classes/Plugins/Auth/AuthenticationCookie.php
M libraries/classes/Plugins/Auth/AuthenticationHttp.php
M libraries/classes/Plugins/Auth/AuthenticationSignon.php
M libraries/classes/Plugins/AuthenticationPlugin.php
M libraries/classes/Plugins/Export/ExportCodegen.php
M libraries/classes/Plugins/Export/ExportCsv.php
M libraries/classes/Plugins/Export/ExportExcel.php
M libraries/classes/Plugins/Export/ExportHtmlword.php
M libraries/classes/Plugins/Export/ExportJson.php
M libraries/classes/Plugins/Export/ExportLatex.php
M libraries/classes/Plugins/Export/ExportMediawiki.php
M libraries/classes/Plugins/Export/ExportOds.php
M libraries/classes/Plugins/Export/ExportOdt.php
M libraries/classes/Plugins/Export/ExportPdf.php
M libraries/classes/Plugins/Export/ExportPhparray.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportTexytext.php
M libraries/classes/Plugins/Export/ExportXml.php
M libraries/classes/Plugins/Export/ExportYaml.php
M libraries/classes/Plugins/Export/Helpers/Pdf.php
M libraries/classes/Plugins/Export/Helpers/TableProperty.php
M libraries/classes/Plugins/Export/README
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Plugins/IOTransformationsPlugin.php
M libraries/classes/Plugins/Import/AbstractImportCsv.php
M libraries/classes/Plugins/Import/ImportCsv.php
M libraries/classes/Plugins/Import/ImportLdi.php
M libraries/classes/Plugins/Import/ImportMediawiki.php
M libraries/classes/Plugins/Import/ImportOds.php
M libraries/classes/Plugins/Import/ImportShp.php
M libraries/classes/Plugins/Import/ImportSql.php
M libraries/classes/Plugins/Import/ImportXml.php
M libraries/classes/Plugins/Import/README
M libraries/classes/Plugins/Import/ShapeFileImport.php
M libraries/classes/Plugins/Import/Upload/UploadApc.php
M libraries/classes/Plugins/Import/Upload/UploadNoplugin.php
M libraries/classes/Plugins/Import/Upload/UploadProgress.php
M libraries/classes/Plugins/Import/Upload/UploadSession.php
M libraries/classes/Plugins/ImportPlugin.php
M libraries/classes/Plugins/Schema/Dia/Dia.php
M libraries/classes/Plugins/Schema/Dia/DiaRelationSchema.php
M libraries/classes/Plugins/Schema/Dia/RelationStatsDia.php
M libraries/classes/Plugins/Schema/Dia/TableStatsDia.php
M libraries/classes/Plugins/Schema/Eps/Eps.php
M libraries/classes/Plugins/Schema/Eps/EpsRelationSchema.php
M libraries/classes/Plugins/Schema/Eps/RelationStatsEps.php
M libraries/classes/Plugins/Schema/Eps/TableStatsEps.php
M libraries/classes/Plugins/Schema/ExportRelationSchema.php
M libraries/classes/Plugins/Schema/Pdf/Pdf.php
M libraries/classes/Plugins/Schema/Pdf/PdfRelationSchema.php
M libraries/classes/Plugins/Schema/Pdf/RelationStatsPdf.php
M libraries/classes/Plugins/Schema/Pdf/TableStatsPdf.php
M libraries/classes/Plugins/Schema/RelationStats.php
M libraries/classes/Plugins/Schema/SchemaDia.php
M libraries/classes/Plugins/Schema/SchemaEps.php
M libraries/classes/Plugins/Schema/SchemaPdf.php
M libraries/classes/Plugins/Schema/SchemaSvg.php
M libraries/classes/Plugins/Schema/Svg/RelationStatsSvg.php
M libraries/classes/Plugins/Schema/Svg/Svg.php
M libraries/classes/Plugins/Schema/Svg/SvgRelationSchema.php
M libraries/classes/Plugins/Schema/Svg/TableStatsSvg.php
M libraries/classes/Plugins/Schema/TableStats.php
M libraries/classes/Plugins/SchemaPlugin.php
M libraries/classes/Plugins/Transformations/Abs/Bool2TextTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/CodeMirrorEditorTransformationPlugin.php
M libraries/classes/Plugins/Transformations/Abs/DateFormatTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/DownloadTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/ExternalTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/FormattedTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/HexTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/ImageLinkTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/ImageUploadTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/InlineTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/LongToIPv4TransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/PreApPendTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/RegexValidationTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/SQLTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/SubstringTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/TextFileUploadTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/TextImageLinkTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Abs/TextLinkTransformationsPlugin.php
M libraries/classes/Plugins/Transformations/Input/Image_JPEG_Upload.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_FileUpload.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_Iptobinary.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_JsonEditor.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_RegexValidation.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_SqlEditor.php
M libraries/classes/Plugins/Transformations/Input/Text_Plain_XmlEditor.php
M libraries/classes/Plugins/Transformations/Output/Application_Octetstream_Download.php
M libraries/classes/Plugins/Transformations/Output/Application_Octetstream_Hex.php
M libraries/classes/Plugins/Transformations/Output/Image_JPEG_Inline.php
M libraries/classes/Plugins/Transformations/Output/Image_JPEG_Link.php
M libraries/classes/Plugins/Transformations/Output/Image_PNG_Inline.php
M libraries/classes/Plugins/Transformations/Output/Text_Octetstream_Sql.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Binarytoip.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Bool2Text.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Dateformat.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_External.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Formatted.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Imagelink.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Json.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Sql.php
M libraries/classes/Plugins/Transformations/Output/Text_Plain_Xml.php
M libraries/classes/Plugins/Transformations/TEMPLATE
M libraries/classes/Plugins/Transformations/TEMPLATE_ABSTRACT
M libraries/classes/Plugins/Transformations/Text_Plain_Link.php
M libraries/classes/Plugins/Transformations/Text_Plain_Longtoipv4.php
M libraries/classes/Plugins/Transformations/Text_Plain_PreApPend.php
M libraries/classes/Plugins/Transformations/Text_Plain_Substring.php
M libraries/classes/Plugins/TransformationsInterface.php
M libraries/classes/Plugins/TransformationsPlugin.php
M libraries/classes/Plugins/TwoFactor/Application.php
M libraries/classes/Plugins/TwoFactor/Invalid.php
M libraries/classes/Plugins/TwoFactor/Key.php
M libraries/classes/Plugins/TwoFactor/Simple.php
M libraries/classes/Plugins/TwoFactorPlugin.php
M libraries/classes/Plugins/UploadInterface.php
M libraries/classes/Properties/Options/Groups/OptionsPropertyMainGroup.php
M libraries/classes/Properties/Options/Groups/OptionsPropertyRootGroup.php
M libraries/classes/Properties/Options/Groups/OptionsPropertySubgroup.php
M libraries/classes/Properties/Options/Items/BoolPropertyItem.php
M libraries/classes/Properties/Options/Items/DocPropertyItem.php
M libraries/classes/Properties/Options/Items/HiddenPropertyItem.php
M libraries/classes/Properties/Options/Items/MessageOnlyPropertyItem.php
M libraries/classes/Properties/Options/Items/NumberPropertyItem.php
M libraries/classes/Properties/Options/Items/RadioPropertyItem.php
M libraries/classes/Properties/Options/Items/SelectPropertyItem.php
M libraries/classes/Properties/Options/Items/TextPropertyItem.php
M libraries/classes/Properties/Options/OptionsPropertyGroup.php
M libraries/classes/Properties/Options/OptionsPropertyItem.php
M libraries/classes/Properties/Options/OptionsPropertyOneItem.php
M libraries/classes/Properties/Plugins/ExportPluginProperties.php
M libraries/classes/Properties/Plugins/ImportPluginProperties.php
M libraries/classes/Properties/Plugins/PluginPropertyItem.php
M libraries/classes/Properties/Plugins/SchemaPluginProperties.php
M libraries/classes/Properties/PropertyItem.php
M libraries/classes/RecentFavoriteTable.php
M libraries/classes/Relation.php
M libraries/classes/RelationCleanup.php
M libraries/classes/Replication.php
M libraries/classes/ReplicationGui.php
M libraries/classes/Response.php
M libraries/classes/Rte/Events.php
M libraries/classes/Rte/Export.php
M libraries/classes/Rte/Footer.php
M libraries/classes/Rte/General.php
M libraries/classes/Rte/Routines.php
M libraries/classes/Rte/RteList.php
M libraries/classes/Rte/Triggers.php
M libraries/classes/Rte/Words.php
M libraries/classes/Sanitize.php
M libraries/classes/SavedSearches.php
M libraries/classes/Scripts.php
M libraries/classes/Server/Privileges.php
M libraries/classes/Server/Select.php
M libraries/classes/Server/Status/Data.php
M libraries/classes/Server/Status/Monitor.php
M libraries/classes/Server/UserGroups.php
M libraries/classes/Server/Users.php
M libraries/classes/Session.php
M libraries/classes/Sql.php
M libraries/classes/SqlQueryForm.php
M libraries/classes/StorageEngine.php
M libraries/classes/SubPartition.php
M libraries/classes/SysInfo.php
M libraries/classes/SysInfoBase.php
M libraries/classes/SysInfoLinux.php
M libraries/classes/SysInfoSunOS.php
M libraries/classes/SysInfoWINNT.php
M libraries/classes/SystemDatabase.php
M libraries/classes/Table.php
M libraries/classes/Template.php
M libraries/classes/Theme.php
M libraries/classes/ThemeManager.php
M libraries/classes/Tracker.php
M libraries/classes/Tracking.php
M libraries/classes/Transformations.php
M libraries/classes/Twig/CoreExtension.php
M libraries/classes/Twig/I18n/NodeTrans.php
M libraries/classes/Twig/I18n/TokenParserTrans.php
M libraries/classes/Twig/I18nExtension.php
M libraries/classes/Twig/MessageExtension.php
M libraries/classes/Twig/PluginsExtension.php
M libraries/classes/Twig/RelationExtension.php
M libraries/classes/Twig/SanitizeExtension.php
M libraries/classes/Twig/ServerPrivilegesExtension.php
M libraries/classes/Twig/StorageEngineExtension.php
M libraries/classes/Twig/TableExtension.php
M libraries/classes/Twig/TrackerExtension.php
M libraries/classes/Twig/TransformationsExtension.php
M libraries/classes/Twig/UrlExtension.php
M libraries/classes/Twig/UtilExtension.php
M libraries/classes/TwoFactor.php
M libraries/classes/Types.php
M libraries/classes/Url.php
M libraries/classes/UserPassword.php
M libraries/classes/UserPreferences.php
M libraries/classes/Util.php
M libraries/classes/Utils/HttpRequest.php
M libraries/classes/VersionInformation.php
M libraries/classes/ZipExtension.php
M libraries/common.inc.php
M libraries/config.default.php
M libraries/config.values.php
M libraries/db_common.inc.php
M libraries/db_table_exists.inc.php
M libraries/mult_submits.inc.php
M libraries/replication.inc.php
M libraries/server_common.inc.php
M libraries/tbl_columns_definition_form.inc.php
M libraries/tbl_common.inc.php
M libraries/vendor_config.php
M license.php
M lint.php
M logout.php
M navigation.php
M normalization.php
M package.json
M phpcs.xml.dist
M phpinfo.php
M phpunit.xml.dist
M phpunit.xml.nocoverage
M po/af.po
M po/am.po
M po/ar.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/bg.po
M po/bn.po
M po/br.po
M po/brx.po
M po/bs.po
M po/ca.po
M po/ckb.po
M po/cs.po
M po/cy.po
M po/da.po
M po/de.po
M po/el.po
M po/en_GB.po
M po/eo.po
M po/es.po
M po/et.po
M po/eu.po
M po/fa.po
M po/fi.po
M po/fil.po
M po/fr.po
M po/fy.po
M po/gl.po
M po/gu.po
M po/he.po
M po/hi.po
M po/hr.po
M po/hu.po
M po/hy.po
M po/ia.po
M po/id.po
M po/ig.po
M po/it.po
M po/ja.po
M po/ka.po
M po/kab.po
M po/kk.po
M po/km.po
M po/kn.po
M po/ko.po
M po/ksh.po
M po/ku.po
M po/ky.po
M po/li.po
M po/lt.po
M po/lv.po
M po/mk.po
M po/ml.po
M po/mn.po
M po/ms.po
M po/my.po
M po/nb.po
M po/ne.po
M po/nl.po
M po/nn.po
M po/pa.po
M po/phpmyadmin.pot
M po/pl.po
M po/pt.po
M po/pt_BR.po
M po/ro.po
M po/ru.po
M po/si.po
M po/sk.po
M po/sl.po
M po/sq.po
M po/sr.po
M po/sr(a)latin.po
M po/sv.po
M po/ta.po
M po/te.po
M po/th.po
M po/tk.po
M po/tr.po
M po/tt.po
M po/ug.po
M po/uk.po
M po/ur.po
M po/uz.po
M po/uz(a)latin.po
M po/vi.po
M po/vls.po
M po/zh_CN.po
M po/zh_TW.po
M prefs_forms.php
M prefs_manage.php
M prefs_twofactor.php
M schema_export.php
M scripts/advisor2po
M scripts/create-release.sh
M scripts/fix-po-twig
M scripts/generate-twig-cache
M scripts/remove-incomplete-mo
M server_binlog.php
M server_collations.php
M server_databases.php
M server_engines.php
M server_export.php
M server_import.php
M server_plugins.php
M server_privileges.php
M server_replication.php
M server_sql.php
M server_status.php
M server_status_advisor.php
M server_status_monitor.php
M server_status_processes.php
M server_status_queries.php
M server_status_variables.php
M server_user_groups.php
M server_variables.php
M setup/config.php
M setup/index.php
M setup/lib/common.inc.php
M setup/validate.php
M show_config_errors.php
M sql.php
M tbl_addfield.php
M tbl_change.php
M tbl_chart.php
M tbl_create.php
M tbl_export.php
M tbl_find_replace.php
M tbl_get_field.php
M tbl_gis_visualization.php
M tbl_import.php
M tbl_indexes.php
M tbl_operations.php
M tbl_recent_favorite.php
M tbl_relation.php
M tbl_replace.php
M tbl_row_action.php
M tbl_select.php
M tbl_sql.php
M tbl_structure.php
M tbl_tracking.php
M tbl_triggers.php
M tbl_zoom_select.php
M templates/checkbox.twig
M templates/columns_definitions/column_adjust_privileges.twig
M templates/columns_definitions/column_attributes.twig
M templates/columns_definitions/column_auto_increment.twig
M templates/columns_definitions/column_comment.twig
M templates/columns_definitions/column_default.twig
M templates/columns_definitions/column_definitions_form.twig
M templates/columns_definitions/column_extra.twig
M templates/columns_definitions/column_length.twig
M templates/columns_definitions/column_name.twig
M templates/columns_definitions/column_null.twig
M templates/columns_definitions/column_type.twig
M templates/columns_definitions/column_virtuality.twig
M templates/columns_definitions/move_column.twig
M templates/columns_definitions/partitions.twig
M templates/columns_definitions/table_fields_definitions.twig
M templates/columns_definitions/transformation.twig
M templates/columns_definitions/transformation_option.twig
M templates/components/error_message.twig
M templates/config/form_display/fieldset_bottom.twig
M templates/console/display.twig
M templates/database/create_table.twig
M templates/database/designer/database_tables.twig
M templates/database/designer/edit_delete_pages.twig
M templates/database/designer/page_save_as.twig
M templates/database/designer/schema_export.twig
M templates/database/multi_table_query/form.twig
M templates/database/search/results.twig
M templates/database/structure/body_for_table_summary.twig
M templates/database/structure/check_all_tables.twig
M templates/database/structure/favorite_anchor.twig
M templates/database/structure/show_create_row.twig
M templates/database/structure/structure_table_row.twig
M templates/database/structure/table_header.twig
M templates/database/structure/tracking_icon.twig
M templates/display/export/hidden_inputs.twig
M templates/display/export/option_header.twig
M templates/display/export/options_format.twig
M templates/display/export/options_output_format.twig
M templates/display/export/select_options.twig
M templates/display/export/template_loading.twig
M templates/display/import/import.twig
M templates/display/import/javascript.twig
M templates/display/results/comment_for_row.twig
M templates/display/results/options_block.twig
M templates/display/results/table_navigation_button.twig
M templates/encoding/kanji_encoding_form.twig
M templates/error/report_form.twig
M templates/export/alias_add.twig
M templates/export/alias_item.twig
M templates/filter.twig
M templates/header_location.twig
M templates/list/item.twig
M templates/login/footer.twig
M templates/login/header.twig
M templates/login/twofactor.twig
M templates/login/twofactor/application.twig
M templates/login/twofactor/application_configure.twig
M templates/login/twofactor/key.twig
M templates/login/twofactor/key_configure.twig
M templates/login/twofactor/simple.twig
M templates/preview_sql.twig
M templates/radio_fields.twig
M templates/secondary_tabs.twig
M templates/select_all.twig
M templates/select_lang.twig
M templates/server/databases/index.twig
M templates/server/sub_page_header.twig
M templates/start_and_number_of_rows_panel.twig
M templates/table/browse_foreigners/show_all.twig
M templates/table/chart/tbl_chart.twig
M templates/table/gis_visualization/gis_visualization.twig
M templates/table/index_form.twig
M templates/table/insert/continue_insertion_form.twig
M templates/table/relation/common_form.twig
M templates/table/relation/foreign_key_row.twig
M templates/table/search/fields_table.twig
M templates/table/search/form_tag.twig
M templates/table/search/geom_func.twig
M templates/table/search/input_box.twig
M templates/table/search/replace_preview.twig
M templates/table/search/rows_normal.twig
M templates/table/search/rows_zoom.twig
M templates/table/search/selection_form.twig
M templates/table/search/zoom_result_form.twig
M templates/table/structure/action_row_in_structure_table.twig
M templates/table/structure/display_partitions.twig
M templates/table/structure/display_structure.twig
M templates/table/structure/display_table_stats.twig
M templates/table/structure/partition_definition_form.twig
M templates/table/tracking/structure_snapshot_columns.twig
M templates/theme_preview.twig
M templates/toggle_button.twig
M templates/view_create.twig
M test/bootstrap-dist.php
M test/classes/AdvisorTest.php
M test/classes/BookmarkTest.php
M test/classes/BrowseForeignersTest.php
M test/classes/CentralColumnsTest.php
M test/classes/CharsetsTest.php
M test/classes/CheckUserPrivilegesTest.php
M test/classes/Config/ConfigFileTest.php
M test/classes/Config/DescriptionTest.php
M test/classes/Config/FormDisplayTemplateTest.php
M test/classes/Config/FormDisplayTest.php
M test/classes/Config/FormTest.php
M test/classes/Config/Forms/FormListTest.php
M test/classes/Config/PageSettingsTest.php
M test/classes/Config/ServerConfigChecksTest.php
M test/classes/ConfigTest.php
M test/classes/CoreTest.php
M test/classes/CreateAddFieldTest.php
M test/classes/Database/Designer/CommonTest.php
M test/classes/Database/DesignerTest.php
M test/classes/Database/QbeTest.php
M test/classes/Database/SearchTest.php
M test/classes/DatabaseInterfaceTest.php
M test/classes/Dbi/DbiMysqliTest.php
M test/classes/Display/ChangePasswordTest.php
M test/classes/Display/CreateTableTest.php
M test/classes/Display/ExportTest.php
M test/classes/Display/ResultsTest.php
M test/classes/EncodingTest.php
M test/classes/Engines/BdbTest.php
M test/classes/Engines/BinlogTest.php
M test/classes/Engines/InnodbTest.php
M test/classes/Engines/MemoryTest.php
M test/classes/Engines/MrgMyisamTest.php
M test/classes/Engines/MyisamTest.php
M test/classes/Engines/NdbclusterTest.php
M test/classes/Engines/PbxtTest.php
M test/classes/ErrorHandlerTest.php
M test/classes/ErrorTest.php
M test/classes/ExportTest.php
M test/classes/FileTest.php
M test/classes/FontTest.php
M test/classes/FooterTest.php
M test/classes/Gis/GisFactoryTest.php
M test/classes/Gis/GisGeomTestCase.php
M test/classes/Gis/GisGeometryCollectionTest.php
M test/classes/Gis/GisGeometryTest.php
M test/classes/Gis/GisLineStringTest.php
M test/classes/Gis/GisMultiLineStringTest.php
M test/classes/Gis/GisMultiPointTest.php
M test/classes/Gis/GisMultiPolygonTest.php
M test/classes/Gis/GisPointTest.php
M test/classes/Gis/GisPolygonTest.php
M test/classes/HeaderTest.php
M test/classes/ImportTest.php
M test/classes/IndexTest.php
M test/classes/InsertEditTest.php
M test/classes/IpAllowDenyTest.php
M test/classes/LanguageTest.php
M test/classes/LinterTest.php
M test/classes/ListDatabaseTest.php
M test/classes/MenuTest.php
M test/classes/MessageTest.php
M test/classes/MimeTest.php
M test/classes/MultSubmitsTest.php
M test/classes/Navigation/NavigationTest.php
M test/classes/Navigation/NavigationTreeTest.php
M test/classes/Navigation/NodeFactoryTest.php
M test/classes/Navigation/Nodes/NodeColumnContainerTest.php
M test/classes/Navigation/Nodes/NodeColumnTest.php
M test/classes/Navigation/Nodes/NodeDatabaseChildTest.php
M test/classes/Navigation/Nodes/NodeDatabaseTest.php
M test/classes/Navigation/Nodes/NodeEventContainerTest.php
M test/classes/Navigation/Nodes/NodeEventTest.php
M test/classes/Navigation/Nodes/NodeFunctionContainerTest.php
M test/classes/Navigation/Nodes/NodeFunctionTest.php
M test/classes/Navigation/Nodes/NodeIndexContainerTest.php
M test/classes/Navigation/Nodes/NodeIndexTest.php
M test/classes/Navigation/Nodes/NodeProcedureContainerTest.php
M test/classes/Navigation/Nodes/NodeProcedureTest.php
M test/classes/Navigation/Nodes/NodeTableContainerTest.php
M test/classes/Navigation/Nodes/NodeTableTest.php
M test/classes/Navigation/Nodes/NodeTest.php
M test/classes/Navigation/Nodes/NodeTriggerContainerTest.php
M test/classes/Navigation/Nodes/NodeTriggerTest.php
M test/classes/Navigation/Nodes/NodeViewContainerTest.php
M test/classes/Navigation/Nodes/NodeViewTest.php
M test/classes/NormalizationTest.php
M test/classes/OperationsTest.php
M test/classes/PdfTest.php
M test/classes/Plugins/Auth/AuthenticationConfigTest.php
M test/classes/Plugins/Auth/AuthenticationCookieTest.php
M test/classes/Plugins/Auth/AuthenticationHttpTest.php
M test/classes/Plugins/Auth/AuthenticationSignonTest.php
M test/classes/Plugins/Export/ExportCodegenTest.php
M test/classes/Plugins/Export/ExportCsvTest.php
M test/classes/Plugins/Export/ExportExcelTest.php
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportJsonTest.php
M test/classes/Plugins/Export/ExportLatexTest.php
M test/classes/Plugins/Export/ExportMediawikiTest.php
M test/classes/Plugins/Export/ExportOdsTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
M test/classes/Plugins/Export/ExportPdfTest.php
M test/classes/Plugins/Export/ExportPhparrayTest.php
M test/classes/Plugins/Export/ExportSqlTest.php
M test/classes/Plugins/Export/ExportTexytextTest.php
M test/classes/Plugins/Export/ExportXmlTest.php
M test/classes/Plugins/Export/ExportYamlTest.php
M test/classes/Plugins/Export/Helpers/TablePropertyTest.php
M test/classes/Plugins/Import/ImportCsvTest.php
M test/classes/Plugins/Import/ImportLdiTest.php
M test/classes/Plugins/Import/ImportMediawikiTest.php
M test/classes/Plugins/Import/ImportOdsTest.php
M test/classes/Plugins/Import/ImportShpTest.php
M test/classes/Plugins/Import/ImportSqlTest.php
M test/classes/Plugins/Import/ImportXmlTest.php
M test/classes/Plugins/Schema/DiaRelationSchemaTest.php
M test/classes/Plugins/Schema/EpsRelationSchemaTest.php
M test/classes/Plugins/Schema/ExportRelationSchemaTest.php
M test/classes/Plugins/Schema/PdfRelationSchemaTest.php
M test/classes/Plugins/Schema/SvgRelationSchemaTest.php
M test/classes/Plugins/Transformations/TransformationPluginsTest.php
M test/classes/PmaTestCase.php
M test/classes/Properties/Options/Groups/OptionsPropertyMainGroupTest.php
M test/classes/Properties/Options/Groups/OptionsPropertyRootGroupTest.php
M test/classes/Properties/Options/Groups/OptionsPropertySubgroupTest.php
M test/classes/Properties/Options/Items/PropertyItemsTest.php
M test/classes/Properties/Options/OptionsPropertyGroupTest.php
M test/classes/Properties/Options/OptionsPropertyItemTest.php
M test/classes/Properties/Options/OptionsPropertyOneItemTest.php
M test/classes/Properties/Plugins/ExportPluginPropertiesTest.php
M test/classes/Properties/Plugins/ImportPluginPropertiesTest.php
M test/classes/Properties/Plugins/PluginPropertyItemTest.php
M test/classes/Properties/PropertyItemTest.php
M test/classes/RelationCleanupTest.php
M test/classes/RelationTest.php
M test/classes/ReplicationGuiTest.php
M test/classes/Rte/EventsTest.php
M test/classes/Rte/RoutinesTest.php
M test/classes/Rte/TriggersTest.php
M test/classes/SanitizeTest.php
M test/classes/ScriptsTest.php
M test/classes/Server/PrivilegesTest.php
M test/classes/Server/SelectTest.php
M test/classes/Server/UserGroupsTest.php
M test/classes/Server/UsersTest.php
M test/classes/Setup/ConfigGeneratorTest.php
M test/classes/Setup/FormProcessingTest.php
M test/classes/Setup/IndexTest.php
M test/classes/SqlQueryFormTest.php
M test/classes/SqlTest.php
M test/classes/StorageEngineTest.php
M test/classes/Stubs/Response.php
M test/classes/SysInfoTest.php
M test/classes/SystemDatabaseTest.php
M test/classes/TableTest.php
M test/classes/TemplateTest.php
M test/classes/ThemeManagerTest.php
M test/classes/ThemeTest.php
M test/classes/TrackerTest.php
M test/classes/TrackingTest.php
M test/classes/TransformationsTest.php
M test/classes/TwoFactorTest.php
M test/classes/TypesTest.php
M test/classes/UrlTest.php
M test/classes/UserPreferencesTest.php
M test/classes/UtilTest.php
M test/classes/Utils/HttpRequestTest.php
M test/classes/VersionInformationTest.php
M test/classes/ZipExtensionTest.php
M test/classes/_data/gen_version_info/theme.json
M test/selenium/ChangePasswordTest.php
M test/selenium/CreateDropDatabaseTest.php
M test/selenium/CreateRemoveUserTest.php
M test/selenium/ExportTest.php
M test/selenium/ImportTest.php
M test/selenium/LoginTest.php
M test/selenium/NormalizationTest.php
M test/selenium/ServerSettingsTest.php
M test/selenium/SqlQueryTest.php
M test/selenium/TestBase.php
M test/selenium/TrackingTest.php
M test/selenium/XssTest.php
M test/start-local-server
M test/test_data/config.inc.php
M themes.php
M themes/.gitignore
M themes/original/theme.json
M themes/pmahomme/theme.json
M transformation_overview.php
M transformation_wrapper.php
M url.php
M user_password.php
M version_check.php
M view_create.php
M view_operations.php
M yarn.lock
D .github/ISSUE_TEMPLATE.md
D js/db_central_columns.js
D js/db_multi_table_query.js
D js/db_operations.js
D js/db_qbe.js
D js/db_query_generator.js
D js/db_search.js
D js/db_structure.js
D js/db_tracking.js
D js/menu-resizer.js
D js/server_databases.js
D js/server_plugins.js
D js/server_privileges.js
D js/server_status_advisor.js
D js/server_status_monitor.js
D js/server_status_processes.js
D js/server_status_queries.js
D js/server_status_sorter.js
D js/server_status_variables.js
D js/server_user_groups.js
D js/server_variables.js
D js/tbl_change.js
D js/tbl_chart.js
D js/tbl_find_replace.js
D js/tbl_gis_visualization.js
D js/tbl_operations.js
D js/tbl_relation.js
D js/tbl_select.js
D js/tbl_structure.js
D js/tbl_tracking.js
D js/tbl_zoom_plot_jqplot.js
D libraries/check_user_privileges.inc.php
D libraries/classes/Controllers/Controller.php
D libraries/classes/Controllers/Database/DatabaseStructureController.php
D libraries/classes/Controllers/DatabaseController.php
D libraries/classes/Controllers/Server/ServerBinlogController.php
D libraries/classes/Controllers/Server/ServerCollationsController.php
D libraries/classes/Controllers/Server/ServerDatabasesController.php
D libraries/classes/Controllers/Server/ServerEnginesController.php
D libraries/classes/Controllers/Server/ServerPluginsController.php
D libraries/classes/Controllers/Server/ServerVariablesController.php
D libraries/classes/Controllers/Table/TableChartController.php
D libraries/classes/Controllers/Table/TableGisVisualizationController.php
D libraries/classes/Controllers/Table/TableIndexesController.php
D libraries/classes/Controllers/Table/TableRelationController.php
D libraries/classes/Controllers/Table/TableSearchController.php
D libraries/classes/Controllers/Table/TableStructureController.php
D libraries/classes/Controllers/TableController.php
D libraries/classes/Dbi/DbiDummy.php
D libraries/classes/Dbi/DbiMysql.php
D libraries/classes/Di/AliasItem.php
D libraries/classes/Di/Container.php
D libraries/classes/Di/ContainerException.php
D libraries/classes/Di/FactoryItem.php
D libraries/classes/Di/Item.php
D libraries/classes/Di/NotFoundException.php
D libraries/classes/Di/ReflectorItem.php
D libraries/classes/Di/ServiceItem.php
D libraries/classes/Di/ValueItem.php
D libraries/classes/Navigation/NavigationHeader.php
D libraries/classes/Server/Status.php
D libraries/classes/Server/Status/Advisor.php
D libraries/classes/Server/Status/Processes.php
D libraries/classes/Server/Status/Queries.php
D libraries/classes/Server/Status/Variables.php
D libraries/classes/Twig/CharsetsExtension.php
D libraries/classes/Twig/IndexExtension.php
D libraries/classes/Twig/PartitionExtension.php
D libraries/classes/Twig/PhpFunctionsExtension.php
D libraries/dbi/dbi_dummy.inc.php
D libraries/error.inc.php
D libraries/hash.lib.php
D libraries/information_schema_relations.inc.php
D libraries/mysql_relations.inc.php
D libraries/rte/rte_main.inc.php
D libraries/special_schema_links.inc.php
D libraries/tbl_partition_definition.inc.php
D libraries/user_preferences.inc.php
D phpmyadmin.css.php
D phpunit.xml.hhvm
D setup/ajax.js
D setup/frames/config.inc.php
D setup/frames/form.inc.php
D setup/frames/index.inc.php
D setup/frames/menu.inc.php
D setup/frames/servers.inc.php
D setup/lib/ConfigGenerator.php
D setup/lib/FormProcessing.php
D setup/lib/Index.php
D setup/scripts.js
D templates/database/central_columns/add_column.twig
D templates/database/central_columns/table_navigation.twig
D templates/database/designer/aggregate_query_panel.twig
D templates/database/designer/canvas.twig
D templates/database/designer/delete_relation_panel.twig
D templates/database/designer/having_query_panel.twig
D templates/database/designer/js_fields.twig
D templates/database/designer/new_relation_panel.twig
D templates/database/designer/options_panel.twig
D templates/database/designer/query_details.twig
D templates/database/designer/rename_to_panel.twig
D templates/database/designer/side_menu.twig
D templates/database/designer/table_list.twig
D templates/database/designer/where_query_panel.twig
D templates/database/search/result_divs.twig
D templates/database/search/selection_form.twig
D templates/database/structure/browse_table.twig
D templates/database/structure/browse_table_label.twig
D templates/database/structure/empty_table.twig
D templates/database/structure/print_view_data_dictionary_link.twig
D templates/database/structure/search_table.twig
D templates/database/tracking/tracked_tables.twig
D templates/database/tracking/untracked_tables.twig
D templates/display/results/additional_fields.twig
D templates/display/results/multi_row_operations_form.twig
D templates/display/results/show_all_checkbox.twig
D templates/navigation/logo.twig
D templates/prefs_autoload.twig
D templates/prefs_twofactor.twig
D templates/prefs_twofactor_configure.twig
D templates/prefs_twofactor_confirm.twig
D templates/privileges/add_privileges_database.twig
D templates/privileges/add_privileges_routine.twig
D templates/privileges/add_privileges_table.twig
D templates/privileges/add_user_fieldset.twig
D templates/privileges/choose_user_group.twig
D templates/privileges/column_privileges.twig
D templates/privileges/delete_user_fieldset.twig
D templates/privileges/edit_routine_privileges.twig
D templates/privileges/global_priv_table.twig
D templates/privileges/global_priv_tbl_item.twig
D templates/privileges/initials_row.twig
D templates/privileges/privileges_summary.twig
D templates/privileges/privileges_summary_row.twig
D templates/privileges/require_options.twig
D templates/privileges/require_options_item.twig
D templates/privileges/resource_limit_item.twig
D templates/privileges/resource_limits.twig
D templates/server/binlog/log_row.twig
D templates/server/binlog/log_selector.twig
D templates/server/collations/charsets.twig
D templates/server/databases/create.twig
D templates/server/databases/databases_footer.twig
D templates/server/databases/databases_header.twig
D templates/server/databases/table_header.twig
D templates/server/databases/table_row.twig
D templates/server/engines/engine.twig
D templates/server/engines/engines.twig
D templates/server/plugins/section.twig
D templates/server/plugins/section_links.twig
D templates/server/variables/link_template.twig
D templates/server/variables/session_variable_row.twig
D templates/server/variables/variable_row.twig
D templates/server/variables/variable_table_head.twig
D templates/table/relation/internal_relational_row.twig
D templates/table/search/options.twig
D templates/table/search/options_zoom.twig
D templates/table/search/search_and_replace.twig
D templates/table/search/table_header.twig
D templates/table/secondary_tabs.twig
D templates/table/structure/actions_in_table_structure.twig
D templates/table/structure/add_column.twig
D templates/table/structure/check_all_table_column.twig
D templates/table/structure/move_columns_dialog.twig
D templates/table/structure/optional_action_links.twig
D templates/table/structure/row_stats_table.twig
D templates/table/structure/table_structure_header.twig
D templates/table/structure/table_structure_row.twig
D templates/table/tracking/activate_deactivate.twig
D templates/table/tracking/create_version.twig
D templates/table/tracking/selectable_tables.twig
D test/Environment_test.php
D test/ci-apidocs
D test/ci-install-apidocs
D test/ci-install-docs
D test/ci-install-lint
D test/ci-install-release
D test/ci-install-selenium
D test/ci-install-test
D test/ci-lint
D test/ci-release
D test/ci-selenium
D test/ci-test
D test/classes/Controllers/Database/DatabaseStructureControllerTest.php
D test/classes/Controllers/Server/ServerBinlogControllerTest.php
D test/classes/Controllers/Server/ServerCollationsControllerTest.php
D test/classes/Controllers/Server/ServerDatabasesControllerTest.php
D test/classes/Controllers/Server/ServerEnginesControllerTest.php
D test/classes/Controllers/Server/ServerPluginsControllerTest.php
D test/classes/Controllers/Server/ServerVariablesControllerTest.php
D test/classes/Controllers/Table/TableIndexesControllerTest.php
D test/classes/Controllers/Table/TableRelationControllerTest.php
D test/classes/Controllers/Table/TableSearchControllerTest.php
D test/classes/Controllers/Table/TableStructureControllerTest.php
D test/classes/Dbi/DbiMysqlTest.php
D test/classes/Di/ContainerExceptionTest.php
D test/classes/Di/ContainerTest.php
D test/classes/Di/NotFoundExceptionTest.php
D test/classes/RelationCleanupDbiMock.php
D test/classes/Server/Status/AdvisorTest.php
D test/classes/Server/Status/DataTest.php
D test/classes/Server/Status/MonitorTest.php
D test/classes/Server/Status/ProcessesTest.php
D test/classes/Server/Status/QueriesTest.php
D test/classes/Server/Status/VariablesTest.php
D test/classes/Server/StatusTest.php
D test/install-runkit
D test/libraries/Files_test.php
D test/libraries/common/PMA_checkbox_test.php
D test/libraries/database_interface_test.php
D test/php-noprofile.ini
D test/php-runkit.ini
D test/selenium/DbEventsTest.php
D test/selenium/DbOperationsTest.php
D test/selenium/DbProceduresTest.php
D test/selenium/DbStructureTest.php
D test/selenium/DbTriggersTest.php
D test/selenium/QueryByExampleTest.php
D test/selenium/TableBrowseTest.php
D test/selenium/TableCreateTest.php
D test/selenium/TableInsertTest.php
D test/selenium/TableOperationsTest.php
D test/selenium/TableStructureTest.php
D themes/original/css/common.css.php
D themes/original/css/navigation.css.php
D themes/original/css/printview.css
D themes/original/layout.inc.php
D themes/pmahomme/css/codemirror.css.php
D themes/pmahomme/css/common.css.php
D themes/pmahomme/css/designer.css.php
D themes/pmahomme/css/enum_editor.css.php
D themes/pmahomme/css/gis.css.php
D themes/pmahomme/css/icons.css.php
D themes/pmahomme/css/jqplot.css.php
D themes/pmahomme/css/navigation.css.php
D themes/pmahomme/css/printview.css
D themes/pmahomme/css/resizable-menu.css.php
D themes/pmahomme/css/rte.css.php
D themes/pmahomme/layout.inc.php
D themes/svg_gradient.php
Log Message:
-----------
Merge branch 'QA_5_0' into STABLE
Branch: refs/tags/RELEASE_5_0_0
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: ed048bd10f42dcbfbb628718e06f851b88f11b86
https://github.com/phpmyadmin/phpmyadmin/commit/ed048bd10f42dcbfbb628718e06…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 4.9.3
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: be969e94b36b08a4c8b1de9aae8ea7384b342a1b
https://github.com/phpmyadmin/phpmyadmin/commit/be969e94b36b08a4c8b1de9aae8…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
Log Message:
-----------
Fix merge conflicts
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: 0f159139c3c3794ec7007e9163486d8edf2412f8
https://github.com/phpmyadmin/phpmyadmin/commit/0f159139c3c3794ec7007e91634…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 5.0.0
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: c124aacc32329f69f3e8189c61c5d82f6d9fcd47
https://github.com/phpmyadmin/phpmyadmin/commit/c124aacc32329f69f3e8189c61c…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 5.0.0
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Branch: refs/tags/RELEASE_4_9_3
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: ed048bd10f42dcbfbb628718e06f851b88f11b86
https://github.com/phpmyadmin/phpmyadmin/commit/ed048bd10f42dcbfbb628718e06…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
M ChangeLog
M README
M doc/conf.py
M libraries/classes/Config.php
M package.json
Log Message:
-----------
Prepare for version 4.9.3
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Commit: f4b113872b20149f944f80c7090bc09a9b768def
https://github.com/phpmyadmin/phpmyadmin/commit/f4b113872b20149f944f80c7090…
Author: Isaac Bennetch <bennetch(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) -05:00
Changed paths:
A composer.lock
Log Message:
-----------
Adding composer lock for 4.9.3
Signed-off-by: Isaac Bennetch <bennetch(a)gmail.com>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 693bf67b1c79e8fa16859fdc57e356c033f92bf0
https://github.com/phpmyadmin/phpmyadmin/commit/693bf67b1c79e8fa16859fdc57e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-26 (Thu, 12 December 2019) -03:00
Changed paths:
M js/database/central_columns.js
M js/functions.js
M libraries/classes/Controllers/Database/CentralColumnsController.php
M libraries/classes/Menu.php
M libraries/routes.php
M templates/database/central_columns/main.twig
M test/classes/CentralColumnsTest.php
D libraries/entry_points/database/central_columns.php
Log Message:
-----------
Refactor Database\CentralColumnsController class
Moves the central columns entry point logic to the controller and
removes the entry point file.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: ab9d94b2b390fe64a154f1a5f60ea3d2f8a7709a
https://github.com/phpmyadmin/phpmyadmin/commit/ab9d94b2b390fe64a154f1a5f60…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-12-26 (Thu, 12 December 2019) -03:00
Changed paths:
M libraries/classes/Controllers/Table/IndexesController.php
M libraries/routes.php
M phpstan-baseline.neon
M services_controllers.yml
M test/classes/Controllers/Table/IndexesControllerTest.php
D libraries/entry_points/table/indexes.php
Log Message:
-----------
Refactor Table\IndexesController controller
Moves the indexes entry point logic to the controller and removes the
entry point file.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/docker
Commit: 4f88748138d4e922d1e973103ac58161f34b338f
https://github.com/phpmyadmin/docker/commit/4f88748138d4e922d1e973103ac5816…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M README.md
Log Message:
-----------
Improve README.md and add a link to the main repo
[ci skip]
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/docker
Commit: bf6422b6a64dca18322cf88ff0106690200dca5d
https://github.com/phpmyadmin/docker/commit/bf6422b6a64dca18322cf88ff010669…
Author: Mandy Schoep <mandyschoep(a)gmail.com>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M .gitignore
M .travis.yml
M README.md
Log Message:
-----------
Fix .gitignore, README.md and .travis.yml
Commit: 2576eb2c26ba446906a0103d4550f999aefa973c
https://github.com/phpmyadmin/docker/commit/2576eb2c26ba446906a0103d4550f99…
Author: Mandy Schoep <mandyschoep(a)gmail.com>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
M docker-entrypoint.sh
Log Message:
-----------
Implement loading secrets from files
Commit: 05d5c516d3640bac12cfef8a9a214bbcdc392755
https://github.com/phpmyadmin/docker/commit/05d5c516d3640bac12cfef8a9a214bb…
Author: Mandy Schoep <mandyschoep(a)gmail.com>
Date: 2019-12-24 (Tue, 12 December 2019) +01:00
Changed paths:
A testing/conftest.py
M Makefile
M docker-compose.testing.yml
M testing/Dockerfile
M testing/phpmyadmin_test.py
M testing/test-docker.sh
Log Message:
-----------
Fix and improve test suite
Commit: 60e766aa9ebad0f9710c433175cb47aac46fea6d
https://github.com/phpmyadmin/docker/commit/60e766aa9ebad0f9710c433175cb47a…
Author: Mandy Schoep <mandyschoep(a)gmail.com>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M docker-entrypoint.sh
M testing/phpmyadmin_test.py
Log Message:
-----------
Added support for PMA_HOST_FILE and PMA_HOSTS_FILE
Commit: 568e58cc53def8d68f062dd6ddf4cab4d5bacb9c
https://github.com/phpmyadmin/docker/commit/568e58cc53def8d68f062dd6ddf4cab…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
A testing/conftest.py
M .gitignore
M .travis.yml
M Makefile
M README.md
M apache/docker-entrypoint.sh
M docker-compose.testing.yml
M docker-entrypoint.sh
M fpm-alpine/docker-entrypoint.sh
M fpm/docker-entrypoint.sh
M testing/Dockerfile
M testing/phpmyadmin_test.py
M testing/test-docker.sh
Log Message:
-----------
Merge #247 - Implement *_FILE read ENV from file
Pull-request: #247
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: dd2ca51984e3ca0f7846af3c83d91cab3806c928
https://github.com/phpmyadmin/docker/commit/dd2ca51984e3ca0f7846af3c83d91ca…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M apache/docker-entrypoint.sh
M fpm-alpine/docker-entrypoint.sh
M fpm/docker-entrypoint.sh
Log Message:
-----------
Update files after 2313c19aed350158176f7c5725d89df065c2b425 (#247)
Signed-off-by: William Desportes <williamdes(a)wdes.fr>
Commit: b295aa6bf722a5e95d4b4b185e367e9a2d9c5916
https://github.com/phpmyadmin/docker/commit/b295aa6bf722a5e95d4b4b185e367e9…
Author: William Desportes <williamdes(a)wdes.fr>
Date: 2019-12-26 (Thu, 12 December 2019) +01:00
Changed paths:
M README.md
M apache/docker-entrypoint.sh
M docker-entrypoint.sh
M fpm-alpine/docker-entrypoint.sh
M fpm/docker-entrypoint.sh
M testing/phpmyadmin_test.py
Log Message:
-----------
Improve README and fix PMA_HOSTS and PMA_HOST
Signed-off-by: William Desportes <williamdes(a)wdes.fr>