Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libQuotient for openSUSE:Factory checked in at 2023-09-14 16:25:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libQuotient (Old) and /work/SRC/openSUSE:Factory/.libQuotient.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libQuotient" Thu Sep 14 16:25:27 2023 rev:14 rq:1110936 version:0.8.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libQuotient/libQuotient.changes 2023-09-12 21:02:55.380260400 +0200 +++ /work/SRC/openSUSE:Factory/.libQuotient.new.1766/libQuotient.changes 2023-09-14 16:28:03.951726790 +0200 @@ -1,0 +2,8 @@ +Wed Sep 13 12:07:48 UTC 2023 - ecsos <ec...@opensuse.org> + +- Update to 0.8.1.2 + * It turned out that version 0.8.1 is not entirely ABI compatible + with 0.8.0 as it should. This release is made solely to fix it; + there are no other changes. + +------------------------------------------------------------------- Old: ---- libQuotient-0.8.1.1.tar.gz New: ---- libQuotient-0.8.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libQuotient.spec ++++++ --- /var/tmp/diff_new_pack.IIpawi/_old 2023-09-14 16:28:05.079767088 +0200 +++ /var/tmp/diff_new_pack.IIpawi/_new 2023-09-14 16:28:05.083767231 +0200 @@ -1,7 +1,7 @@ # -# spec file for package libQuotient +# spec file # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,7 +27,7 @@ %define rname libQuotient %bcond_without e2ee Name: libQuotient%{?pkg_suffix} -Version: 0.8.1.1 +Version: 0.8.1.2 Release: 0 Summary: Library for Qt Matrix Clients License: LGPL-2.1-only @@ -37,8 +37,8 @@ BuildRequires: cmake # c++-20 required %if 0%{?suse_version} < 1550 -BuildRequires: gcc12-c++ BuildRequires: gcc12-PIE +BuildRequires: gcc12-c++ %endif BuildRequires: pkgconfig %if 0%{?qt6} ++++++ libQuotient-0.8.1.1.tar.gz -> libQuotient-0.8.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libQuotient-0.8.1.1/CMakeLists.txt new/libQuotient-0.8.1.2/CMakeLists.txt --- old/libQuotient-0.8.1.1/CMakeLists.txt 2023-08-19 11:13:57.000000000 +0200 +++ new/libQuotient-0.8.1.2/CMakeLists.txt 2023-09-12 11:42:55.000000000 +0200 @@ -4,7 +4,7 @@ endif() set(API_VERSION "0.8") -project(Quotient VERSION "${API_VERSION}.1.1" LANGUAGES CXX) +project(Quotient VERSION "${API_VERSION}.1.2" LANGUAGES CXX) message(STATUS) message(STATUS "Configuring ${PROJECT_NAME} ${PROJECT_VERSION} ==>") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libQuotient-0.8.1.1/Quotient/events/stickerevent.h new/libQuotient-0.8.1.2/Quotient/events/stickerevent.h --- old/libQuotient-0.8.1.1/Quotient/events/stickerevent.h 2023-08-19 11:13:57.000000000 +0200 +++ new/libQuotient-0.8.1.2/Quotient/events/stickerevent.h 2023-09-12 11:42:55.000000000 +0200 @@ -1,4 +1,4 @@ -// SDPX-FileCopyrightText: 2020 Carl Schwan <carlsch...@kde.org> +// SPDX-FileCopyrightText: 2020 Carl Schwan <carlsch...@kde.org> // SPDX-License-Identifier: LGPL-2.1-or-later #pragma once diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libQuotient-0.8.1.1/Quotient/room.cpp new/libQuotient-0.8.1.2/Quotient/room.cpp --- old/libQuotient-0.8.1.1/Quotient/room.cpp 2023-08-19 11:13:57.000000000 +0200 +++ new/libQuotient-0.8.1.2/Quotient/room.cpp 2023-09-12 11:42:55.000000000 +0200 @@ -1223,6 +1223,11 @@ return d->eventIdReadUsers.value(eventId); } +QSet<QString> Room::userIdsAtEvent(const QString& eventId) +{ + return d->eventIdReadUsers.value(eventId); +} + QSet<User*> Room::usersAtEventId(const QString& eventId) { const auto& userIds = d->eventIdReadUsers.value(eventId); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libQuotient-0.8.1.1/Quotient/room.h new/libQuotient-0.8.1.2/Quotient/room.h --- old/libQuotient-0.8.1.1/Quotient/room.h 2023-08-19 11:13:57.000000000 +0200 +++ new/libQuotient-0.8.1.2/Quotient/room.h 2023-09-12 11:42:55.000000000 +0200 @@ -514,6 +514,8 @@ //! \sa lastReadReceipt, allMembersLoaded QSet<QString> userIdsAtEvent(const QString& eventId) const; + QSet<QString> userIdsAtEvent(const QString& eventId); // See #706 + [[deprecated("Use userIdsAtEvent instead")]] QSet<User*> usersAtEventId(const QString& eventId);