summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2020-01-11 16:56:40 +0000
committerBundlerbot <bot@bundler.io>2020-01-11 16:56:40 +0000
commit971d39b32d3ec8bfcdc951061c88e364f864423e (patch)
treedf0300c297a3f5667557b17709fe8f14a5da4e0b
parentd9ea09defd07e9957ae782ab7960ebea92515c3c (diff)
parenta0aad702e33a6a6473a7c33bd6b20b8729989822 (diff)
downloadbundler-971d39b32d3ec8bfcdc951061c88e364f864423e.tar.gz
Merge #7565
7565: Lock rack to 2.0.8 for tests r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was CI is failing due to a rack warning. ### What was your diagnosis of the problem? My diagnosis was that our CI shouldn't break because of third party changes. ### What is your fix for the problem, implemented in this PR? My fix is to lock the rack version our tests use. ### Why did you choose this fix out of the possible options? I chose this fix because it gives us a more deterministic test environment, which is good. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--spec/support/rubygems_ext.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb
index b9bbfde2b3..b177fc690a 100644
--- a/spec/support/rubygems_ext.rb
+++ b/spec/support/rubygems_ext.rb
@@ -15,7 +15,7 @@ module Spec
}.freeze
DEPS = {
- "rack" => "~> 2.0",
+ "rack" => "2.0.8",
"rack-test" => "~> 1.1",
"artifice" => "~> 0.6.0",
"compact_index" => "~> 0.11.0",