diff options
author | Sam Stephenson <sam@37signals.com> | 2007-03-18 07:05:58 +0000 |
---|---|---|
committer | Sam Stephenson <sam@37signals.com> | 2007-03-18 07:05:58 +0000 |
commit | 3202fbabe6df3591d7e2c35727ea9c8b68df8828 (patch) | |
tree | c55f19f82564280e074d9aca449ee4848a97f158 /activesupport/CHANGELOG | |
parent | 3d5c947155934fb498f8788a204ae9f2e03f2f42 (diff) | |
download | rails-3202fbabe6df3591d7e2c35727ea9c8b68df8828.tar.gz rails-3202fbabe6df3591d7e2c35727ea9c8b68df8828.tar.bz2 rails-3202fbabe6df3591d7e2c35727ea9c8b68df8828.zip |
Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decoding by way of Syck with ActiveSupport::JSON.decode(json_string). Prevent hash keys that are JavaScript reserved words from being unquoted during encoding.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6443 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r-- | activesupport/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 63ca49bec4..368989877e 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decoding by way of Syck with ActiveSupport::JSON.decode(json_string). Prevent hash keys that are JavaScript reserved words from being unquoted during encoding. [Sam Stephenson] + * alias_method_chain preserves the original method's visibility. #7854 [Jonathan Viney] * Update Dependencies to ignore constants inherited from ancestors. Closes #6951. [Nicholas Seckar] |