Hello community,

here is the log from the commit of package akonadi-server for openSUSE:Factory 
checked in at 2017-09-12 19:41:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/akonadi-server (Old)
 and      /work/SRC/openSUSE:Factory/.akonadi-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "akonadi-server"

Tue Sep 12 19:41:18 2017 rev:34 rq:522463 version:17.08.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/akonadi-server/akonadi-server.changes    
2017-09-04 12:27:52.850727487 +0200
+++ /work/SRC/openSUSE:Factory/.akonadi-server.new/akonadi-server.changes       
2017-09-12 19:41:24.401081759 +0200
@@ -1,0 +2,27 @@
+Fri Sep  8 21:17:15 UTC 2017 - lbeltr...@kde.org
+
+- Add upstream patch correctly-return-mimetypes.patch:
+  * Fixes creating top-level folders in KMail (kde#350219)
+
+-------------------------------------------------------------------
+Thu Sep 07 07:01:08 CEST 2017 - lbeltr...@kde.org
+
+- Update to 17.08.1
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.08.1.php
+- Changes since 17.08.0:
+  * Workaround a weird misbehaviour of SQLite when checking tag RID
+  * TAGAPPEND: wrap the Tag creation into a db transaction
+  * Correctly report whether tag changed with SQLite
+  * Fix typos of "orphan"
+  * Fix replaying queries from aborted transactions
+  * Fix job tracker instance support
+  * Fix SQLite DB schema upgrade to version 35 (kde#384024)
+  * Add needed columns to QueryBuilder explicitly
+  * ETM: consider collections that don't match mimetype filter populated
+- Dropped patches, now usptream:
+  * consider-collections-that-not-match-mimetype.patch
+  * Fix-SQLite-DB-schema-upgrade.patch
+
+-------------------------------------------------------------------

Old:
----
  Fix-SQLite-DB-schema-upgrade.patch
  akonadi-17.08.0.tar.xz
  consider-collections-that-not-match-mimetype.patch

New:
----
  akonadi-17.08.1.tar.xz
  correctly-return-mimetypes.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ akonadi-server.spec ++++++
--- /var/tmp/diff_new_pack.8ADPl5/_old  2017-09-12 19:41:29.732332226 +0200
+++ /var/tmp/diff_new_pack.8ADPl5/_new  2017-09-12 19:41:29.748329977 +0200
@@ -20,7 +20,7 @@
 
 %define rname   akonadi
 Name:           akonadi-server
-Version:        17.08.0
+Version:        17.08.1
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
@@ -31,10 +31,7 @@
 Url:            http://akonadi-project.org
 Source:         %{rname}-%{version}.tar.xz
 Source99:       akonadi-server-rpmlintrc
-# PATCH-FIX-UPSTREAM
-Patch0:         Fix-SQLite-DB-schema-upgrade.patch
-# PATCH-FIX-UPSTREAM
-Patch1:         consider-collections-that-not-match-mimetype.patch
+Patch0:         correctly-return-mimetypes.patch
 %if 0%{?suse_version} > 1325
 BuildRequires:  libboost_headers-devel
 %else
@@ -177,7 +174,6 @@
 %prep
 %setup -q -n %{rname}-%{version}
 %patch0 -p1
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE 
-DQT_PLUGINS_DIR=%{_kf5_plugindir}

++++++ akonadi-17.08.0.tar.xz -> akonadi-17.08.1.tar.xz ++++++
++++ 4909 lines of diff (skipped)

++++++ correctly-return-mimetypes.patch ++++++
>From 97a191a5df7b307c70e662996c4846d3d586ff61 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= <dvra...@kde.org>
Date: Fri, 8 Sep 2017 17:09:54 +0200
Subject: LIST: correctly return mimetypes for all Collections

LIST was only returning mimetypes for Collections that were resolved in the
initial filter pass. All Collections that were resolved in the second pass
to complete the tree were missing mimetypes, because their IDs were not
passed to the mimetype query. This in included mainly Collections that
don't match the initial mimetype filter, like top-level Collections.

This caused, among other things, KMail to refuse to create Collections
under the top-level Collection, because the top-level Collections did
not match KMail's mimetype filter (inode/directory).

BUG: 350219
FIXED-IN: 5.6.2
---
 src/server/handler/list.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/server/handler/list.cpp b/src/server/handler/list.cpp
index 2f0584a..bfe8c6b 100644
--- a/src/server/handler/list.cpp
+++ b/src/server/handler/list.cpp
@@ -428,6 +428,7 @@ void List::retrieveCollections(const Collection &topParent, 
int depth)
             mCollections.insert(missingCol.id(), missingCol);
             ancestorIds << missingCol.id();
             attributeIds << missingCol.id();
+            mimeTypeIds << missingCol.id();
             //We have to do another round if the parents parent is missing
             if (missingCol.parentId() != parentId && 
!mCollections.contains(missingCol.parentId())) {
                 missingCollections.insert(missingCol.parentId());
-- 
cgit v0.11.2


Reply via email to