aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-08-17 23:46:55 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-08-17 23:46:55 +0000
commit18057d2fb6017df988fadc6496f187c2e6208277 (patch)
treea98a31e6839a3383975aa0081e071a3e6343dd96 /activerecord/CHANGELOG
parent4584376a914f8a8cee059943d80ba73d2d4e2627 (diff)
downloadrails-18057d2fb6017df988fadc6496f187c2e6208277.tar.gz
rails-18057d2fb6017df988fadc6496f187c2e6208277.tar.bz2
rails-18057d2fb6017df988fadc6496f187c2e6208277.zip
Cache nil results for :included has_one associations also. Closes #5787.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4783 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG4
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index f5813a8d03..47e7531c68 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,6 +1,8 @@
*SVN*
-* Fixed a bug which would cause .save to fail after trying to access a empty has_one association on a unsaved record. [Tobias Luetke]
+* Cache nil results for :included has_one associations also. #5787 [Michael Schoen]
+
+* Fixed a bug which would cause .save to fail after trying to access a empty has_one association on a unsaved record. [Tobias Luetke]
* Nested classes are given table names prefixed by the singular form of the parent's table name. [Jeremy Kemper]
Example: Invoice::Lineitem is given table name invoice_lineitems