From b0b3bb4f42c056c0b4e8077df1403a451c3d6f34 Mon Sep 17 00:00:00 2001 From: Andrew Thauer Date: Thu, 13 Aug 2026 13:05:25 -0400 Subject: [PATCH] fix(gemspec): raise required_ruby_version to 2.7.0 The graphql gem (>= 2.4.12, our floor) transitively requires Ruby >= 2.7.0, but our gemspec still advertised >= 2.6.0. Dependabot's bundler resolver picks a Ruby version from this constraint and was resolving against 2.6.10, causing every dependency update job to fail with a version solving error. Raised to the true floor dictated by our graphql dependency rather than tightening to match the CI matrix (3.3+), to avoid dropping support for Ruby versions that aren't tested but may still work. --- graphql-hive.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql-hive.gemspec b/graphql-hive.gemspec index 134d441..343e75e 100644 --- a/graphql-hive.gemspec +++ b/graphql-hive.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| "bug_tracker_uri" => "https://github.com/wealthsimple-community/graphql-ruby-hive/issues" } - spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0") + spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") spec.require_paths = ["lib"] spec.files = Dir.chdir(File.expand_path(__dir__)) do