Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package matomo for openSUSE:Factory checked in at 2023-12-19 23:16:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/matomo (Old) and /work/SRC/openSUSE:Factory/.matomo.new.9037 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "matomo" Tue Dec 19 23:16:43 2023 rev:56 rq:1134024 version:5.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/matomo/matomo.changes 2023-11-30 22:01:09.660705606 +0100 +++ /work/SRC/openSUSE:Factory/.matomo.new.9037/matomo.changes 2023-12-19 23:17:06.940337218 +0100 @@ -1,0 +2,8 @@ +Tue Dec 19 09:41:27 UTC 2023 - ecsos <ec...@opensuse.org> + +- Update to 5.0.0 + Too many changes to list here. See instead: + https://matomo.org/changelog/matomo-5-0-0/ +- Rebase matomo-package_update.patch + +------------------------------------------------------------------- Old: ---- matomo-4.16.0.tar.gz New: ---- matomo-5.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ matomo.spec ++++++ --- /var/tmp/diff_new_pack.EZqUAO/_old 2023-12-19 23:17:07.720365622 +0100 +++ /var/tmp/diff_new_pack.EZqUAO/_new 2023-12-19 23:17:07.720365622 +0100 @@ -21,7 +21,7 @@ %{!?_tmpfilesdir:%global _tmpfilesdir %{_prefix}/lib/tmpfiles.d} Name: matomo -Version: 4.16.0 +Version: 5.0.0 Release: 0 Summary: Web analytics platform License: GPL-3.0-or-later @@ -123,7 +123,7 @@ sed -i "/\W\"${i}\"\W/d" config/manifest.inc.php done # Insert new hashes for chanded files -for file in console 'vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php' 'config/global.ini.php' 'core/CliMulti/Output.php' 'plugins/CoreUpdater/Commands/Update.php' 'vendor/matomo/matomo-php-tracker/run_tests.sh' 'vendor/wikimedia/less.php/bin/lessc' 'misc/log-analytics/import_logs.py' 'core/CliMulti.php' +for file in console 'vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php' 'config/global.ini.php' 'core/CliMulti/Output.php' 'plugins/CoreUpdater/Commands/Update.php' 'vendor/matomo/matomo-php-tracker/run_tests.sh' 'vendor/wikimedia/less.php/bin/lessc' 'misc/log-analytics/import_logs.py' 'core/CliMulti.php' 'vendor/symfony/error-handler/Resources/bin/extract-tentative-return-types.php' 'vendor/symfony/error-handler/Resources/bin/patch-type-declarations' 'vendor/symfony/var-dumper/Resources/bin/var-dump-server' do size=$(ls -l $file | awk '{ print $5 }') checksum=$(md5sum $file | awk '{ print $1 }') ++++++ matomo-4.16.0.tar.gz -> matomo-5.0.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/matomo/matomo-4.16.0.tar.gz /work/SRC/openSUSE:Factory/.matomo.new.9037/matomo-5.0.0.tar.gz differ: char 13, line 1 ++++++ matomo-package_update.patch ++++++ --- /var/tmp/diff_new_pack.EZqUAO/_old 2023-12-19 23:17:07.824369410 +0100 +++ /var/tmp/diff_new_pack.EZqUAO/_new 2023-12-19 23:17:07.824369410 +0100 @@ -3,13 +3,13 @@ --- matomo.orig/plugins/CoreUpdater/Commands/Update.php +++ matomo/plugins/CoreUpdater/Commands/Update.php @@ -79,8 +79,11 @@ class Update extends ConsoleCommand - $this->writeSuccessMessage($output, array(Piwik::translate('CoreUpdater_DbUpgradeNotExecuted'))); + $this->writeSuccessMessage(array(Piwik::translate('CoreUpdater_DbUpgradeNotExecuted'))); } + // Only show if autoupdate is enabled. Don't show if update through distribution package update. + $enableAutoUpdate = (bool) Config::getInstance()->General['enable_auto_update']; + if ($enableAutoUpdate === true){ - $this->writeAlertMessageWhenCommandExecutedWithUnexpectedUser($output); + $this->writeAlertMessageWhenCommandExecutedWithUnexpectedUser(); - + }