| Age | Commit message (Expand) | Author |
| 2011-09-10 | Remove a bunch of deadcode/dead imports. | Alex Gaynor |
| 2011-09-09 | Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ... | Alex Gaynor |
| 2011-08-23 | Allow "pk" as a field alias in QuerySet.only() calls. | Malcolm Tredinnick |
| 2011-08-23 | Fixed an isnull=False filtering edge-case. Fixes #15316. | Malcolm Tredinnick |
| 2011-08-23 | Added convenience method for viewing Query SQL without params. | Malcolm Tredinnick |
| 2011-08-22 | Fixed #14876 -- Ensure that join promotion works correctly when there are nul... | Russell Keith-Magee |
| 2011-06-28 | Fixed #5535 -- Allow using an explicit foreign key in get() calls. Thanks, Mi... | Jannis Leidel |
| 2011-05-21 | Fixed #14476 -- Fixed resolution of automatically generated annotation names ... | Ramiro Morales |
| 2011-05-15 | Fixed #15790 -- Fixed QuerySet only() and defer() methods behavior with proxy... | Ramiro Morales |
| 2011-05-05 | Fixed #15823 - incorrect join condition when combining Q objects | Luke Plant |
| 2011-04-22 | Fixed #14729 -- RawQuerySet.__repr__ fails when params passed as list. Thanks... | Jannis Leidel |
| 2011-04-20 | Fixed #2705: added a `select_for_update()` clause to querysets. | Jacob Kaplan-Moss |
| 2011-04-11 | Made some negligible docstring fixes while I was poking around in the depths ... | Adrian Holovaty |
| 2011-03-28 | Removed a bunch more Python 2.4 workarounds now that we don't support that ve... | Adrian Holovaty |
| 2011-03-14 | Fixed #14733: no longer "validate" .raw() queries. | Jacob Kaplan-Moss |
| 2011-03-03 | Fixed #12252 -- Ensure that queryset unions are commutative. Thanks to benrey... | Russell Keith-Magee |
| 2011-02-08 | Fixed #13815 -- Ensure that reverse exclude lookups on nullable foreign keys ... | Russell Keith-Magee |
| 2011-01-26 | Fixed #15161 - Corrected handling of ManyToManyField with through table using... | Carl Meyer |
| 2011-01-26 | Tweaked r15303 to avoid O(N) lookup of field name. Thanks to Alex's eagle eyes. | Carl Meyer |
| 2011-01-25 | Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no... | Carl Meyer |
| 2011-01-14 | Cleaned up the ORM slightly. | Alex Gaynor |
| 2011-01-11 | Fixed #11293 -- fixed using Q objects to generate ORs with aggregates. | Alex Gaynor |
| 2010-11-26 | Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l... | Alex Gaynor |
| 2010-11-17 | Fixed #14423 -- corrected incorrect SQL being generated when a nullable, inhe... | Alex Gaynor |
| 2010-11-17 | Fixed #12687 -- fixed an issue with aggregates and counts in conjunction with... | Alex Gaynor |
| 2010-07-30 | Fixed #13882 -- Removed an unnecessary nested where clause introduced on __is... | Russell Keith-Magee |
| 2010-04-30 | Fixed #12851 -- Another attempt at fixing select_related() with inherited mod... | Russell Keith-Magee |
| 2010-04-30 | Fixed #12851 -- Corrected the loading of values when select_related() is used... | Russell Keith-Magee |
| 2010-04-15 | Fixed #13349 -- Ensure that raw queries evaluate the entire query if the back... | Russell Keith-Magee |
| 2010-04-02 | Fixed #12429 -- Modified RawQuery to provide some facilities required by Orac... | Russell Keith-Magee |
| 2010-04-01 | Fixed #12429 -- Ensure that raw queries call resolve_columns if the backend d... | Russell Keith-Magee |
| 2010-03-21 | Fixed #12822: Don't copy the _aggregate_select_cache when cloning a query set, | Karen Tracey |
| 2010-03-20 | Fixed #13156 -- Ensure that exists() queries are as fast as they can be. Than... | Russell Keith-Magee |
| 2010-03-07 | Fixed #12876 -- Corrected a problem with recursive relations under deepcopy. ... | Russell Keith-Magee |
| 2010-02-23 | Fixed #12806 -- Added an implementation of `RawQuerySet.__getitem__`. Thanks... | Justin Bronn |
| 2010-02-23 | Fixed #12855 -- QuerySets with `extra` where parameters now combine correctly... | Justin Bronn |
| 2010-02-10 | Fixed #11535: Corrected SQL generated for queries involving generic relations... | Karen Tracey |
| 2009-12-24 | Fixed #12433 -- Corrected a typo in the text of the exception raised by RawQu... | Russell Keith-Magee |
| 2009-12-22 | Changes to get raw queries working on the oracle backend. | Ian Kelly |
| 2009-12-22 | Fixed #1142 -- Added multiple database support. | Russell Keith-Magee |
| 2009-12-20 | Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer... | Jacob Kaplan-Moss |
| 2009-12-17 | Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than... | Jacob Kaplan-Moss |
| 2009-10-25 | Fixed #12079: Changed has_results to get a single result, thus preventing exi... | Karen Tracey |
| 2009-10-24 | Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor. | Jacob Kaplan-Moss |
| 2009-06-06 | Fixed #11082 -- Ensured that subqueries used in an exclude(X__in=) clause are... | Russell Keith-Magee |
| 2009-06-06 | Fixed #10572 -- Corrected the operation of the defer() and only() clauses whe... | Russell Keith-Magee |
| 2009-05-29 | Fixed #11216 and #11218 -- Corrected a few typos, thanks buriy. | Gary Wilson Jr |
| 2009-05-11 | Fixed #10953, #10955: proxies of proxies now work correctly, though I still d... | Jacob Kaplan-Moss |
| 2009-04-30 | Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe... | Russell Keith-Magee |
| 2009-04-11 | Fixed #10796 -- Corrected a pickling problem introduced by [10522]. Thanks to... | Russell Keith-Magee |