diff --git a/Gemfile b/Gemfile index 0b9d8dcff20..cf2f1b9f4b4 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source "https://rubygems.org" gemspec -gem "minitest", ">= 5.15.0" +gem "minitest", ">= 5.15.0", "< 5.22.0" # We need a newish Rake since Active Job sets its test tasks' descriptions. gem "rake", ">= 13" diff --git a/Gemfile.lock b/Gemfile.lock index 64c97c5242f..7ca2f07a101 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -93,7 +93,7 @@ PATH connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) - minitest (>= 5.1) + minitest (>= 5.1, < 5.22.0) tzinfo (~> 2.0, >= 2.0.5) rails (7.2.0.alpha) actioncable (= 7.2.0.alpha) @@ -618,7 +618,7 @@ DEPENDENCIES libxml-ruby listen (~> 3.3) mdl (!= 0.13.0) - minitest (>= 5.15.0) + minitest (>= 5.15.0, < 5.22.0) minitest-bisect minitest-ci minitest-retry diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 17fb20f2a4c..136a0465680 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -38,7 +38,7 @@ Gem::Specification.new do |s| s.add_dependency "tzinfo", "~> 2.0", ">= 2.0.5" s.add_dependency "concurrent-ruby", "~> 1.0", ">= 1.0.2" s.add_dependency "connection_pool", ">= 2.2.5" - s.add_dependency "minitest", ">= 5.1" + s.add_dependency "minitest", ">= 5.1", "< 5.22.0" s.add_dependency "base64" s.add_dependency "drb" s.add_dependency "bigdecimal"