From 5e9e92ea25796c88c339a00534e6687c11c9194f Mon Sep 17 00:00:00 2001 From: sunil-lakshman <104969541+sunil-lakshman@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:34:27 +0530 Subject: [PATCH 1/2] Removed Dependency Gem max limit --- CHANGELOG.md | 3 +++ Gemfile.lock | 12 ++++++------ contentstack_utils.gemspec | 4 ++-- lib/contentstack_utils/version.rb | 2 +- spec/spec_helper.rb | 1 + 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9f14bf..e7ef236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [1.1.3](https://github.com/contentstack/contentstack-utils-ruby/tree/v1.1.3) (2023-03-16) + - Dependency gem max version issue resolved. (Activesupport gem) + ## [1.1.2](https://github.com/contentstack/contentstack-utils-ruby/tree/v1.1.2) (2023-02-27) - Dependency gem updated (Activesupport gem) diff --git a/Gemfile.lock b/Gemfile.lock index bf62daa..70a93d4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,14 +1,14 @@ PATH remote: . specs: - contentstack_utils (1.1.0) - activesupport (>= 3.2, < 7.0.4) - nokogiri (~> 1.11, >= 1.11.0) + contentstack_utils (1.1.3) + activesupport (>= 3.2) + nokogiri (~> 1.11) GEM remote: https://rubygems.org/ specs: - activesupport (6.1.7.2) + activesupport (6.1.7.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -16,7 +16,7 @@ GEM zeitwerk (~> 2.3) addressable (2.8.1) public_suffix (>= 2.0.2, < 6.0) - concurrent-ruby (1.2.0) + concurrent-ruby (1.2.2) crack (0.4.5) rexml diff-lcs (1.5.0) @@ -25,7 +25,7 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) mini_portile2 (2.8.1) - minitest (5.17.0) + minitest (5.18.0) nokogiri (1.13.10) mini_portile2 (~> 2.8.0) racc (~> 1.4) diff --git a/contentstack_utils.gemspec b/contentstack_utils.gemspec index 82bf99d..bfa04a1 100644 --- a/contentstack_utils.gemspec +++ b/contentstack_utils.gemspec @@ -21,8 +21,8 @@ Gem::Specification.new do |s| s.test_files = s.files.grep(%r{^spec/}) s.require_paths = ["lib"] - s.add_dependency 'activesupport', '>= 3.2', '< 7.0.4' - s.add_dependency 'nokogiri', '~> 1.11', '>= 1.11.0' + s.add_dependency 'activesupport', '>= 3.2' + s.add_dependency 'nokogiri', '~> 1.11' s.add_development_dependency 'rake', '~> 13.0.3' s.add_development_dependency 'rspec', '~> 3.10.0' diff --git a/lib/contentstack_utils/version.rb b/lib/contentstack_utils/version.rb index 1ea58c5..95ed36c 100644 --- a/lib/contentstack_utils/version.rb +++ b/lib/contentstack_utils/version.rb @@ -1,3 +1,3 @@ module ContentstackUtils - VERSION = "1.1.2" + VERSION = "1.1.3" end \ No newline at end of file diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index f1a5f48..91845da 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,6 @@ require 'simplecov' SimpleCov.add_filter ["spec/", "lib/contentstack_utils/support"] +SimpleCov.start require 'nokogiri' require 'rspec' require 'contentstack_utils' From f707940ee969fa051e27c89eddeeeeb963cc3484 Mon Sep 17 00:00:00 2001 From: sunil-lakshman <104969541+sunil-lakshman@users.noreply.github.com> Date: Wed, 15 Mar 2023 18:02:18 +0530 Subject: [PATCH 2/2] changed gem version from greater than or equal to arel --- contentstack_utils.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentstack_utils.gemspec b/contentstack_utils.gemspec index bfa04a1..962b1c5 100644 --- a/contentstack_utils.gemspec +++ b/contentstack_utils.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |s| s.test_files = s.files.grep(%r{^spec/}) s.require_paths = ["lib"] - s.add_dependency 'activesupport', '>= 3.2' + s.add_dependency 'activesupport', '~> 3.2' s.add_dependency 'nokogiri', '~> 1.11' s.add_development_dependency 'rake', '~> 13.0.3'