Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package phpMyAdmin for openSUSE:Factory checked in at 2022-05-12 23:01:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/phpMyAdmin (Old) and /work/SRC/openSUSE:Factory/.phpMyAdmin.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "phpMyAdmin" Thu May 12 23:01:00 2022 rev:177 rq:976680 version:5.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin.changes 2022-02-11 23:12:16.631443619 +0100 +++ /work/SRC/openSUSE:Factory/.phpMyAdmin.new.1538/phpMyAdmin.changes 2022-05-12 23:02:01.908931452 +0200 @@ -1,0 +2,34 @@ +Thu May 12 13:11:56 UTC 2022 - ecsos <ec...@opensuse.org> + +- Update to 5.2.0 + * Bugfix + - issue #16521 Upgrade Bootstrap to version 5 + - issue #16521 Drop support for Internet Explorer and others + - issue Upgrade to shapefile 3 + - issue #16555 Bump minimum PHP version to 7.2 + - issue Remove the phpseclib dependency + - issue Upgrade Symfony components to version 5.2 + - issue Upgrade to Motranslator 4 + - issue #16005 Improve the performance of the Export logic + - issue #16829 Add NOT LIKE %...% operator to Table search + - issue #16845 Fixed some links not passing through url.php + - issue #16382 Remove apc upload progress method (all upload progress code was removed from the PHP extension) + - issue #16974 Replace zxcvbn by zxcvbn-ts + - issue #15691 Disable the last column checkbox in the column list dropdown instead of not allowing un-check + - issue #16138 Ignore the length of integer types and show a warning on MySQL >= 8.0.18 + - issue Add support for the Mroonga engine + - issue Double click column name to directly copy to clipboard + - issue #16425 Add DELETE FROM table on table operations page + - issue #16482 Add a select all link for table-specific privileges + - issue #14276 Add support for account locking + - issue #17143 Use composer/ca-bundle to manage the CA cert file + - issue #17143 Require the openssl PHP extension + - issue #17171 Remove the printview.css file from themes + - issue #17203 Redesign the export and the import pages + - issue #16197 Replace the master/slave terminology + - issue #17257 Replace libraries/vendor_config.php constants with an array + - issue Add the Bootstrap theme + - issue #17499 Remove stickyfilljs JavaScript dependency +- Rebase phpMyAdmin-config.patch. + +------------------------------------------------------------------- @@ -4899 +4932,0 @@ - Old: ---- phpMyAdmin-5.1.3-all-languages.tar.xz phpMyAdmin-5.1.3-all-languages.tar.xz.asc New: ---- phpMyAdmin-5.2.0-all-languages.tar.xz phpMyAdmin-5.2.0-all-languages.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ phpMyAdmin.spec ++++++ --- /var/tmp/diff_new_pack.H4N9VH/_old 2022-05-12 23:02:02.548932311 +0200 +++ /var/tmp/diff_new_pack.H4N9VH/_new 2022-05-12 23:02:02.560932327 +0200 @@ -25,7 +25,7 @@ %define apache_group nogroup %endif Name: phpMyAdmin -Version: 5.1.3 +Version: 5.2.0 Release: 0 Summary: Administration of MySQL over the web License: GPL-2.0-or-later @@ -137,7 +137,7 @@ %install #%%{__install} -d -m0750 $RPM_BUILD_ROOT%%{_sysconfdir}/%%{name} install -d -m0755 %{buildroot}%{ap_docroot}/%{name} -cp -dR *.css *.php *.ico *.txt js libraries locale themes templates vendor \ +cp -dR *.php *.ico *.txt js libraries locale themes templates vendor \ %{buildroot}%{ap_docroot}/%{name} # install config to config dir install -D -m0640 %{buildroot}%{ap_docroot}/%{name}/config.sample.inc.php \ ++++++ phpMyAdmin-5.1.3-all-languages.tar.xz -> phpMyAdmin-5.2.0-all-languages.tar.xz ++++++ /work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin-5.1.3-all-languages.tar.xz /work/SRC/openSUSE:Factory/.phpMyAdmin.new.1538/phpMyAdmin-5.2.0-all-languages.tar.xz differ: char 26, line 1 ++++++ phpMyAdmin-config.patch ++++++ --- /var/tmp/diff_new_pack.H4N9VH/_old 2022-05-12 23:02:02.604932386 +0200 +++ /var/tmp/diff_new_pack.H4N9VH/_new 2022-05-12 23:02:02.604932386 +0200 @@ -250,41 +250,50 @@ =================================================================== --- libraries/vendor_config.php.orig +++ libraries/vendor_config.php -@@ -24,31 +24,31 @@ define('AUTOLOAD_FILE', ROOT_PATH . 'ven - /** - * Directory where cache files are stored. - */ --define('TEMP_DIR', ROOT_PATH . 'tmp' . DIRECTORY_SEPARATOR); -+define('TEMP_DIR', '@tmpdir@' . DIRECTORY_SEPARATOR); - - /** - * Path to changelog file, can be gzip compressed. Useful when you want to - * have documentation somewhere else, eg. /usr/share/doc. - */ --define('CHANGELOG_FILE', ROOT_PATH . 'ChangeLog'); -+define('CHANGELOG_FILE', '@docdir@' . DIRECTORY_SEPARATOR . 'ChangeLog'); - - /** - * Path to license file. Useful when you want to have documentation somewhere - * else, eg. /usr/share/doc. - */ --define('LICENSE_FILE', ROOT_PATH . 'LICENSE'); -+define('LICENSE_FILE', '@docdir@' . DIRECTORY_SEPARATOR . 'LICENSE'); - - /** - * Directory where SQL scripts to create/upgrade configuration storage reside. - */ --define('SQL_DIR', ROOT_PATH . 'sql' . DIRECTORY_SEPARATOR); -+define('SQL_DIR', '@docdir@' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR); - - /** - * Directory where configuration files are stored. - * It is not used directly in code, just a convenient - * define used further in this file. - */ --define('CONFIG_DIR', ROOT_PATH); -+define('CONFIG_DIR', '@sysconfdir@' . DIRECTORY_SEPARATOR); +@@ -22,38 +22,38 @@ return [ + /** + * Directory where cache files are stored. + */ +- 'tempDir' => ROOT_PATH . 'tmp' . DIRECTORY_SEPARATOR, ++ 'tempDir' => '@tmpdir@' . DIRECTORY_SEPARATOR, - /** - * Filename of a configuration file. + /** + * Path to changelog file, can be gzip compressed. + * Useful when you want to have documentation somewhere else, e.g. /usr/share/doc. + */ +- 'changeLogFile' => ROOT_PATH . 'ChangeLog', ++ 'changeLogFile' => '@docdir@' . DIRECTORY_SEPARATOR . 'ChangeLog', + + /** + * Path to license file. Useful when you want to have documentation somewhere else, e.g. /usr/share/doc. + */ +- 'licenseFile' => ROOT_PATH . 'LICENSE', ++ 'licenseFile' => '@docdir@' . DIRECTORY_SEPARATOR . 'LICENSE', + + /** + * Directory where SQL scripts to create/upgrade configuration storage reside. + */ +- 'sqlDir' => ROOT_PATH . 'sql' . DIRECTORY_SEPARATOR, ++ 'sqlDir' => '@docdir@' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR, + + /** + * Filename of a configuration file. + */ +- 'configFile' => ROOT_PATH . 'config.inc.php', ++ 'configFile' => '@sysconfdir@' . DIRECTORY_SEPARATOR . 'config.inc.php', + + /** + * Filename of custom header file. + */ +- 'customHeaderFile' => ROOT_PATH . 'config.header.inc.php', ++ 'customHeaderFile' => '@sysconfdir@' . DIRECTORY_SEPARATOR . 'config.header.inc.php', + + /** + * Filename of custom footer file. + */ +- 'customFooterFile' => ROOT_PATH . 'config.footer.inc.php', ++ 'customFooterFile' => '@sysconfdir@' . DIRECTORY_SEPARATOR . 'config.footer.inc.php', + + /** + * Default value for check for version upgrades.