aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-17 10:19:33 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-17 14:47:40 -0300
commitd6dbd7fbbcb38c7d34a0928bde2bfc7ce21618f0 (patch)
tree4b92d7f77dfe6307dc95552a8a806edbb5f47ada /activerecord/CHANGELOG.md
parent25f65498c13e9a094eeaae1bd9e9dd19b6adfad4 (diff)
downloadrails-d6dbd7fbbcb38c7d34a0928bde2bfc7ce21618f0.tar.gz
rails-d6dbd7fbbcb38c7d34a0928bde2bfc7ce21618f0.tar.bz2
rails-d6dbd7fbbcb38c7d34a0928bde2bfc7ce21618f0.zip
Merge pull request #7352 from aripollak/microsecond-timestamp
Fix occasional microsecond conversion inaccuracy Conflicts: activerecord/CHANGELOG.md
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8a96fefe99..74c3e6cb90 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,11 @@
## Rails 3.2.9 (unreleased)
+* Fix Column.microseconds and Column.fast_string_to_date to avoid converting
+ timestamp seconds to a float, since it occasionally results in inaccuracies
+ with microsecond-precision times. Fixes #7352.
+
+ *Ari Pollak*
+
* Fix `increment!`, `decrement!`, `toggle!` that was skipping callbacks.
Fixes #7306.