Skip to content

Commit

Permalink
Pin concurrent-ruby to < 1.3.5 until we're on rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrafanie committed Jan 21, 2025
1 parent 8d9d893 commit 2faa0c3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions activerecord-id_regions.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "activerecord", ">= 7.0.8", "<8.0"
spec.add_dependency "activesupport", ">= 7.0.8", "<8.0"
spec.add_dependency "concurrent-ruby", "< 1.3.5" # Temporary pin down as concurrent-ruby 1.3.5 breaks Rails 7.0, and rails-core doesn't
# plan to ship a new 7.0 to fix it. See https://github.com/rails/rails/pull/54264

spec.add_dependency "activerecord", ">= 7.0.8.7", "<8.0"
spec.add_dependency "activesupport", ">= 7.0.8.7", "<8.0"
spec.add_dependency "pg"

spec.add_development_dependency "bundler"
Expand Down

0 comments on commit 2faa0c3

Please sign in to comment.