diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-25 11:47:37 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-25 11:47:37 +0000 |
commit | 302c23d5a6c1df4a5a9f373e545db5f8a894bdd6 (patch) | |
tree | 335ff85f5a4bc4873276cfbecace495d3ae33079 /activerecord/CHANGELOG | |
parent | 3eed3272d7fc79040b6eb3b8586be0d8875d8203 (diff) | |
download | rails-302c23d5a6c1df4a5a9f373e545db5f8a894bdd6.tar.gz rails-302c23d5a6c1df4a5a9f373e545db5f8a894bdd6.tar.bz2 rails-302c23d5a6c1df4a5a9f373e545db5f8a894bdd6.zip |
Fixed Base#find to honor the documentation on how :joins work and make them consistent with Base#count #1405 [pritchie@gmail.com] Improved dynamic finder docs #1495 [laurel@gorgorg.org]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1510 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index c7526beb83..5d2734cfa2 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,17 @@ *SVN* +* Fixed Base#find to honor the documentation on how :joins work and make them consistent with Base#count #1405 [pritchie@gmail.com]. What used to be: + + Developer.find :all, :joins => 'developers_projects', :conditions => 'id=developer_id AND project_id=1' + + ...should instead be: + + Developer.find( + :all, + :joins => 'LEFT JOIN developers_projects ON developers.id = developers_projects.developer_id', + :conditions => 'project_id=1' + ) + * Fixed that validations didn't respecting custom setting for too_short, too_long messages #1437 [Marcel Molina] * Fixed that clear_association_cache doesn't delete new associations on new records (so you can safely place new records in the session with Action Pack without having new associations wiped) #1494 [cluon] |