From e4571d9f2d90cc353501e32471d46e40521a37db Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Tue, 6 Aug 2024 10:11:41 +0100 Subject: [PATCH] Remove upper limit on graphql gem version (#2362) The original issue should be addressed in https://github.com/rmosolgo/graphql-ruby/pull/5052 --- sentry-ruby/Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry-ruby/Gemfile b/sentry-ruby/Gemfile index a5e4967b9..c6e1db011 100644 --- a/sentry-ruby/Gemfile +++ b/sentry-ruby/Gemfile @@ -15,7 +15,7 @@ gem "puma" gem "timecop" gem "stackprof" unless RUBY_PLATFORM == "java" -gem "graphql", ">= 2.2.6", "< 2.3.11" if RUBY_VERSION.to_f >= 2.7 +gem "graphql", ">= 2.2.6" if RUBY_VERSION.to_f >= 2.7 gem "benchmark-ips" gem "benchmark_driver"