From 4da8fc498ee3eda9dcb6c3e267790e5d5c2b230c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 04:08:50 +0000 Subject: [PATCH] Update jwt requirement from ~> 2 to >= 2, < 4 Updates the requirements on [jwt](https://github.com/jwt/ruby-jwt) to permit the latest version. - [Release notes](https://github.com/jwt/ruby-jwt/releases) - [Changelog](https://github.com/jwt/ruby-jwt/blob/main/CHANGELOG.md) - [Commits](https://github.com/jwt/ruby-jwt/compare/v2.0.0...v3.1.1) --- updated-dependencies: - dependency-name: jwt dependency-version: 3.1.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- echo_common.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo_common.gemspec b/echo_common.gemspec index 50299a7..e2aad72 100644 --- a/echo_common.gemspec +++ b/echo_common.gemspec @@ -28,7 +28,7 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] spec.add_dependency "hanami-utils", "~> 2.1.0" - spec.add_dependency "jwt", "~> 2" + spec.add_dependency "jwt", ">= 2", "< 4" spec.add_dependency "database_cleaner", "~> 2" spec.add_dependency "rack-test", "~> 2"