aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-10-21 01:18:41 -0700
committerYves Senn <yves.senn@gmail.com>2013-10-21 01:18:41 -0700
commit73641563917e3a69b63a1b11c8ebe33c469e8951 (patch)
tree9aa72fba480bafb4694e864abaf0a9350ba4a5e8 /activerecord/CHANGELOG.md
parent6205476a53865cec15895dc0546a5ececace5b7a (diff)
parente2419a451aaeafc166b8677540bc29cd8b0c97fd (diff)
downloadrails-73641563917e3a69b63a1b11c8ebe33c469e8951.tar.gz
rails-73641563917e3a69b63a1b11c8ebe33c469e8951.tar.bz2
rails-73641563917e3a69b63a1b11c8ebe33c469e8951.zip
Merge pull request #12549 from makimoto/raise-when-find-without-pk
Raise an exception when model without primary key calls .find_with_ids
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 22a37810bc..e17394002d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Raise an exception when model without primary key calls `.find_with_ids`.
+
+ *Shimpei Makimoto*
+
* Make `Relation#empty?` use `exists?` instead of `count`.
*Szymon Nowak*