Skip to content

Commit

Permalink
Downgrade rails and do not bump redis (#918)
Browse files Browse the repository at this point in the history
* Downgrade rails and do not bump redis

* Add notes for future troubleshooting.

* Downgrade faraday
  • Loading branch information
bess committed May 25, 2021
1 parent 5577fae commit 539d96d
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 201 deletions.
7 changes: 6 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ gem 'graphql-client'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'rack', '>= 2.0.6'
gem 'rails', '~> 5.2'
# Locking rails at 5.2.4.5 until we can handle this upgrade: https://github.com/rails/rails/releases/tag/v5.2.4.6
# The problem is CVE-2021-22885 and we should fix it upsteam.
gem 'rails', '5.2.4.5'
gem 'sass-rails', '~> 5.0'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
Expand Down Expand Up @@ -55,6 +57,7 @@ gem 'ddtrace'
gem 'devise', '~> 4.7.1'
gem 'devise-guests', '~> 0.3'
gem 'devise_invitable'
gem 'faraday', '< 1'
gem 'iiif-presentation'
gem 'iso-639'
gem 'lograge'
Expand All @@ -63,6 +66,8 @@ gem 'omniauth', '~> 1.8.1'
gem 'omniauth-cas'
gem 'open_uri_redirections'
gem 'redis-namespace'
# Upgrading past redis 3.3.5 currently breaks deploy. Test any upgrades here carefully.
gem 'redis', '3.3.5'
gem 'riiif'
gem 'rsolr', '~> 1.0.6'
gem 'sidekiq', '< 6'
Expand Down

0 comments on commit 539d96d

Please sign in to comment.