diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-10-09 02:46:57 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-10-09 02:46:57 +0000 |
commit | 8e3bf70bcd496ae642fdae5ad7717ad8378de176 (patch) | |
tree | 61a47381adc2b388366bf1806ff3bedaeb570517 /activerecord/CHANGELOG | |
parent | ccd32adecae3e95836effe8c96ac215e9b9e580e (diff) | |
download | rails-8e3bf70bcd496ae642fdae5ad7717ad8378de176.tar.gz rails-8e3bf70bcd496ae642fdae5ad7717ad8378de176.tar.bz2 rails-8e3bf70bcd496ae642fdae5ad7717ad8378de176.zip |
Removes the ability for eager loaded conditions to be interpolated, since there is no model instance to use as a context for interpolation. #5553 [turnip@turnipspatch.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5264 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index a16e2bef02..0ccf3ccc3f 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Removes the ability for eager loaded conditions to be interpolated, since there is no model instance to use as a context for interpolation. #5553 [turnip@turnipspatch.com] + * Added timeout option to SQLite3 configurations to deal more gracefully with SQLite3::BusyException, now the connection can instead retry for x seconds to see if the db clears up before throwing that exception #6126 [wreese@gmail.com] * Added update_attributes! which uses save! to raise an exception if a validation error prevents saving #6192 [jonathan] |