Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plasma5-disks for openSUSE:Factory checked in at 2021-07-09 23:58:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma5-disks (Old) and /work/SRC/openSUSE:Factory/.plasma5-disks.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-disks" Fri Jul 9 23:58:35 2021 rev:16 rq:904525 version:5.22.3 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma5-disks/plasma5-disks.changes 2021-06-27 19:00:09.720361194 +0200 +++ /work/SRC/openSUSE:Factory/.plasma5-disks.new.2625/plasma5-disks.changes 2021-07-09 23:59:56.648242311 +0200 @@ -1,0 +2,10 @@ +Tue Jul 6 12:01:49 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.22.3 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.22.2 +- Changes since 5.22.2.1: + * don't notify on instabilities + +------------------------------------------------------------------- Old: ---- plasma-disks-5.22.2.1.tar.xz plasma-disks-5.22.2.1.tar.xz.sig New: ---- plasma-disks-5.22.3.tar.xz plasma-disks-5.22.3.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma5-disks.spec ++++++ --- /var/tmp/diff_new_pack.MpcXI6/_old 2021-07-09 23:59:57.492235748 +0200 +++ /var/tmp/diff_new_pack.MpcXI6/_new 2021-07-09 23:59:57.496235717 +0200 @@ -23,15 +23,15 @@ %bcond_without lang Name: plasma5-disks -Version: 5.22.2.1 +Version: 5.22.3 Release: 0 Summary: Plasma service for monitoring disk health License: GPL-2.0-only OR GPL-3.0-only Group: System/GUI/KDE URL: http://www.kde.org -Source: https://download.kde.org/stable/plasma/5.22.2/plasma-disks-%{version}.tar.xz +Source: https://download.kde.org/stable/plasma/%{version}/plasma-disks-%{version}.tar.xz %if %{with lang} -Source1: https://download.kde.org/stable/plasma/5.22.2/plasma-disks-%{version}.tar.xz.sig +Source1: https://download.kde.org/stable/plasma/%{version}/plasma-disks-%{version}.tar.xz.sig Source2: plasma.keyring %endif BuildRequires: cmake >= 3.16 ++++++ plasma-disks-5.22.2.1.tar.xz -> plasma-disks-5.22.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-disks-5.22.2.1/CMakeLists.txt new/plasma-disks-5.22.3/CMakeLists.txt --- old/plasma-disks-5.22.2.1/CMakeLists.txt 2021-06-22 21:07:00.000000000 +0200 +++ new/plasma-disks-5.22.3/CMakeLists.txt 2021-07-06 12:26:27.000000000 +0200 @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.16) project(plasma-disks) -set(PROJECT_VERSION "5.22.2") +set(PROJECT_VERSION "5.22.3") set(QT_MIN_VERSION "5.15.0") set(KF5_MIN_VERSION "5.82") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-disks-5.22.2.1/org.kde.plasma.disks.metainfo.xml new/plasma-disks-5.22.3/org.kde.plasma.disks.metainfo.xml --- old/plasma-disks-5.22.2.1/org.kde.plasma.disks.metainfo.xml 2021-06-22 21:07:00.000000000 +0200 +++ new/plasma-disks-5.22.3/org.kde.plasma.disks.metainfo.xml 2021-07-06 12:26:27.000000000 +0200 @@ -177,9 +177,9 @@ <category>System</category> </categories> <releases> + <release version="5.22.3" date="2021-07-06"/> <release version="5.22.2" date="2021-06-22"/> <release version="5.22.1" date="2021-06-15"/> <release version="5.21.5" date="2021-05-04"/> - <release version="5.21.4" date="2021-04-06"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-disks-5.22.2.1/src/smartnotifier.cpp new/plasma-disks-5.22.3/src/smartnotifier.cpp --- old/plasma-disks-5.22.2.1/src/smartnotifier.cpp 2021-06-22 21:07:00.000000000 +0200 +++ new/plasma-disks-5.22.3/src/smartnotifier.cpp 2021-07-06 12:26:27.000000000 +0200 @@ -84,9 +84,10 @@ void SMARTNotifier::maybeFailed(const Device *device) { Q_ASSERT(device); - // We notify on instabilities in the hopes that there won't be false positives. - // Might need revisiting. - if ((!device->failed() && device->instabilities().isEmpty()) || device->ignore()) { + // NB: do not notify on instabilities in 5.22 it's shown to raise false positives or at least be annoying when + // failure seems unlikely. fixing it properly requires larger changes to the UI and strings + // https://bugs.kde.org/show_bug.cgi?id=438539 + if ((!device->failed() /*&& device->instabilities().isEmpty()*/) || device->ignore()) { return; }