Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix querying with an empty hash | Damien Mathieu | 2012-09-19 | 1 | -1/+10 |
| | | | | Closes #6960 | ||||
* | Fix nested association references | Jon Leighton | 2012-09-12 | 1 | -38/+31 |
| | | | | | Previously the reflection would be looked up on the wrong class. However the test passed because the examples referred back to themselves. | ||||
* | Accept belongs_to assoc. keys in ActiveRecord queries | beerlington | 2012-09-11 | 1 | -1/+69 |
| | | | | | | | | | | | | | Allows you to specify the model association key in a belongs_to relationship instead of the foreign key. The following queries are now equivalent: Post.where(:author_id => Author.first) Post.where(:author => Author.first) PriceEstimate.where(:estimate_of_type => 'Treasure', :estimate_of_id => treasure) PriceEstimate.where(:estimate_of => treasure) | ||||
* | predicate builder should not recurse for determining where columns. | Aaron Patterson | 2012-05-30 | 1 | -0/+19 |
Thanks to Ben Murphy for reporting this CVE-2012-2661 |