Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rygel for openSUSE:Factory checked in at 2023-04-24 22:31:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rygel (Old) and /work/SRC/openSUSE:Factory/.rygel.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rygel" Mon Apr 24 22:31:29 2023 rev:92 rq:1082381 version:0.42.3 Changes: -------- --- /work/SRC/openSUSE:Factory/rygel/rygel.changes 2023-04-03 17:46:29.922684787 +0200 +++ /work/SRC/openSUSE:Factory/.rygel.new.1533/rygel.changes 2023-04-24 22:31:40.743676772 +0200 @@ -1,0 +2,6 @@ +Sat Apr 22 19:27:40 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 0.42.3: + + Server: Fix endless loop in XML namespace lookup + +------------------------------------------------------------------- Old: ---- rygel-0.42.2.tar.xz New: ---- rygel-0.42.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rygel.spec ++++++ --- /var/tmp/diff_new_pack.hwyMRQ/_old 2023-04-24 22:31:41.299680077 +0200 +++ /var/tmp/diff_new_pack.hwyMRQ/_new 2023-04-24 22:31:41.303680100 +0200 @@ -21,7 +21,7 @@ %define typelibver 2_8 Name: rygel -Version: 0.42.2 +Version: 0.42.3 Release: 0 Summary: UPnP/DLNA home media server for GNOME License: LGPL-2.0-or-later @@ -230,6 +230,9 @@ %{nil} %meson_build +%check +%meson_test + %install %meson_install ++++++ rygel-0.42.2.tar.xz -> rygel-0.42.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rygel-0.42.2/NEWS new/rygel-0.42.3/NEWS --- old/rygel-0.42.2/NEWS 2023-03-19 11:15:08.000000000 +0100 +++ new/rygel-0.42.3/NEWS 2023-04-22 20:51:10.000000000 +0200 @@ -1,3 +1,15 @@ +0.42.3 (stable) +=============== + +Server + - Fix endless loop in XML namespace lookup + +Bugs fixed in this release: + - https://gitlab.gnome.org/GNOME/rygel/issues/228 + +All contributors to this release: + - Jens Georg <m...@jensge.org> + 0.42.2 (stable) =============== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rygel-0.42.2/meson.build new/rygel-0.42.3/meson.build --- old/rygel-0.42.2/meson.build 2023-03-19 11:15:08.000000000 +0100 +++ new/rygel-0.42.3/meson.build 2023-04-22 20:51:10.000000000 +0200 @@ -1,4 +1,4 @@ -project('rygel', 'vala', 'c', version : '0.42.2', meson_version : '>= 0.58.0') +project('rygel', 'vala', 'c', version : '0.42.3', meson_version : '>= 0.58.0') vala = meson.get_compiler('vala') # Check for the required vala version diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rygel-0.42.2/src/librygel-core/rygel-xml-utils.vala new/rygel-0.42.3/src/librygel-core/rygel-xml-utils.vala --- old/rygel-0.42.2/src/librygel-core/rygel-xml-utils.vala 2023-03-19 11:15:08.000000000 +0100 +++ new/rygel-0.42.3/src/librygel-core/rygel-xml-utils.vala 2023-04-22 20:51:10.000000000 +0200 @@ -40,6 +40,7 @@ if (ns->prefix == prefix) { return ns; } + ns = ns->next; } assert_not_reached ();