aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorErich Menge <erich.menge@me.com>2012-05-30 11:29:09 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-07 19:36:08 -0300
commit83f2ffcf4388f08e1b15d58b66fff1dfad9e99ef (patch)
tree6cee15be4a09869cb59485590a34e216b00b4176 /activesupport/CHANGELOG.md
parent481dac9ec0791de68b1cc78feff23d946270f00a (diff)
downloadrails-83f2ffcf4388f08e1b15d58b66fff1dfad9e99ef.tar.gz
rails-83f2ffcf4388f08e1b15d58b66fff1dfad9e99ef.tar.bz2
rails-83f2ffcf4388f08e1b15d58b66fff1dfad9e99ef.zip
Deprecate ActiveSupport::JSON::Variable
Reason: ActiveSupport::JSON::Variable is not used anymore internally. It was deprecated in 3-2-stable but we reverted all the deprecation for point releases. See #6536 and #6546. Conflicts: activesupport/lib/active_support/json/variable.rb
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 70bd1bf4d3..3e5a53b0ff 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,5 +1,8 @@
## Rails 4.0.0 (unreleased) ##
+* ActiveSupport::JSON::Variable is deprecated. Define your own #as_json and #encode_json methods
+ for custom JSON string literals. *Erich Menge*
+
* Add String#indent. *fxn & Ace Suares*
* Inflections can now be defined per locale. `singularize` and `pluralize` accept locale as an extra argument. *David Celis*