Fix dependency on JSON gem

Don't use `json` 2.7.0 release that has a regression.

Ref: https://github.com/flori/json/pull/554
This commit is contained in:
eileencodes 2023-12-01 12:57:08 -05:00 committed by Jean Boussier
parent b3b230c08e
commit a8e07924d6
2 changed files with 2 additions and 2 deletions

@ -40,7 +40,7 @@ gem "bcrypt", "~> 3.1.11", require: false
gem "terser", ">= 1.1.4", require: false gem "terser", ">= 1.1.4", require: false
# Explicitly avoid 1.x that doesn't support Ruby 2.4+ # Explicitly avoid 1.x that doesn't support Ruby 2.4+
gem "json", ">= 2.0.0" gem "json", ">= 2.0.0", "!=2.7.0"
# Workaround until Ruby ships with cgi version 0.3.6 or higher. # Workaround until Ruby ships with cgi version 0.3.6 or higher.
gem "cgi", ">= 0.3.6", require: false gem "cgi", ">= 0.3.6", require: false

@ -593,7 +593,7 @@ DEPENDENCIES
importmap-rails (>= 1.2.3) importmap-rails (>= 1.2.3)
jbuilder jbuilder
jsbundling-rails jsbundling-rails
json (>= 2.0.0) json (>= 2.0.0, != 2.7.0)
libxml-ruby libxml-ruby
listen (~> 3.3) listen (~> 3.3)
mdl mdl