From c630a18a6231f03861a5858eb600ab9b6fdcd3e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Feb 2023 22:03:51 +0000 Subject: [PATCH] Update activesupport requirement from >= 4.0, < 6.0 to >= 4.0, < 8.0 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.2/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v5.2.6...v6.1.7.2) --- updated-dependencies: - dependency-name: activesupport dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 23 ++++++++++++----------- jwt-authenticator.gemspec | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 895046e..4fd9c19 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,31 +2,32 @@ PATH remote: . specs: jwt-authenticator (2.0.0) - activesupport (>= 4.0, < 6.0) + activesupport (>= 4.0, < 8.0) jwt (~> 2.1) method-not-implemented (~> 1.0) GEM remote: https://rubygems.org/ specs: - activesupport (5.2.6) + activesupport (6.1.7.2) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - concurrent-ruby (1.1.9) - i18n (1.8.10) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + concurrent-ruby (1.2.0) + i18n (1.12.0) concurrent-ruby (~> 1.0) jwt (2.2.3) method-not-implemented (1.0.1) - minitest (5.14.4) + minitest (5.15.0) power_assert (2.0.0) rake (12.3.3) test-unit (3.4.4) power_assert - thread_safe (0.3.6) - tzinfo (1.2.9) - thread_safe (~> 0.1) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + zeitwerk (2.6.6) PLATFORMS ruby diff --git a/jwt-authenticator.gemspec b/jwt-authenticator.gemspec index df6a8ef..922889a 100644 --- a/jwt-authenticator.gemspec +++ b/jwt-authenticator.gemspec @@ -19,6 +19,6 @@ Gem::Specification.new do |s| s.add_dependency "jwt", "~> 2.1" s.add_dependency "method-not-implemented", "~> 1.0" - s.add_dependency "activesupport", ">= 4.0", "< 6.0" + s.add_dependency "activesupport", ">= 4.0", "< 8.0" s.add_development_dependency "bundler", ">= 1.7", "< 3.0" end