diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-06-14 17:56:49 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-06-14 17:56:49 -0300 |
commit | 6e34601653614ca98f632d14662b4852bc351abe (patch) | |
tree | fc588ff0677d6d321a155e09f79100e34e27a2da | |
parent | 78234fe605695d6e34431f8b491511e8dc963cfc (diff) | |
download | rails-6e34601653614ca98f632d14662b4852bc351abe.tar.gz rails-6e34601653614ca98f632d14662b4852bc351abe.tar.bz2 rails-6e34601653614ca98f632d14662b4852bc351abe.zip |
Add CHANGELOG entry for #10740
[ci skip]
-rw-r--r-- | activesupport/CHANGELOG.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 1863eec947..4b90638119 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,5 +1,13 @@ +* `HashWithIndifferentAccess#select working as intended` now returns a `HashWithIndifferentAccess` + instance instead of a `Hash` instance. + + Fixes #10723 + + *Albert Llop* + * Add `DateTime#usec` and `DateTime#nsec` so that `ActiveSupport::TimeWithZone` keeps sub-second resolution when wrapping a `DateTime` value. + Fixes #10855 *Andrew White* @@ -15,6 +23,7 @@ * Prevent side effects to hashes inside arrays when `Hash#with_indifferent_access` is called. + Fixes #10526 *Yves Senn* |