Skip to content

Commit

Permalink
Allow rack-test upgrades
Browse files Browse the repository at this point in the history
Backport [rails#29859](rails#29859) to enable rack-test upgrades.

`Rack-test` is by far our oldest dependency and is pinned by our Rails version. Given that we've forked Rails anyways, we may as well loosen this constraint of this test dependency (which has been done on Rails master anyways since Rails 5.2).
  • Loading branch information
toby-brilliant committed Nov 21, 2022
1 parent 5f6a8bd commit a63bf85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/actionpack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.add_dependency 'activesupport', version

s.add_dependency 'rack', '~> 2.0'
s.add_dependency 'rack-test', '~> 0.6.3'
s.add_dependency 'rack-test', '>= 0.6.3'
s.add_dependency 'rails-html-sanitizer', '~> 1.0', '>= 1.0.2'
s.add_dependency 'rails-dom-testing', '~> 2.0'
s.add_dependency 'actionview', version
Expand Down

0 comments on commit a63bf85

Please sign in to comment.