Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package matomo for openSUSE:Factory checked in at 2021-05-17 18:45:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/matomo (Old) and /work/SRC/openSUSE:Factory/.matomo.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "matomo" Mon May 17 18:45:17 2021 rev:29 rq:893676 version:4.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/matomo/matomo.changes 2021-03-30 20:51:54.160150149 +0200 +++ /work/SRC/openSUSE:Factory/.matomo.new.2988/matomo.changes 2021-05-17 18:45:44.892513253 +0200 @@ -1,0 +2,33 @@ +Mon May 17 08:45:18 UTC 2021 - ecsos <ec...@opensuse.org> + +- Update to 4.3.0 + * Breaking Changes + - Before every JS error was tracked, from this version the same + JS error will be only tracked once per page view. If the very + same error is happening multiple times, then it will be + tracked only once within the same page view. If another page + view is tracked or when the page reloads, then the error will + be tracked again. + - It's no longer possible to store any class instances directly + in the session object. Please use arrays or plain data instead. + * Upcoming Breaking Changes + - In Matomo 4.3.0 we have added a 'passwordConfirmation' + parameter to the CorePluginsAdmin.setSystemSettings API + method. It is currently optional, but will become mandatory + in version 4.4.0. Plugin developers and users of the API + should make sure to update their plugins and apps before this + happens. + * New config.ini.php settings + - The password_hash_algorithm, password_hash_argon2_threads, + password_hash_argon2_memory_cost and + password_hash_argon2_time_cost INI config options have been + added to allow using specific password_hash algorithms and + options if desired. + - The enable_php_profiler INI config option was added. This + must now be set to 1 before profiling is allowed in Matomo. + For a full changelog, look at: + https://github.com/matomo-org/matomo/releases/tag/4.2.1 + https://matomo.org/changelog/matomo-4-3-0/ +- Rebase matomo-package_update.patch. + +------------------------------------------------------------------- Old: ---- matomo-4.2.1.tar.gz New: ---- matomo-4.3.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ matomo.spec ++++++ --- /var/tmp/diff_new_pack.I4aqkV/_old 2021-05-17 18:45:45.728509706 +0200 +++ /var/tmp/diff_new_pack.I4aqkV/_new 2021-05-17 18:45:45.732509689 +0200 @@ -21,7 +21,7 @@ %{!?_tmpfilesdir:%global _tmpfilesdir %{_prefix}/lib/tmpfiles.d} Name: matomo -Version: 4.2.1 +Version: 4.3.0 Release: 0 Summary: Web analytics platform License: GPL-3.0-or-later ++++++ matomo-4.2.1.tar.gz -> matomo-4.3.0.tar.gz ++++++ /work/SRC/openSUSE:Factory/matomo/matomo-4.2.1.tar.gz /work/SRC/openSUSE:Factory/.matomo.new.2988/matomo-4.3.0.tar.gz differ: char 28, line 1 ++++++ matomo-package_update.patch ++++++ --- /var/tmp/diff_new_pack.I4aqkV/_old 2021-05-17 18:45:45.844509214 +0200 +++ /var/tmp/diff_new_pack.I4aqkV/_new 2021-05-17 18:45:45.848509197 +0200 @@ -1,15 +1,17 @@ -diff -Pdpru matomo.orig/plugins/CoreUpdater/Commands/Update.php matomo/plugins/CoreUpdater/Commands/Update.php ---- matomo.orig/plugins/CoreUpdater/Commands/Update.php 2020-11-23 20:20:18.000000000 +0100 -+++ matomo/plugins/CoreUpdater/Commands/Update.php 2020-11-24 14:16:58.087597130 +0100 -@@ -70,7 +70,11 @@ class Update extends ConsoleCommand - $this->writeSuccessMessage($output, array(Piwik::translate('CoreUpdater_DbUpgradeNotExecuted'))); - } +Index: matomo/plugins/CoreUpdater/Commands/Update.php +=================================================================== +--- 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'))); + } -+ // 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); -+ } ++ // 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); +- ++ } - - } catch(NoUpdatesFoundException $e) { + } catch (NoUpdatesFoundException $e) { + // Do not fail if no updates were found