Skip to content

Commit

Permalink
Fix concurrent-ruby version in Ruby 2.5/2.6 CI
Browse files Browse the repository at this point in the history
active_support/logger_thread_safe_level.rb in Rails 6.1
references Logger without requiring it, which only worked
because concurrent-ruby was requiring it.  concurrent-ruby
1.3.5 dropped the logger require, which broke active_support.
  • Loading branch information
jeremyevans committed Jan 16, 2025
1 parent 066e256 commit 394efee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ elsif RUBY_VERSION < '2.4.0'
gem 'activemodel', '<6.0.0'
elsif RUBY_VERSION < '2.7.0'
gem 'activemodel', '<7.0.0'
gem 'concurrent-ruby', '1.3.4'
else
gem 'activemodel'
end
Expand Down

0 comments on commit 394efee

Please sign in to comment.