aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-26 14:50:18 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-26 14:50:18 -0300
commitf437f1104687e5bb26bf5ce791aee7d9cc0ec62a (patch)
treecc422be64e95027514920850809a0d1ef788d30e /activerecord/CHANGELOG.md
parent8b0753b4f0d0f66b73aac4cd26d6b575edc99fb6 (diff)
parent3bc314e65830dabd7b1c47ad1fa27be5ace0699f (diff)
downloadrails-f437f1104687e5bb26bf5ce791aee7d9cc0ec62a.tar.gz
rails-f437f1104687e5bb26bf5ce791aee7d9cc0ec62a.tar.bz2
rails-f437f1104687e5bb26bf5ce791aee7d9cc0ec62a.zip
Merge pull request #15924 from sgrif/sg-write-unknown-column
Move writing unknown column exception to null attribute
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index c3ded8d4a9..4b39791b73 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Fix subtle bugs regarding attribute assignment on models with no primary
+ key. `'id'` will no longer be part of the attributes hash.
+
+ *Sean Griffin*
+
* Deprecate automatic counter caches on `has_many :through`. The behavior was
broken and inconsistent.