Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Lee Yu <heinrich@gitlab.com>2022-11-15 11:17:57 +0300
committerHeinrich Lee Yu <heinrich@gitlab.com>2022-11-15 11:17:57 +0300
commit144a69adaca7ca5e926e0cd815c955d3e54d9992 (patch)
tree8faf18b6f06cb8b505982e8a9a19d3debd31a789
parent04a8caab5e1b6747da6e14470c8f48aa145f42ff (diff)
Upgrade redis gem to v4.8.0upgrade-redis-gem
This matches the version we use in the Rails repo
-rw-r--r--ruby/Gemfile5
-rw-r--r--ruby/Gemfile.lock3
2 files changed, 7 insertions, 1 deletions
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 89bafb90f..5c9feca5c 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -21,6 +21,11 @@ gem 'licensee', '~> 9.15'
gem 'google-protobuf', '~> 3.21.9'
+# Rails is currently blocked on the upgrade to the new major version for Redis,
+# so we don't upgrade either until the issue is resolved. This is an indirect
+# dependency and can thus be removed when the version constraint is gone.
+gem 'redis', '~> 4.8.0'
+
group :development, :test do
gem 'rubocop', '~> 0.69', require: false
gem 'rspec', require: false
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index 23521a239..85f0f5c03 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -134,7 +134,7 @@ GEM
ffi (>= 1.0.6)
msgpack (>= 0.4.3)
optimist (>= 3.0.0)
- redis (4.7.1)
+ redis (4.8.0)
regexp_parser (1.8.1)
reverse_markdown (1.4.0)
nokogiri
@@ -214,6 +214,7 @@ DEPENDENCIES
licensee (~> 9.15)
pry (~> 0.12.2)
rbtrace
+ redis (~> 4.8.0)
rspec
rspec-parameterized
rubocop (~> 0.69)