Skip to content

Commit 7fb5bee

Browse files
committed
pin "rack" gem to v2.2
The previous config allowed rack to be bumped to a higher version (e.g. 3) which introduced errors when running the test [1] for CI and for new users running locally. This sets the version to no greater than 2.2 as a temporary fix to allow tests to pass, until updates can be made to fix the breaking changes. [1] https://gds.slack.com/archives/C03D792LYJG/p1718295709926239?thread_ts=1718203657.261269&cid=C03D792LYJG
1 parent 6f3bfbe commit 7fb5bee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gds-api-adapters.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919
s.add_dependency "link_header"
2020
s.add_dependency "null_logger"
2121
s.add_dependency "plek", ">= 1.9.0"
22-
s.add_dependency "rack", ">= 2.2.0"
22+
s.add_dependency "rack", "~> 2.2.0"
2323
s.add_dependency "rest-client", "~> 2.0"
2424

2525
s.add_development_dependency "byebug"

0 commit comments

Comments
 (0)