Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2022-12-02 13:12:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-installation" Fri Dec 2 13:12:10 2022 rev:512 rq:1039349 version:4.5.10 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2022-11-18 15:43:17.842499944 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new.1835/yast2-installation.changes 2022-12-02 13:12:18.541579162 +0100 @@ -1,0 +2,6 @@ +Thu Nov 24 09:24:34 UTC 2022 - Martin Vidner <mvid...@suse.com> + +- Fix hash vs keyword arguments in RSpec expectations (bsc#1204871) +- 4.5.10 + +------------------------------------------------------------------- Old: ---- yast2-installation-4.5.9.tar.bz2 New: ---- yast2-installation-4.5.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.3KN6W6/_old 2022-12-02 13:12:19.249583030 +0100 +++ /var/tmp/diff_new_pack.3KN6W6/_new 2022-12-02 13:12:19.253583051 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 4.5.9 +Version: 4.5.10 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only ++++++ yast2-installation-4.5.9.tar.bz2 -> yast2-installation-4.5.10.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.5.9/package/yast2-installation.changes new/yast2-installation-4.5.10/package/yast2-installation.changes --- old/yast2-installation-4.5.9/package/yast2-installation.changes 2022-11-17 06:58:31.000000000 +0100 +++ new/yast2-installation-4.5.10/package/yast2-installation.changes 2022-11-24 11:07:09.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Nov 24 09:24:34 UTC 2022 - Martin Vidner <mvid...@suse.com> + +- Fix hash vs keyword arguments in RSpec expectations (bsc#1204871) +- 4.5.10 + +------------------------------------------------------------------- Tue Nov 15 13:43:41 UTC 2022 - Ancor Gonzalez Sosa <an...@suse.com> - Fixed the help in the installation summary to include the texts diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.5.9/package/yast2-installation.spec new/yast2-installation-4.5.10/package/yast2-installation.spec --- old/yast2-installation-4.5.9/package/yast2-installation.spec 2022-11-17 06:58:31.000000000 +0100 +++ new/yast2-installation-4.5.10/package/yast2-installation.spec 2022-11-24 11:07:09.000000000 +0100 @@ -16,7 +16,7 @@ # Name: yast2-installation -Version: 4.5.9 +Version: 4.5.10 Release: 0 Summary: YaST2 - Installation Parts License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.5.9/test/lib/clients/inst_download_release_notes_test.rb new/yast2-installation-4.5.10/test/lib/clients/inst_download_release_notes_test.rb --- old/yast2-installation-4.5.9/test/lib/clients/inst_download_release_notes_test.rb 2022-11-17 06:58:31.000000000 +0100 +++ new/yast2-installation-4.5.10/test/lib/clients/inst_download_release_notes_test.rb 2022-11-24 11:07:09.000000000 +0100 @@ -58,10 +58,11 @@ end it "sets release notes content" do - expect(Yast::UI).to receive(:SetReleaseNotes).with( + relnotes_texts = { "SLES" => "SLES RN", "SDK" => "SDK RN" - ) + } + expect(Yast::UI).to receive(:SetReleaseNotes).with(relnotes_texts) client.main end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-4.5.9/test/system_role_test.rb new/yast2-installation-4.5.10/test/system_role_test.rb --- old/yast2-installation-4.5.9/test/system_role_test.rb 2022-11-17 06:58:31.000000000 +0100 +++ new/yast2-installation-4.5.10/test/system_role_test.rb 2022-11-24 11:07:09.000000000 +0100 @@ -145,8 +145,9 @@ end it "modifies the network proposal settings with defaults from the control file" do + defaults = { "ipv4_forward" => true, "ipv6_forward" => true } expect(settings).to receive(:modify_defaults) - .with("ipv4_forward" => true, "ipv6_forward" => true) + .with(defaults) role.adapt_network end @@ -161,8 +162,9 @@ it "overlays the product features with the ones defined in the control file for this role" do role = described_class.find("role_one") + overlay = { "software" => { "desktop" => "knome" } } expect(Yast::ProductFeatures).to receive(:SetOverlay) - .with("software" => { "desktop" => "knome" }) + .with(overlay) role.overlay_features end