From 7866c510d4ceb846b24946c1713f5f42673042e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 05:37:17 +0000 Subject: [PATCH] Update activesupport requirement from >= 6.0.0, < 7.1 to >= 6.0.0, < 7.2 Updates the requirements on [activesupport](https://github.com/rails/rails) to permit the latest version. - [Release notes](https://github.com/rails/rails/releases) - [Changelog](https://github.com/rails/rails/blob/v7.1.1/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v7.0.3.1...v7.1.1) --- updated-dependencies: - dependency-name: activesupport dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 24 ++++++++++++++++++------ zip-codes.gemspec | 2 +- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 4287417..e3003e6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,23 +2,34 @@ PATH remote: . specs: zip-codes (0.3.0) - activesupport (>= 6.0.0, < 7.1) + activesupport (>= 6.0.0, < 7.2) fastcsv (~> 0.0.6) GEM remote: https://rubygems.org/ specs: - activesupport (7.0.3.1) + activesupport (7.1.1) + base64 + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) minitest (>= 5.1) + mutex_m tzinfo (~> 2.0) ast (2.4.2) - concurrent-ruby (1.1.10) + base64 (0.1.1) + bigdecimal (3.1.4) + concurrent-ruby (1.2.2) + connection_pool (2.4.1) + drb (2.1.1) + ruby2_keywords fastcsv (0.0.6) - i18n (1.12.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) - minitest (5.16.2) + minitest (5.20.0) + mutex_m (0.1.2) parallel (1.22.1) parser (3.1.2.0) ast (~> 2.4.1) @@ -37,7 +48,8 @@ GEM rubocop-ast (1.17.0) parser (>= 3.1.1.0) ruby-progressbar (1.11.0) - tzinfo (2.0.4) + ruby2_keywords (0.0.5) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.1.0) diff --git a/zip-codes.gemspec b/zip-codes.gemspec index 8a0ff87..8bf1140 100644 --- a/zip-codes.gemspec +++ b/zip-codes.gemspec @@ -23,6 +23,6 @@ Gem::Specification.new do |spec| spec.files = Dir['lib/**/*'] spec.require_paths = ['lib'] - spec.add_dependency 'activesupport', '>= 6.0.0', '< 7.1' + spec.add_dependency 'activesupport', '>= 6.0.0', '< 7.2' spec.add_dependency 'fastcsv', '~> 0.0.6' end