Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-nbxmpp for openSUSE:Factory checked in at 2023-01-16 17:58:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-nbxmpp (Old) and /work/SRC/openSUSE:Factory/.python-nbxmpp.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-nbxmpp" Mon Jan 16 17:58:57 2023 rev:38 rq:1058641 version:4.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-nbxmpp/python-nbxmpp.changes 2023-01-14 00:04:33.718180691 +0100 +++ /work/SRC/openSUSE:Factory/.python-nbxmpp.new.32243/python-nbxmpp.changes 2023-01-16 18:01:29.131685673 +0100 @@ -1,0 +2,6 @@ +Fri Jan 13 21:41:22 UTC 2023 - Alexei Sorokin <sor.ale...@meowr.ru> + +- Update to version 4.0.1: + * HTTP: Parse uri with correct flags. + +------------------------------------------------------------------- Old: ---- python-nbxmpp-4.0.0.tar.bz2 New: ---- python-nbxmpp-4.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-nbxmpp.spec ++++++ --- /var/tmp/diff_new_pack.pQu2zF/_old 2023-01-16 18:01:29.723688995 +0100 +++ /var/tmp/diff_new_pack.pQu2zF/_new 2023-01-16 18:01:29.727689017 +0100 @@ -24,7 +24,7 @@ %endif %define _name nbxmpp Name: python-nbxmpp -Version: 4.0.0 +Version: 4.0.1 Release: 0 Summary: XMPP library by Gajim team License: GPL-3.0-or-later ++++++ python-nbxmpp-4.0.0.tar.bz2 -> python-nbxmpp-4.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-nbxmpp-4.0.0/ChangeLog new/python-nbxmpp-4.0.1/ChangeLog --- old/python-nbxmpp-4.0.0/ChangeLog 2023-01-06 14:54:55.000000000 +0100 +++ new/python-nbxmpp-4.0.1/ChangeLog 2023-01-13 22:38:32.000000000 +0100 @@ -1,3 +1,9 @@ +nbxmpp 4.0.1 (10 Jan 2023) + + Bug Fixes + + * HTTP: Parse uri with correct flags + nbxmpp 4.0.0 (06 Jan 2023) New diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-nbxmpp-4.0.0/nbxmpp/__init__.py new/python-nbxmpp-4.0.1/nbxmpp/__init__.py --- old/python-nbxmpp-4.0.0/nbxmpp/__init__.py 2023-01-06 14:54:55.000000000 +0100 +++ new/python-nbxmpp-4.0.1/nbxmpp/__init__.py 2023-01-13 22:38:32.000000000 +0100 @@ -3,4 +3,4 @@ from .protocol import * # pylint: disable=wrong-import-position -__version__: str = '4.0.0' +__version__: str = '4.0.1' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-nbxmpp-4.0.0/nbxmpp/http.py new/python-nbxmpp-4.0.1/nbxmpp/http.py --- old/python-nbxmpp-4.0.0/nbxmpp/http.py 2023-01-06 14:54:55.000000000 +0100 +++ new/python-nbxmpp-4.0.1/nbxmpp/http.py 2023-01-13 22:38:32.000000000 +0100 @@ -252,7 +252,7 @@ Gio.FileCreateFlags.REPLACE_DESTINATION, self._cancellable) - uri = GLib.Uri.parse(uri_string, GLib.UriFlags.HAS_PASSWORD) + uri = GLib.Uri.parse(uri_string, GLib.UriFlags(Soup.HTTP_URI_FLAGS)) self._message.set_uri(uri) if self._request_body_data is not None: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-nbxmpp-4.0.0/setup.cfg new/python-nbxmpp-4.0.1/setup.cfg --- old/python-nbxmpp-4.0.0/setup.cfg 2023-01-06 14:54:55.000000000 +0100 +++ new/python-nbxmpp-4.0.1/setup.cfg 2023-01-13 22:38:32.000000000 +0100 @@ -1,6 +1,6 @@ [metadata] name = nbxmpp -version = 4.0.0 +version = 4.0.1 description = XMPP Library author = Yann Leboulanger, Philipp Hoerist author_email = gajim-de...@gajim.org