Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-configuration-management for openSUSE:Factory checked in at 2022-11-18 15:42:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-configuration-management (Old) and /work/SRC/openSUSE:Factory/.yast2-configuration-management.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-configuration-management" Fri Nov 18 15:42:39 2022 rev:25 rq:1033489 version:4.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-configuration-management/yast2-configuration-management.changes 2022-04-14 17:24:04.531165914 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-configuration-management.new.1597/yast2-configuration-management.changes 2022-11-18 15:42:44.186352082 +0100 @@ -1,0 +2,6 @@ +Mon Oct 31 14:37:47 UTC 2022 - Martin Vidner <mvid...@suse.com> + +- Fix hash vs keyword arguments in RSpec expectations (bsc#1204871) +- 4.5.1 + +------------------------------------------------------------------- Old: ---- yast2-configuration-management-4.5.0.tar.bz2 New: ---- yast2-configuration-management-4.5.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-configuration-management.spec ++++++ --- /var/tmp/diff_new_pack.9C3sZz/_old 2022-11-18 15:42:44.794354754 +0100 +++ /var/tmp/diff_new_pack.9C3sZz/_new 2022-11-18 15:42:44.798354771 +0100 @@ -17,7 +17,7 @@ Name: yast2-configuration-management -Version: 4.5.0 +Version: 4.5.1 Release: 0 URL: https://github.com/yast/yast-migration Summary: YaST2 - YaST Configuration Management ++++++ yast2-configuration-management-4.5.0.tar.bz2 -> yast2-configuration-management-4.5.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/package/yast2-configuration-management.changes new/yast2-configuration-management-4.5.1/package/yast2-configuration-management.changes --- old/yast2-configuration-management-4.5.0/package/yast2-configuration-management.changes 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/package/yast2-configuration-management.changes 2022-11-04 11:24:04.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Oct 31 14:37:47 UTC 2022 - Martin Vidner <mvid...@suse.com> + +- Fix hash vs keyword arguments in RSpec expectations (bsc#1204871) +- 4.5.1 + +------------------------------------------------------------------- Wed Apr 06 13:24:58 UTC 2022 - Ladislav Slezák <lsle...@suse.cz> - Bump version to 4.5.0 (bsc#1198109) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/package/yast2-configuration-management.spec new/yast2-configuration-management-4.5.1/package/yast2-configuration-management.spec --- old/yast2-configuration-management-4.5.0/package/yast2-configuration-management.spec 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/package/yast2-configuration-management.spec 2022-11-04 11:24:04.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-configuration-management -Version: 4.5.0 +Version: 4.5.1 Release: 0 Url: https://github.com/yast/yast-migration Summary: YaST2 - YaST Configuration Management diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/test/y2configuration_management/clients/finish_client_test.rb new/yast2-configuration-management-4.5.1/test/y2configuration_management/clients/finish_client_test.rb --- old/yast2-configuration-management-4.5.0/test/y2configuration_management/clients/finish_client_test.rb 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/test/y2configuration_management/clients/finish_client_test.rb 2022-11-04 11:24:04.000000000 +0100 @@ -17,6 +17,8 @@ .and_return(configurator) allow(Y2ConfigurationManagement::Clients::Provision).to receive(:new) .and_return(provision_client) + allow(Dir).to receive(:exist?).with("/var/cache/zypp/raw").and_return(true) + allow(FileUtils).to receive(:rm_r).with("/var/cache/zypp/raw") end context "when not configuration is set" do diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/test/y2configuration_management/runners/puppet_test.rb new/yast2-configuration-management-4.5.1/test/y2configuration_management/runners/puppet_test.rb --- old/yast2-configuration-management-4.5.0/test/y2configuration_management/runners/puppet_test.rb 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/test/y2configuration_management/runners/puppet_test.rb 2022-11-04 11:24:04.000000000 +0100 @@ -30,10 +30,10 @@ context "when running in client mode" do it "runs puppet agent" do + opts = { stdout: $stdout, stderr: $stderr, chroot: "/mnt" } expect(Cheetah).to receive(:run) .with("puppet", "agent", "--onetime", "--no-daemonize", - "--waitforcert", config.auth_time_out.to_s, stdout: $stdout, - stderr: $stderr, chroot: "/mnt") + "--waitforcert", config.auth_time_out.to_s, opts) expect(runner.run).to eq(true) end @@ -52,10 +52,11 @@ let(:master) { nil } it "runs salt-call" do + opts = { stdout: $stdout, stderr: $stderr, chroot: "/mnt" } expect(Cheetah).to receive(:run).with( "puppet", "apply", "--modulepath", config.work_dir.join("modules").to_s, config.work_dir.join("manifests", "site.pp").to_s, - stdout: $stdout, stderr: $stderr, chroot: "/mnt" + opts ) expect(runner.run).to eq(true) end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/test/y2configuration_management/runners/salt_test.rb new/yast2-configuration-management-4.5.1/test/y2configuration_management/runners/salt_test.rb --- old/yast2-configuration-management-4.5.0/test/y2configuration_management/runners/salt_test.rb 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/test/y2configuration_management/runners/salt_test.rb 2022-11-04 11:24:04.000000000 +0100 @@ -27,9 +27,10 @@ context "when running in client mode" do it "runs salt-call" do + opts = { stdout: $stdout, stderr: $stderr, chroot: "/mnt" } expect(Cheetah).to receive(:run).with( "salt-call", "--log-level", "info", "state.highstate", - stdout: $stdout, stderr: $stderr, chroot: "/mnt" + opts ) expect(runner.run).to eq(true) end @@ -49,9 +50,10 @@ let(:master) { nil } it "runs salt-call" do + opts = { stdout: $stdout, stderr: $stderr, chroot: "/mnt" } expect(Cheetah).to receive(:run).with( "salt-call", "--log-level", "info", "--local", "state.highstate", - stdout: $stdout, stderr: $stderr, chroot: "/mnt" + opts ) expect(runner.run).to eq(true) end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-configuration-management-4.5.0/test/y2configuration_management/widgets/pager_tree_item_test.rb new/yast2-configuration-management-4.5.1/test/y2configuration_management/widgets/pager_tree_item_test.rb --- old/yast2-configuration-management-4.5.0/test/y2configuration_management/widgets/pager_tree_item_test.rb 2022-04-12 13:33:19.000000000 +0200 +++ new/yast2-configuration-management-4.5.1/test/y2configuration_management/widgets/pager_tree_item_test.rb 2022-11-04 11:24:04.000000000 +0100 @@ -82,7 +82,8 @@ end it "propagates the values to the pages" do - expect(page).to receive(:value=).with("name" => "OBS") + page_value = { "name" => "OBS" } + expect(page).to receive(:value=).with(page_value) expect(nested_page).to receive(:value=).with(new_value["labels"]) item.value = new_value end