Make ActiveSupport HashWithIndifferentAccess#to_options and alias for HashWithIndifferentAccess#symbolize_keys#34360
Make ActiveSupport HashWithIndifferentAccess#to_options and alias for HashWithIndifferentAccess#symbolize_keys#34360rafaelfranca merged 1 commit intorails:masterfrom weilandia:34359_hash_with_indifferent_access_to_options
Conversation
|
Thanks for the pull request, and welcome! The Rails team is excited to review your changes, and you should hear from @kamipo (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. |
gmcgibbon
left a comment
There was a problem hiding this comment.
I think this counts as a bug. Could you please add a changelog entry?
activesupport/lib/active_support/hash_with_indifferent_access.rb
Outdated
Show resolved
Hide resolved
Fixes #34359 Prior to 5.2.0 (2cad8d7), HashWithIndifferentAccess#to_options acted as an alias to HashWithIndifferentAccess#symbolize_keys. Now, #to_options returns an instance of HashWithIndifferentAccess while #symbolize_keys returns and instance of Hash. This pr makes it so HashWithIndifferentAccess#to_options acts as an alias for HashWithIndifferentAccess#symbolize_keys once again.
|
@gmcgibbon thanks for the review! I addressed your comments -- let me know if anything else stands out. Also, do you think this issue warrants a note in the release notes/upgrade guide for 5.2? |
…access_to_options Make ActiveSupport HashWithIndifferentAccess#to_options and alias for HashWithIndifferentAccess#symbolize_keys
Fixes #34359
Summary
Prior to 5.2.0 (de9e323, 2cad8d7),
HashWithIndifferentAccess#to_optionsacted asan alias to
HashWithIndifferentAccess#symbolize_keys. Now,#to_optionsreturns an instance of
HashWithIndifferentAccesswhile#symbolize_keysreturns and instance of
Hash.This pr makes it so
HashWithIndifferentAccess#to_optionsacts as analias for
HashWithIndifferentAccess#symbolize_keysonce again.Other Information
See #34359
Thanks!