Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-online-update for openSUSE:Factory checked in at 2023-03-12 16:22:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-online-update (Old) and /work/SRC/openSUSE:Factory/.yast2-online-update.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-online-update" Sun Mar 12 16:22:22 2023 rev:116 rq:1070758 version:4.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-online-update/yast2-online-update.changes 2023-03-04 22:43:28.579827283 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-online-update.new.31432/yast2-online-update.changes 2023-03-12 16:22:23.484274750 +0100 @@ -1,0 +2,7 @@ +Thu Mar 9 08:41:43 UTC 2023 - Martin Vidner <mvid...@suse.com> + +- Fix showing of release notes when we update a rubygem + (bsc#1205913) +- 4.6.1 + +------------------------------------------------------------------- Old: ---- yast2-online-update-4.6.0.tar.bz2 New: ---- yast2-online-update-4.6.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-online-update.spec ++++++ --- /var/tmp/diff_new_pack.DWAyH0/_old 2023-03-12 16:22:23.952276811 +0100 +++ /var/tmp/diff_new_pack.DWAyH0/_new 2023-03-12 16:22:23.956276829 +0100 @@ -17,7 +17,7 @@ Name: yast2-online-update -Version: 4.6.0 +Version: 4.6.1 Release: 0 URL: https://github.com/yast/yast-online-update Summary: YaST2 - Online Update (YOU) ++++++ yast2-online-update-4.6.0.tar.bz2 -> yast2-online-update-4.6.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-online-update-4.6.0/package/yast2-online-update.changes new/yast2-online-update-4.6.1/package/yast2-online-update.changes --- old/yast2-online-update-4.6.0/package/yast2-online-update.changes 2023-03-03 15:56:45.000000000 +0100 +++ new/yast2-online-update-4.6.1/package/yast2-online-update.changes 2023-03-10 17:12:47.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Mar 9 08:41:43 UTC 2023 - Martin Vidner <mvid...@suse.com> + +- Fix showing of release notes when we update a rubygem + (bsc#1205913) +- 4.6.1 + +------------------------------------------------------------------- Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <lsle...@suse.cz> - Bump version to 4.6.0 (bsc#1208913) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-online-update-4.6.0/package/yast2-online-update.spec new/yast2-online-update-4.6.1/package/yast2-online-update.spec --- old/yast2-online-update-4.6.0/package/yast2-online-update.spec 2023-03-03 15:56:45.000000000 +0100 +++ new/yast2-online-update-4.6.1/package/yast2-online-update.spec 2023-03-10 17:12:47.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-online-update -Version: 4.6.0 +Version: 4.6.1 Release: 0 Url: https://github.com/yast/yast-online-update Summary: YaST2 - Online Update (YOU) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-online-update-4.6.0/src/clients/online_update.rb new/yast2-online-update-4.6.1/src/clients/online_update.rb --- old/yast2-online-update-4.6.0/src/clients/online_update.rb 2023-03-03 15:56:45.000000000 +0100 +++ new/yast2-online-update-4.6.1/src/clients/online_update.rb 2023-03-10 17:12:47.000000000 +0100 @@ -24,6 +24,17 @@ # Stefan Schubert <sch...@suse.de> # Cornelius Schumacher <csc...@suse.de> +# bsc#1205913 +# 1. We may update a rubygem +# 2. inst_release_notes may be called, which (indirectly) requires dbus +# Then rubygems would try loading the gemspec of the uninstalled older gem +# and crash. Prevent it by requiring dbus early. +begin + require "dbus" +rescue LoadError + # Call site will check if it's there +end + require "y2packager/resolvable" require "ui/ui_extension_checker"