Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-packager for openSUSE:Factory checked in at 2023-02-09 16:22:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old) and /work/SRC/openSUSE:Factory/.yast2-packager.new.4462 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-packager" Thu Feb 9 16:22:16 2023 rev:435 rq:1063890 version:4.5.14 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes 2023-01-27 10:24:15.910085579 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-packager.new.4462/yast2-packager.changes 2023-02-09 16:22:29.262490639 +0100 @@ -1,0 +2,6 @@ +Wed Feb 8 17:29:25 UTC 2023 - Stefan Hundhammer <shundham...@suse.com> + +- Prevent crash if nil dependencies instead of [] (bsc#1208068) +- 4.5.14 + +------------------------------------------------------------------- Old: ---- yast2-packager-4.5.13.tar.bz2 New: ---- yast2-packager-4.5.14.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-packager.spec ++++++ --- /var/tmp/diff_new_pack.lclYl7/_old 2023-02-09 16:22:29.838493607 +0100 +++ /var/tmp/diff_new_pack.lclYl7/_new 2023-02-09 16:22:29.842493627 +0100 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.13 +Version: 4.5.14 Release: 0 Summary: YaST2 - Package Library License: GPL-2.0-or-later ++++++ yast2-packager-4.5.13.tar.bz2 -> yast2-packager-4.5.14.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.13/package/yast2-packager.changes new/yast2-packager-4.5.14/package/yast2-packager.changes --- old/yast2-packager-4.5.13/package/yast2-packager.changes 2023-01-26 15:50:30.000000000 +0100 +++ new/yast2-packager-4.5.14/package/yast2-packager.changes 2023-02-08 19:02:59.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Feb 8 17:29:25 UTC 2023 - Stefan Hundhammer <shundham...@suse.com> + +- Prevent crash if nil dependencies instead of [] (bsc#1208068) +- 4.5.14 + +------------------------------------------------------------------- Thu Jan 26 13:52:26 UTC 2023 - Knut Anderssen <kanders...@suse.com> - Added wicked-nbft package when Linuxrc sets UseNBFT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.13/package/yast2-packager.spec new/yast2-packager-4.5.14/package/yast2-packager.spec --- old/yast2-packager-4.5.13/package/yast2-packager.spec 2023-01-26 15:50:30.000000000 +0100 +++ new/yast2-packager-4.5.14/package/yast2-packager.spec 2023-02-08 19:02:59.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-packager -Version: 4.5.13 +Version: 4.5.14 Release: 0 Summary: YaST2 - Package Library License: GPL-2.0-or-later diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-packager-4.5.13/src/lib/y2packager/dialogs/addon_selector.rb new/yast2-packager-4.5.14/src/lib/y2packager/dialogs/addon_selector.rb --- old/yast2-packager-4.5.13/src/lib/y2packager/dialogs/addon_selector.rb 2023-01-26 15:50:30.000000000 +0100 +++ new/yast2-packager-4.5.14/src/lib/y2packager/dialogs/addon_selector.rb 2023-02-08 19:02:59.000000000 +0100 @@ -152,10 +152,10 @@ new_items.each do |p| # the dependencies contain also the transitive (indirect) dependencies, # we do not need to recursively evaluate the list - selected_items.concat(p.depends_on) + selected_items.concat(p&.depends_on) end - selected_items.uniq! + selected_items.uniq!.compact! Yast::UI.ChangeWidget(:addon_repos, :SelectedItems, selected_items) end