aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorKevin Cheng <Kache@users.noreply.github.com>2016-01-29 17:44:04 -0500
committerGannon McGibbon <gannon.mcgibbon@shopify.com>2018-09-18 16:40:10 -0400
commit16510d609c601aa7d466809f3073ec3313e08937 (patch)
treea7f1ccbc273008772d6611d9f882acb853aa4f8a /activerecord/CHANGELOG.md
parente925cb4d856088a815bf4a0cf27518d01bb4029d (diff)
downloadrails-16510d609c601aa7d466809f3073ec3313e08937.tar.gz
rails-16510d609c601aa7d466809f3073ec3313e08937.tar.bz2
rails-16510d609c601aa7d466809f3073ec3313e08937.zip
Deprecate ActiveRecord::Result#to_hash in favor of #to_a
method returns an array of hashes, not a hash e.g. Hash.try_convert(result) calls #to_hash and raises a TypeError [Gannon McGibbon + Kevin Cheng]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 477bc1b54a..430dd5d917 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Deprecate `ActiveRecord::Result#to_hash` in favor of `ActiveRecord::Result#to_a`.
+
+ *Gannon McGibbon*, *Kevin Cheng*
+
* SQLite3 adapter supports expression indexes.
```