Fix missing translated attributes in as_json #630
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes a regression that I noticed in
ActiveRecord::Base#as_json
return value.Description
If you enable
attribute_methods
plugin, mobility patchesActiveRecord::Base#attributes
method to include translated attributes as wekk. The same change used to apply toActiveRecord::Base#as_json
too.But the internal implementation of serialization changed slightly in Rails 7.0 to improve the performance.
As a result,
as_json
method no longer includes translated attributes.Solution
I added an override of
attribute_names_for_serialization
method into the plugin to make it include the missing translated fields intoserialized_attributes
hash which is used byas_json
later.attribute_names_for_serialization
would be never be called by Rails 6.x or lower, but I still added a safe guard against callingsuper
.