Skip to content

Commit

Permalink
Fix dependency on JSON gem
Browse files Browse the repository at this point in the history
Don't use `json` 2.7.0 release that has a regression.

Ref: flori/json#554
  • Loading branch information
eileencodes authored and byroot committed Dec 2, 2023
1 parent b3b230c commit a8e0792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -40,7 +40,7 @@ gem "bcrypt", "~> 3.1.11", require: false
gem "terser", ">= 1.1.4", require: false

# 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.
gem "cgi", ">= 0.3.6", require: false
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -593,7 +593,7 @@ DEPENDENCIES
importmap-rails (>= 1.2.3)
jbuilder
jsbundling-rails
json (>= 2.0.0)
json (>= 2.0.0, != 2.7.0)
libxml-ruby
listen (~> 3.3)
mdl
Expand Down

0 comments on commit a8e0792

Please sign in to comment.