aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-01-03 19:20:43 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-01-03 19:20:43 -0800
commit6042067c0b20602e72954450e9e8a19dfa8a9f7d (patch)
treeaff2dae32a7253c9cd61679f7b5d91797bd4be8e /activesupport/CHANGELOG
parent532b11690fa2c4fd2c127ddc7df246c4469ebbc4 (diff)
downloadrails-6042067c0b20602e72954450e9e8a19dfa8a9f7d.tar.gz
rails-6042067c0b20602e72954450e9e8a19dfa8a9f7d.tar.bz2
rails-6042067c0b20602e72954450e9e8a19dfa8a9f7d.zip
Changed the default ActiveSupport.use_standard_json_time_format from false to true and
ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH]
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 9b0a84678a..87ec6f2a2c 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,8 @@
*Edge*
+* Changed the default ActiveSupport.use_standard_json_time_format from false to true and
+ActiveSupport.escape_html_entities_in_json from true to false to match previously announced Rails 3 defaults [DHH]
+
* Added Object#presence that returns the object if it's #present? otherwise returns nil [DHH/Colin Kelley]
* Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !x.include?/else calls [DHH]