Hello community, here is the log from the commit of package akonadi-server for openSUSE:Factory checked in at 2020-10-12 13:57:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/akonadi-server (Old) and /work/SRC/openSUSE:Factory/.akonadi-server.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "akonadi-server" Mon Oct 12 13:57:44 2020 rev:75 rq:841152 version:20.08.2 Changes: -------- --- /work/SRC/openSUSE:Factory/akonadi-server/akonadi-server.changes 2020-09-09 17:53:33.882749408 +0200 +++ /work/SRC/openSUSE:Factory/.akonadi-server.new.3486/akonadi-server.changes 2020-10-12 13:59:11.838213161 +0200 @@ -1,0 +2,22 @@ +Mon Oct 12 07:01:33 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Add patch to fix reloading of external calendar files (kde#427358) + * 0001-Bug-427358-akonadi_ical_resource-stuck-in-InvalideCa.patch + +------------------------------------------------------------------- +Fri Oct 9 05:42:40 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.08.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/releases/2020-10-apps-update +- Changes since 20.08.1: + * Fix AppArmor policy for Mariadb 10.5. (kde#425606) + * Fix(apparmor/postgres): Add kill signals. + * Fix(postgresql): Initialise database without locale en_US.UTF8 avalaible systemwide (kde##417721) + * Fix cancelation of CollectionSync + * AgentBase: Fix crash in setOnline (kde#418844) +- Dropped patches, now upstream: + * 0001-AgentBase-Fix-crash-in-setOnline.patch + +------------------------------------------------------------------- Old: ---- 0001-AgentBase-Fix-crash-in-setOnline.patch akonadi-20.08.1.tar.xz akonadi-20.08.1.tar.xz.sig New: ---- 0001-Bug-427358-akonadi_ical_resource-stuck-in-InvalideCa.patch akonadi-20.08.2.tar.xz akonadi-20.08.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ akonadi-server.spec ++++++ --- /var/tmp/diff_new_pack.MZqPHG/_old 2020-10-12 13:59:12.486213430 +0200 +++ /var/tmp/diff_new_pack.MZqPHG/_new 2020-10-12 13:59:12.490213432 +0200 @@ -22,7 +22,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: akonadi-server -Version: 20.08.1 +Version: 20.08.2 Release: 0 Summary: PIM Storage Service License: LGPL-2.1-or-later @@ -30,7 +30,8 @@ URL: https://akonadi-project.org Source: https://download.kde.org/stable/release-service/%{version}/src/%{rname}-%{version}.tar.xz Source99: akonadi-server-rpmlintrc -Patch0: 0001-AgentBase-Fix-crash-in-setOnline.patch +# PATCH-FIX-UPSTREAM +Patch0: 0001-Bug-427358-akonadi_ical_resource-stuck-in-InvalideCa.patch BuildRequires: extra-cmake-modules >= %{kf5_version} BuildRequires: kf5-filesystem BuildRequires: libQt5Sql-private-headers-devel ++++++ 0001-Bug-427358-akonadi_ical_resource-stuck-in-InvalideCa.patch ++++++ >From b2e4ee76d5831df075349a5a597c371a4d9c1460 Mon Sep 17 00:00:00 2001 From: Laurent Montel <mon...@kde.org> Date: Sun, 11 Oct 2020 19:43:58 +0200 Subject: [PATCH] Bug 427358 - akonadi_ical_resource stuck in InvalideCacheForCollection Readd code removed. Thanks for Markus for debugging it BUG: 427358 FIXED-IN: 5.15.3 --- src/agentbase/resourcebase.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/agentbase/resourcebase.cpp b/src/agentbase/resourcebase.cpp index 0aa276b21..093b69f74 100644 --- a/src/agentbase/resourcebase.cpp +++ b/src/agentbase/resourcebase.cpp @@ -668,7 +668,8 @@ void ResourceBasePrivate::slotCollectionDeletionDone(KJob *job) void ResourceBasePrivate::slotInvalidateCache(const Akonadi::Collection &collection) { Q_Q(ResourceBase); - new InvalidateCacheJob(collection, q); + InvalidateCacheJob *job = new InvalidateCacheJob(collection, q); + connect(job, &KJob::result, scheduler, &ResourceScheduler::taskDone); } void ResourceBase::changeCommitted(const Item &item) -- 2.28.0 ++++++ akonadi-20.08.1.tar.xz -> akonadi-20.08.2.tar.xz ++++++ ++++ 5405 lines of diff (skipped)