Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-dry-container for openSUSE:Factory checked in at 2022-02-24 18:20:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-dry-container (Old) and /work/SRC/openSUSE:Factory/.rubygem-dry-container.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-dry-container" Thu Feb 24 18:20:16 2022 rev:3 rq:956115 version:0.9.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-dry-container/rubygem-dry-container.changes 2021-07-02 13:28:31.672266751 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-dry-container.new.1958/rubygem-dry-container.changes 2022-02-24 18:23:31.646657155 +0100 @@ -1,0 +2,25 @@ +Tue Feb 15 07:27:23 UTC 2022 - Stephan Kulow <co...@suse.com> + +updated to version 0.9.0 + see installed CHANGELOG.md + + ## 0.9.0 2021-09-12 + + + ### Changed + + - [internal] Upgraded to new `setting` API provided in dry-configurable 0.13.0 (@timriley in #77) + + [Compare v0.8.0...v0.9.0](https://github.com/dry-rb/dry-container/compare/v0.8.0...v0.9.0) + + ## 0.8.0 2021-06-06 + + + ### Changed + + - [BREAKING] Support for 2.4 and 2.5 was dropped + + [Compare v0.7.2...v0.8.0](https://github.com/dry-rb/dry-container/compare/v0.7.2...v0.8.0) + + +------------------------------------------------------------------- Old: ---- dry-container-0.8.0.gem New: ---- dry-container-0.9.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-dry-container.spec ++++++ --- /var/tmp/diff_new_pack.omk2xG/_old 2022-02-24 18:23:32.034657082 +0100 +++ /var/tmp/diff_new_pack.omk2xG/_new 2022-02-24 18:23:32.038657082 +0100 @@ -1,7 +1,7 @@ # # spec file for package rubygem-dry-container # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ # Name: rubygem-dry-container -Version: 0.8.0 +Version: 0.9.0 Release: 0 %define mod_name dry-container %define mod_full_name %{mod_name}-%{version} ++++++ dry-container-0.8.0.gem -> dry-container-0.9.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2021-06-06 13:43:50.000000000 +0200 +++ new/CHANGELOG.md 2021-09-12 14:31:04.000000000 +0200 @@ -1,5 +1,23 @@ <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS ---> +## 0.9.0 2021-09-12 + + +### Changed + +- [internal] Upgraded to new `setting` API provided in dry-configurable 0.13.0 (@timriley in #77) + +[Compare v0.8.0...v0.9.0](https://github.com/dry-rb/dry-container/compare/v0.8.0...v0.9.0) + +## 0.8.0 2021-06-06 + + +### Changed + +- [BREAKING] Support for 2.4 and 2.5 was dropped + +[Compare v0.7.2...v0.8.0](https://github.com/dry-rb/dry-container/compare/v0.7.2...v0.8.0) + ## 0.7.2 2019-07-09 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2021-06-06 13:43:50.000000000 +0200 +++ new/README.md 2021-09-12 14:31:04.000000000 +0200 @@ -8,7 +8,7 @@ # dry-container [][chat] [][gem] -[][actions] +[][actions] [][codacy] [][codacy] [][inchpages] @@ -23,7 +23,7 @@ This library officially supports the following Ruby versions: * MRI `>= 2.6.0` -* jruby `>= 9.2` +* ~~jruby~~ `>= 9.3` (we are waiting for [2.6 support](https://github.com/jruby/jruby/issues/6161)) ## License Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dry-container.gemspec new/dry-container.gemspec --- old/dry-container.gemspec 2021-06-06 13:43:50.000000000 +0200 +++ new/dry-container.gemspec 2021-09-12 14:31:04.000000000 +0200 @@ -26,15 +26,11 @@ spec.metadata["source_code_uri"] = "https://github.com/dry-rb/dry-container" spec.metadata["bug_tracker_uri"] = "https://github.com/dry-rb/dry-container/issues" - if defined? JRUBY_VERSION - spec.required_ruby_version = ">= 2.5.0" - else - spec.required_ruby_version = ">= 2.6.0" - end + spec.required_ruby_version = ">= 2.6.0" # to update dependencies edit project.yml spec.add_runtime_dependency "concurrent-ruby", "~> 1.0" - spec.add_runtime_dependency "dry-configurable", "~> 0.1", ">= 0.1.3" + spec.add_runtime_dependency "dry-configurable", "~> 0.13", ">= 0.13.0" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/dry/container/mixin.rb new/lib/dry/container/mixin.rb --- old/lib/dry/container/mixin.rb 2021-06-06 13:43:50.000000000 +0200 +++ new/lib/dry/container/mixin.rb 2021-09-12 14:31:04.000000000 +0200 @@ -47,9 +47,9 @@ extend ::Dry::Configurable extend hooks_mod - setting :registry, ::Dry::Container::Registry.new - setting :resolver, ::Dry::Container::Resolver.new - setting :namespace_separator, "." + setting :registry, default: Dry::Container::Registry.new + setting :resolver, default: Dry::Container::Resolver.new + setting :namespace_separator, default: "." @_container = ::Concurrent::Hash.new end @@ -69,9 +69,9 @@ extend ::Dry::Configurable prepend Initializer - setting :registry, ::Dry::Container::Registry.new - setting :resolver, ::Dry::Container::Resolver.new - setting :namespace_separator, "." + setting :registry, default: Dry::Container::Registry.new + setting :resolver, default: Dry::Container::Resolver.new + setting :namespace_separator, default: "." def config self.class.config diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/dry/container/version.rb new/lib/dry/container/version.rb --- old/lib/dry/container/version.rb 2021-06-06 13:43:50.000000000 +0200 +++ new/lib/dry/container/version.rb 2021-09-12 14:31:04.000000000 +0200 @@ -3,6 +3,6 @@ module Dry class Container # @api public - VERSION = "0.8.0".freeze + VERSION = "0.9.0".freeze end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2021-06-06 13:43:50.000000000 +0200 +++ new/metadata 2021-09-12 14:31:04.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: dry-container version: !ruby/object:Gem::Version - version: 0.8.0 + version: 0.9.0 platform: ruby authors: - Andy Holland autorequire: bindir: bin cert_chain: [] -date: 2021-06-06 00:00:00.000000000 Z +date: 2021-09-12 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: concurrent-ruby @@ -30,20 +30,20 @@ requirements: - - "~>" - !ruby/object:Gem::Version - version: '0.1' + version: '0.13' - - ">=" - !ruby/object:Gem::Version - version: 0.1.3 + version: 0.13.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version - version: '0.1' + version: '0.13' - - ">=" - !ruby/object:Gem::Version - version: 0.1.3 + version: 0.13.0 - !ruby/object:Gem::Dependency name: bundler requirement: !ruby/object:Gem::Requirement