Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-chef-utils for openSUSE:Factory checked in at 2022-10-30 18:28:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-chef-utils (Old) and /work/SRC/openSUSE:Factory/.rubygem-chef-utils.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-chef-utils" Sun Oct 30 18:28:44 2022 rev:7 rq:1032135 version:18.0.169 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-chef-utils/rubygem-chef-utils.changes 2022-08-06 22:08:40.730747377 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-chef-utils.new.2275/rubygem-chef-utils.changes 2022-10-30 18:28:52.482396941 +0100 @@ -1,0 +2,6 @@ +Fri Oct 28 04:54:21 UTC 2022 - Stephan Kulow <co...@suse.com> + +updated to version 18.0.169 + no changelog found + +------------------------------------------------------------------- Old: ---- chef-utils-17.10.0.gem New: ---- chef-utils-18.0.169.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-chef-utils.spec ++++++ --- /var/tmp/diff_new_pack.R2NwM8/_old 2022-10-30 18:28:53.818404160 +0100 +++ /var/tmp/diff_new_pack.R2NwM8/_new 2022-10-30 18:28:53.822404181 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-chef-utils -Version: 17.10.0 +Version: 18.0.169 Release: 0 %define mod_name chef-utils %define mod_full_name %{mod_name}-%{version} ++++++ chef-utils-17.10.0.gem -> chef-utils-18.0.169.gem ++++++ Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/chef-utils/dist.rb new/lib/chef-utils/dist.rb --- old/lib/chef-utils/dist.rb 2022-03-17 23:42:59.000000000 +0100 +++ new/lib/chef-utils/dist.rb 2022-10-27 18:28:14.000000000 +0200 @@ -64,6 +64,9 @@ # The client's gem GEM = "chef" + + # The client's container image + CONTAINER_REF = "chef/chef" end class Inspec @@ -114,11 +117,11 @@ # The server's configuration utility SERVER_CTL = "chef-server-ctl" - # OS user for server - SYSTEM_USER = "opscode" - # The server`s docs URL SERVER_DOCS = "https://docs.chef.io/server/" + + # OS user for server + SYSTEM_USER = "opscode" end class Solo diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/chef-utils/dsl/platform_family.rb new/lib/chef-utils/dsl/platform_family.rb --- old/lib/chef-utils/dsl/platform_family.rb 2022-03-17 23:42:59.000000000 +0100 +++ new/lib/chef-utils/dsl/platform_family.rb 2022-10-27 18:28:14.000000000 +0200 @@ -270,12 +270,17 @@ # Determine if the Ruby VM is currently running on a Windows node (ChefSpec can never stub # this behavior, so this is useful for code which can never be parsed on a non-Windows box). # + # April 2022 - Note that we changed the platform identifier from 'mingw32' to 'mingw' + # We did this because Ruby 3.1 introduces the new universal windows platform of 'x64-mingw-ucrt' + # We updated the existing regex snippet to capture both the 32-bit platform and the new x64 + # universal platform + # # @since 15.5 # # @return [Boolean] # def windows_ruby? - !!(RUBY_PLATFORM =~ /mswin|mingw32|windows/) + !!(RUBY_PLATFORM =~ /mswin|mingw|windows/) end # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/chef-utils/mash.rb new/lib/chef-utils/mash.rb --- old/lib/chef-utils/mash.rb 2022-03-17 23:42:59.000000000 +0100 +++ new/lib/chef-utils/mash.rb 2022-10-27 18:28:14.000000000 +0200 @@ -106,6 +106,14 @@ alias_method :regular_update, :update end + unless method_defined?(:regular_clear) + alias_method :regular_clear, :clear + end + + unless method_defined?(:regular_delete) + alias_method :regular_delete, :delete + end + # @param key<Object> The key to get. def [](key) regular_reader(key) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/chef-utils/version.rb new/lib/chef-utils/version.rb --- old/lib/chef-utils/version.rb 2022-03-17 23:42:59.000000000 +0100 +++ new/lib/chef-utils/version.rb 2022-10-27 18:28:14.000000000 +0200 @@ -16,5 +16,5 @@ module ChefUtils CHEFUTILS_ROOT = File.expand_path("..", __dir__) - VERSION = "17.10.0" + VERSION = "18.0.169" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-03-17 23:42:59.000000000 +0100 +++ new/metadata 2022-10-27 18:28:14.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: chef-utils version: !ruby/object:Gem::Version - version: 17.10.0 + version: 18.0.169 platform: ruby authors: - Chef Software, Inc autorequire: bindir: bin cert_chain: [] -date: 2022-03-17 00:00:00.000000000 Z +date: 2022-10-27 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: concurrent-ruby diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/spec/unit/dsl/platform_family_spec.rb new/spec/unit/dsl/platform_family_spec.rb --- old/spec/unit/dsl/platform_family_spec.rb 2022-03-17 23:42:59.000000000 +0100 +++ new/spec/unit/dsl/platform_family_spec.rb 2022-10-27 18:28:14.000000000 +0200 @@ -210,7 +210,7 @@ end context "node-independent windows APIs" do - if RUBY_PLATFORM.match?(/mswin|mingw32|windows/) + if RUBY_PLATFORM.match?(/mswin|mingw|windows/) it "reports true for :windows_ruby?" do expect(described_class.windows_ruby?).to be true end