You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since rails#486, key format is also applied to nested hashes that are
passed as values:
json.key_format! camelize: :lower
json.settings({some_value: "abc"})
# => { "settings": { "someValue": "abc" }}
This breaks code that relied on the previous behavior. Add a
`deep_format_keys!` directive that can be used to opt out of the new
behavior.
0 commit comments