Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow ActiveRecord::Base.as_json to accept a frozen Hash #27945

Merged
merged 1 commit into from
Feb 8, 2017

Conversation

betesh
Copy link
Contributor

@betesh betesh commented Feb 8, 2017

Summary

ActiveRecord::Base.as_json takes an options Hash, which is cloned. The clone is then modified.
Since Object#clone preserves frozen state, a frozen Hash will not work here.

This commit resolves that by changing clone to dup, which does not preserve frozen state.

Other Information

There are many situations where one would want to pass a frozen Hash to as_json. I came across this issue when trying to create a default JSON representation:

class User < ApplicationRecord
  DEFAULT_JSON = { only: [:name, :email] }.freeze

  def as_json(options = nil)
    super(options.presence || DEFAULT_JSON)
  end
end

Doing this in a seemingly innocuous and correct way, I got this stack trace:

 RuntimeError:
   can't modify frozen Hash
# ~/.rvm/gems/ruby-2.3.0/gems/activerecord-5.0.1/lib/active_record/serialization.rb:14:in `serializable_hash'
# ~/.rvm/gems/ruby-2.3.0/gems/activemodel-5.0.1/lib/active_model/serializers/json.rb:99:in `as_json'
# ./app/models/user.rb:5:in `as_json'

@rails-bot
Copy link

Thanks for the pull request, and welcome! The Rails team is excited to review your changes, and you should hear from @schneems (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

This repository is being automatically checked for code quality issues using Code Climate. You can see results for this analysis in the PR status below. Newly introduced issues should be fixed before a Pull Request is considered ready to review.

Please see the contribution instructions for more information.

Copy link
Member

@rafaelfranca rafaelfranca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add a CHANGELOG entry?

@dennisbaskin
Copy link

👍

@betesh
Copy link
Contributor Author

betesh commented Feb 8, 2017

Changelog entry added

Copy link
Member

@rafaelfranca rafaelfranca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you squash your commits please?

@betesh betesh force-pushed the allow-frozen-hashes-to-as_json branch from 3982055 to 5cf13c3 Compare February 8, 2017 16:59
@betesh
Copy link
Contributor Author

betesh commented Feb 8, 2017

There's a Rubocop violation. Should I squash the fix?

@rafaelfranca
Copy link
Member

rafaelfranca commented Feb 8, 2017

If it is in your changeset, yes.

@betesh
Copy link
Contributor Author

betesh commented Feb 8, 2017

Yes, it's in my changeset. Sorry that wasn't clear. Done.

@betesh betesh force-pushed the allow-frozen-hashes-to-as_json branch from 5cf13c3 to c01f31f Compare February 8, 2017 17:05
@rafaelfranca
Copy link
Member

Backported in 0f338df.

rafaelfranca added a commit that referenced this pull request Feb 8, 2017
Allow ActiveRecord::Base.as_json to accept a frozen Hash
@rafaelfranca rafaelfranca merged commit c01f31f into rails:master Feb 8, 2017
rafaelfranca added a commit that referenced this pull request Feb 8, 2017
Allow ActiveRecord::Base.as_json to accept a frozen Hash
@betesh betesh deleted the allow-frozen-hashes-to-as_json branch March 17, 2017 20:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants