CHANGELOG.md in activesupport-4.2.4 vs CHANGELOG.md in activesupport-4.2.5.rc1
- old
+ new
@@ -1,4 +1,19 @@
+## Rails 4.2.5.rc1 (October 30, 2015) ##
+
+* Fix `TimeWithZone#eql?` to properly handle `TimeWithZone` created from `DateTime`:
+ twz = DateTime.now.in_time_zone
+ twz.eql?(twz.dup) => true
+
+ Fixes #14178.
+
+ *Roque Pinel*
+
+* Handle invalid UTF-8 characters in `MessageVerifier.verify`.
+
+ *Roque Pinel*, *Grey Baker*
+
+
## Rails 4.2.4 (August 24, 2015) ##
* Fix a `SystemStackError` when encoding an `Enumerable` with `json` gem and
with the Active Support JSON encoder loaded.