aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-09-19 23:10:36 -0400
committerGitHub <noreply@github.com>2018-09-19 23:10:36 -0400
commit4586b304fc61e3a5d756d005aa2c386a1b01b848 (patch)
tree1cdf574781e879bbd6825a2b1dc4efa584d28f41 /activerecord/CHANGELOG.md
parentd69b04de0ff33237209afea6f6cac3ab27934908 (diff)
parent16510d609c601aa7d466809f3073ec3313e08937 (diff)
downloadrails-4586b304fc61e3a5d756d005aa2c386a1b01b848.tar.gz
rails-4586b304fc61e3a5d756d005aa2c386a1b01b848.tar.bz2
rails-4586b304fc61e3a5d756d005aa2c386a1b01b848.zip
Merge pull request #33912 from gmcgibbon/ar_result_to_hash_deprecate
Deprecate ActiveRecord::Result#to_hash in favor of #to_a
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.
```