Update json gem to v2.5.1
In preparation for the Ruby 3 upgrade, we should update json to match the minimum gem version as specified by the default gem: https://stdgems.org/json/#gem-version Which for Ruby 3.0 is 2.5.1. This will otherwise lead to errors, since rubygems will encounter conflicting gemspecs during require. See https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/6286
Showing
... | ... | @@ -522,7 +522,7 @@ gem 'lockbox', '~> 0.6.2' |
gem 'valid_email', '~> 0.1' | ||
# JSON | ||
gem 'json', '~> 2.3.0' | ||
gem 'json', '~> 2.5.1' | ||
gem 'json_schemer', '~> 0.2.18' | ||
gem 'oj', '~> 3.10.6' | ||
gem 'multi_json', '~> 1.14.1' | ||
... | ... |
Please register or sign in to comment