diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-01-05 23:00:57 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-01-05 23:00:57 -0200 |
commit | 53954aa4762f5c4d1b28af3d382a40fd3ec04229 (patch) | |
tree | 774fec7fca39b503d562119c9daf3eb6e1f22cee | |
parent | 11e7c605a4db96233d35e1bc0eb366612ae44a98 (diff) | |
download | rails-53954aa4762f5c4d1b28af3d382a40fd3ec04229.tar.gz rails-53954aa4762f5c4d1b28af3d382a40fd3ec04229.tar.bz2 rails-53954aa4762f5c4d1b28af3d382a40fd3ec04229.zip |
Move CHANGELOG entry to Active Record
While the type definition is in Active Model the change of behavior will
be only user facing in Active Record so better to put the entry in its
changelog.
[ci skip]
-rw-r--r-- | activemodel/CHANGELOG.md | 5 | ||||
-rw-r--r-- | activerecord/CHANGELOG.md | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 463cca9350..e4769d2f40 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,8 +1,3 @@ -* Take into account UTC offset when assigning string representation of - timestamp with offset specified to attribute of time type. - - *Andrey Novikov* - ## Rails 5.0.0.beta1 (December 18, 2015) ## * Validate multiple contexts on `valid?` and `invalid?` at once. diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 9144ab6695..63f930e2ea 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,8 @@ +* Take into account UTC offset when assigning string representation of + timestamp with offset specified to attribute of time type. + + *Andrey Novikov* + * When calling `first` with a `limit` argument, return directly from the `loaded?` records if available. |