Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 873eb098b922638d33a7748fedc3b33ead33227c
https://github.com/phpmyadmin/phpmyadmin/commit/873eb098b922638d33a7748fedc…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2022-09-13 (Tue, 09 September 2022) -03:00
Changed paths:
M libraries/classes/Controllers/Export/ExportController.php
M libraries/classes/Export.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportCodegen.php
M libraries/classes/Plugins/Export/ExportCsv.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/README.md
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Setup/ConfigGenerator.php
M libraries/classes/Tracker.php
M psalm-baseline.xml
M psalm.xml
M test/classes/ExportTest.php
M test/classes/Plugins/Export/ExportCodegenTest.php
M test/classes/Plugins/Export/ExportCsvTest.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
Log Message:
-----------
Remove crlf global variable
The crlf global variable is only diferent for SQL export method,
otherwise is always the value of the PHP_EOL constant.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Commit: 344981d57ddfb00052508d23d222dd8bda53703e
https://github.com/phpmyadmin/phpmyadmin/commit/344981d57ddfb00052508d23d22…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2022-09-13 (Tue, 09 September 2022) -03:00
Changed paths:
M libraries/classes/Controllers/Export/ExportController.php
M libraries/classes/Export.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportCodegen.php
M libraries/classes/Plugins/Export/ExportCsv.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/README.md
M libraries/classes/Plugins/ExportPlugin.php
M libraries/classes/Setup/ConfigGenerator.php
M libraries/classes/Tracker.php
M psalm-baseline.xml
M psalm.xml
M test/classes/ExportTest.php
M test/classes/Plugins/Export/ExportCodegenTest.php
M test/classes/Plugins/Export/ExportCsvTest.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
Log Message:
-----------
Merge pull request #17723 from MauricioFauth/crlf-global
Remove `crlf` global variable
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: e96fab654df405595b9f42c5a4eba04f80344cc1
https://github.com/phpmyadmin/phpmyadmin/commit/e96fab654df405595b9f42c5a4e…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2022-09-11 (Sun, 09 September 2022) -03:00
Changed paths:
M libraries/classes/Database/Routines.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbal/DbalInterface.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportXml.php
M psalm-baseline.xml
M test/classes/Database/RoutinesTest.php
M test/classes/Plugins/Export/ExportXmlTest.php
Log Message:
-----------
Move DBI's getProceduresOrFunctions into Routines class
Splits the method into Routines::getFunctionNames and
Routines::getProcedureNames and adds tests.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 7975f5fb05befd63e10408a9c34a3ffff56a2515
https://github.com/phpmyadmin/phpmyadmin/commit/7975f5fb05befd63e10408a9c34…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2022-09-11 (Sun, 09 September 2022) -03:00
Changed paths:
M libraries/classes/Database/Events.php
M libraries/classes/Database/Routines.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbal/DbalInterface.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportSql.php
M libraries/classes/Plugins/Export/ExportXml.php
M phpstan-baseline.neon
M psalm-baseline.xml
M test/classes/Plugins/Export/ExportSqlTest.php
M test/classes/Plugins/Export/ExportXmlTest.php
Log Message:
-----------
Move DBI's getDefinition into the Routines and Events classes
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 866bd70f4828e2d850c3ff846ed2d7e28ad52866
https://github.com/phpmyadmin/phpmyadmin/commit/866bd70f4828e2d850c3ff846ed…
Author: phpMyAdmin bot <bot(a)phpmyadmin.net>
Date: 2022-09-11 (Sun, 09 September 2022) +00:00
Changed paths:
M po/af.po
M po/am.po
M po/ar.po
M po/ar_LY.po
M po/az.po
M po/be.po
M po/be(a)latin.po
M po/ber.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/enm.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/rcf.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/tzm.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: phpMyAdmin bot <bot(a)phpmyadmin.net>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: a8421efd56011cb2917f358ca26bea2a7168c230
https://github.com/phpmyadmin/phpmyadmin/commit/a8421efd56011cb2917f358ca26…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2022-09-10 (Sat, 09 September 2022) -03:00
Changed paths:
M libraries/classes/Database/Triggers.php
M libraries/classes/DatabaseInterface.php
M libraries/classes/Dbal/DbalInterface.php
M libraries/classes/Operations.php
M libraries/classes/Plugins/Export/ExportHtmlword.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/Helpers/Pdf.php
M libraries/classes/Table.php
M phpstan-baseline.neon
M psalm-baseline.xml
M test/classes/Plugins/Export/ExportHtmlwordTest.php
M test/classes/Plugins/Export/ExportOdtTest.php
M test/classes/Plugins/Export/ExportTexytextTest.php
M test/classes/Plugins/Export/ExportXmlTest.php
M test/classes/TableTest.php
Log Message:
-----------
Move DBI getTriggers method into the Triggers class
DatabaseInterface::getTriggers -> Database\Triggers::getDetails
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>