CHANGELOG in activesupport-2.3.5 vs CHANGELOG in activesupport-2.3.6.pre
- old
+ new
@@ -1,17 +1,40 @@
+*2.3.6 (pending)*
+
+* Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice. [Jeremy Kemper]
+
+* JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez]
+
+* Introduce String#html_safe for rails_xss plugin and forward-compatibility with Rails 3. [Michael Koziarski, Santiago Pastorino, José Ignacio Costa]
+
+* Time#- with a DateTime argument behaves the same as with a Time argument, i.e. returns the difference between self and arg as a Float #3476 [Geoff Buesing]
+
+* YAML serialization for OrderedHash. #3608 [Gregor Schmidt]
+
+* Update bundled TZInfo to v0.3.16 [Geoff Buesing]
+
+* Georgetown TimeZone is now mapped to "America/Guyana" instead of "America/Argentina/San_Juan" #1821 [Geoff Buesing, Reuben Sivan]
+
+* Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !x.include?/else calls [DHH]
+
+
*2.3.5 (November 25, 2009)*
* Minor Bug Fixes and deprecation warnings
+* Update Edinburgh TimeZone to use "Europe/London" instead of "Europe/Dublin" #3310 [Phil Ross]
+
* Fixes for the Nokogiri backend for XmlMini
* Ruby 1.9 Compatibility
+
*2.3.4 (September 4, 2009)*
* Introduce ActiveSupport::Multibyte.clean to clean invalid multibyte strings.
* Bug fixes
+
*2.3.3 (July 12, 2009)*
* JSON: +Object#to_json+ calls +as_json+ to coerce itself into something natively encodable like +Hash+, +Integer+, or +String+. Override +as_json+ instead of +to_json+ so you're JSON-library-agnostic. [Jeremy Kemper]