-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update redis gems #4
Conversation
@@ -3,9 +3,9 @@ source "https://rubygems.org" | |||
gemspec | |||
|
|||
gem "rake" | |||
gem "redis-namespace", github: "resque/redis-namespace", branch: :master | |||
gem "redis-namespace", "1.11.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the version that platform
is targeting to upgrade to
gem "rails", ">= 6.0.2" | ||
gem "sqlite3", platforms: :ruby | ||
gem "sqlite3", "~> 1.7", platforms: :ruby |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This allows gemtester
to work, so it seems good to do here (the Gemfile gets used for CI/tests only)
Updates our fork for some upstream changes that are required for
platform
to use a newer version of theredis
gemThis also updates our fork repo to be able to run
bundle exec rake
locally to run all the testsfor use in
platform
:Includes (modified code from) these upstream PRs:
Redis#pipelined
andRedis#multi
sidekiq/sidekiq#5139