From 63442f4e118dd59250f45734dd1238084b02f0734070e48cae4d0caf6ba3926d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 7 Apr 2020 06:12:45 +0000 Subject: [PATCH 1/2] Accepting request 791849 from home:vinzv:branches:network - Update to 1.2.1. Changes since 1.1.0: * QXmppRegistrationManager: Fix failed and succeeded signals are both emitted on success * QXmppMessageReceiptManager: Fix receipts are sent on error messages * QXmppVCardManager: Fix clientVCardReceived() not emitted when IQ is from the bare JID of the user * QXmppRosterManager: Fix 'ask' attribute is included when renaming item * QXmppRosterIq: Add missing implementation of the copy constructor * Implement XEP-0077: In-band registration: * Add registration manager with full unit tests * Add `registered` and `remove` to the IQ * Implement XEP-0231: Bits of Binary * Add `QXmppClient::indexOfExtension()` * Add QXmppStartTlsPacket to replace fixed XML data * Move TLS code to private QXmppTlsManager * Add private QXmppInternalClientExtensions to access private part of the client * Add utility methods to QXmppRegisterIq to create common requests * QXmppMucManager: Make it possible to handle stanzas not handled by the manager * Only send Client State Indication (CSI) states when connected * Fix no documentation is generated for QXmppStanza::Error and QXmppStreamFeatures * Fix some doxygen warnings and undocumented Q_PROPERTYs * Replace deprecated Q_FOREACH * Replace deprecated Q_ENUMS with Q_ENUM * Replace deprecated signal/slots syntax * Switch to Ubuntu Bionic for Travis-CI builds * Use QSharedDataPointers for QXmppRegisterIq, QXmppPubSubIq, QXmppDiscoveryIq, QXmppMam{Query,Result}Iq, QXmppStreamFeatures * Refactor QXmppPubSubIq and add missing tests * Refactor QXmppPresence and add missing tests * Replace manual xmlns writing by writeDefaultNamespace() * Use QT_VERSION_CHECK to generate QXMPP_VERSION * Add clang-format file - Fixed shlib-policy-name-error libqxmpp2 (sover bump up to 3). OBS-URL: https://build.opensuse.org/request/show/791849 OBS-URL: https://build.opensuse.org/package/show/network/libqxmpp?expand=0&rev=25 --- libqxmpp-1.1.0.tar.gz | 3 --- libqxmpp-1.2.1.tar.gz | 3 +++ libqxmpp.changes | 40 ++++++++++++++++++++++++++++++++++++++++ libqxmpp.spec | 4 ++-- 4 files changed, 45 insertions(+), 5 deletions(-) delete mode 100644 libqxmpp-1.1.0.tar.gz create mode 100644 libqxmpp-1.2.1.tar.gz diff --git a/libqxmpp-1.1.0.tar.gz b/libqxmpp-1.1.0.tar.gz deleted file mode 100644 index 91302cb..0000000 --- a/libqxmpp-1.1.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d7da61c71ae816dbce724d4e717661e64dad300f2f079296ff65b88e8ca0676 -size 286791 diff --git a/libqxmpp-1.2.1.tar.gz b/libqxmpp-1.2.1.tar.gz new file mode 100644 index 0000000..f5d6ed1 --- /dev/null +++ b/libqxmpp-1.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83eb44e2b21b070a7568b2b234e269a6ab7c64007728d62b01487de843688ee +size 312945 diff --git a/libqxmpp.changes b/libqxmpp.changes index fd32654..6e0f35b 100644 --- a/libqxmpp.changes +++ b/libqxmpp.changes @@ -1,3 +1,43 @@ +------------------------------------------------------------------- +Mon Apr 6 19:36:39 UTC 2020 - Vinzenz Vietzke + +- Update to 1.2.1. Changes since 1.1.0: + * QXmppRegistrationManager: Fix failed and succeeded signals are both emitted + on success + * QXmppMessageReceiptManager: Fix receipts are sent on error messages + * QXmppVCardManager: Fix clientVCardReceived() not emitted when IQ is from the + bare JID of the user + * QXmppRosterManager: Fix 'ask' attribute is included when renaming item + * QXmppRosterIq: Add missing implementation of the copy constructor + * Implement XEP-0077: In-band registration: + * Add registration manager with full unit tests + * Add `registered` and `remove` to the IQ + * Implement XEP-0231: Bits of Binary + * Add `QXmppClient::indexOfExtension()` + * Add QXmppStartTlsPacket to replace fixed XML data + * Move TLS code to private QXmppTlsManager + * Add private QXmppInternalClientExtensions to access private part of the + client + * Add utility methods to QXmppRegisterIq to create common requests + * QXmppMucManager: Make it possible to handle stanzas not handled by the + manager + * Only send Client State Indication (CSI) states when connected + * Fix no documentation is generated for QXmppStanza::Error and + QXmppStreamFeatures + * Fix some doxygen warnings and undocumented Q_PROPERTYs + * Replace deprecated Q_FOREACH + * Replace deprecated Q_ENUMS with Q_ENUM + * Replace deprecated signal/slots syntax + * Switch to Ubuntu Bionic for Travis-CI builds + * Use QSharedDataPointers for QXmppRegisterIq, QXmppPubSubIq, + QXmppDiscoveryIq, QXmppMam{Query,Result}Iq, QXmppStreamFeatures + * Refactor QXmppPubSubIq and add missing tests + * Refactor QXmppPresence and add missing tests + * Replace manual xmlns writing by writeDefaultNamespace() + * Use QT_VERSION_CHECK to generate QXMPP_VERSION + * Add clang-format file +- Fixed shlib-policy-name-error libqxmpp2 (sover bump up to 3). + ------------------------------------------------------------------- Mon Nov 18 05:20:47 UTC 2019 - Dmitriy Perlow diff --git a/libqxmpp.spec b/libqxmpp.spec index 37c266f..aef3b6b 100644 --- a/libqxmpp.spec +++ b/libqxmpp.spec @@ -16,9 +16,9 @@ # -%define sover 2 +%define sover 3 Name: libqxmpp -Version: 1.1.0 +Version: 1.2.1 Release: 0 Summary: Qt XMPP Library License: LGPL-2.1-or-later From e8806456b1b6d443f19ea3f5d1e5298a0a43759adbf7091b030555ab6c85535c Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 21 May 2020 11:05:11 +0000 Subject: [PATCH 2/2] Accepting request 807185 from home:wolfi323:branches:network - Fix baselibs.conf following the sover bump OBS-URL: https://build.opensuse.org/request/show/807185 OBS-URL: https://build.opensuse.org/package/show/network/libqxmpp?expand=0&rev=26 --- baselibs.conf | 2 +- libqxmpp.changes | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/baselibs.conf b/baselibs.conf index ec9bb0b..cd3c4bc 100644 --- a/baselibs.conf +++ b/baselibs.conf @@ -1 +1 @@ -libqxmpp2 +libqxmpp3 diff --git a/libqxmpp.changes b/libqxmpp.changes index 6e0f35b..3b3d70a 100644 --- a/libqxmpp.changes +++ b/libqxmpp.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 19 10:00:23 UTC 2020 - Wolfgang Bauer + +- Fix baselibs.conf following the sover bump + ------------------------------------------------------------------- Mon Apr 6 19:36:39 UTC 2020 - Vinzenz Vietzke