From e0c7038738d726a819ef2e0a97b576f2c386b27f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Jan 2023 23:37:09 +0000 Subject: [PATCH] Update activesupport requirement from ~> 3.0 to >= 3, < 8 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.0.4.1/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v3.2.2...v7.0.4.1) --- updated-dependencies: - dependency-name: activesupport dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 19 +++++++++++++------ abstract-message-queue.gemspec | 2 +- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6f0d1c8..f7a945a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,27 +2,32 @@ PATH remote: . specs: abstract-message-queue (1.0.2) - activesupport (~> 3.0) + activesupport (>= 3, < 8) json (~> 1.6) GEM remote: http://rubygems.org/ specs: - activesupport (3.2.2) - i18n (~> 0.6) - multi_json (~> 1.0) + activesupport (7.0.4.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) aws-sdk (1.1.4) httparty (~> 0.7) json (~> 1.4) nokogiri (>= 1.4.4) uuidtools (~> 2.1) + concurrent-ruby (1.1.10) diff-lcs (1.1.3) httparty (0.8.0) multi_json multi_xml - i18n (0.6.0) + i18n (1.12.0) + concurrent-ruby (~> 1.0) json (1.6.0) - multi_json (1.0.3) + minitest (5.17.0) + multi_json (1.15.0) multi_xml (0.4.0) nokogiri (1.5.0) rake (0.9.2) @@ -35,6 +40,8 @@ GEM diff-lcs (~> 1.1.2) rspec-mocks (2.6.0) stomp (1.1.9) + tzinfo (2.0.5) + concurrent-ruby (~> 1.0) uuidtools (2.1.2) PLATFORMS diff --git a/abstract-message-queue.gemspec b/abstract-message-queue.gemspec index c5535b1..74b1b1a 100644 --- a/abstract-message-queue.gemspec +++ b/abstract-message-queue.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] s.add_dependency "json", "~> 1.6" - s.add_dependency "activesupport", "~> 3.0" + s.add_dependency "activesupport", ">= 3", "< 8" s.add_development_dependency "rake" s.add_development_dependency "rspec", "~> 2.6" s.add_development_dependency "stomp", "~> 1.1"