summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2011-10-07Fixed #17014 - added protection against infinite recursion.Luke Plant
2011-10-07Fixed #17003 - prefetch_related should support foreign keys/one-to-oneLuke Plant
2011-10-06Removed ForeignRelatedObjectsDescriptor.RelatedManager.delete_manager, which ...Luke Plant
2011-10-05Fixed #16937 - added `QuerySet.prefetch_related` to prefetch many related obj...Luke Plant
2011-10-05Fixed #16902 - select_related() results in a poor perfomanceLuke Plant
2011-09-30Fixed #14270 - related manager classes should be cachedLuke Plant
2011-09-29Cleanups to related manager code, especially in use of closures.Luke Plant
2011-09-29Small cleanups of 'related manager' code for consistencyLuke Plant
2011-09-26Removed unused parameter 'join_table' in various bits of RelatedManager codeLuke Plant
2011-09-22Fixed #7198 (again) -- Corrects a problem with string interpolation from r168...Gabriel Hurley
2011-09-22Fixed #7198 -- Improved error message when missing models.py. Thanks Silver_G...Paul McMillan
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-10Fixed bulk_insertion on databases which don't yet support it. Thanks to Justi...Alex Gaynor
2011-09-10Ensure bulk_create returns the right value if the argument is an empty list.Alex Gaynor
2011-09-10Ensure bulk_create returns what it is supposed to.Alex Gaynor
2011-09-10Altered the behavior of URLField to avoid a potential DOS vector, and to avoi...Russell Keith-Magee
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-08-25Make ManyToManyField model references more robust.Malcolm Tredinnick
2011-08-23Allow "pk" as a field alias in QuerySet.only() calls.Malcolm Tredinnick
2011-08-23Fixed #16299 -- Ensure that unicode strings can be used to identify classes i...Russell Keith-Magee
2011-08-23Fix initialisation of ImageField super classes.Malcolm Tredinnick
2011-08-23Fixed an isnull=False filtering edge-case. Fixes #15316.Malcolm Tredinnick
2011-08-23Added convenience method for viewing Query SQL without params.Malcolm Tredinnick
2011-08-22Fixed #14876 -- Ensure that join promotion works correctly when there are nul...Russell Keith-Magee
2011-08-22Improved error message display during validation errors.Malcolm Tredinnick
2011-08-13Fixed #14695 -- Stopped model fields from incorrectly overwriting the field n...Jannis Leidel
2011-08-12Fixed #10405 -- Raise a more useful error if the formfield of a related model...Jannis Leidel
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-07-29Fixed #16472 -- Removed stale code in the query code. Thanks, fva@chtd.org.Jannis Leidel
2011-07-29Fixed #16531 -- Fixed various instances of "undefined name" issues. Thanks, B...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-07-07Fixed #16409 -- Fixed an error condition when using QuerySet only()/defer() o...Ramiro Morales
2011-06-28Fixed #5535 -- Allow using an explicit foreign key in get() calls. Thanks, Mi...Jannis Leidel
2011-06-13Fixed #16246 -- Fixed GenericIPAddressField tests on PostgreSQL.Jannis Leidel
2011-06-13Refs #16234: Avoid GenericIPAddressField clobbering Field default_error_messa...Karen Tracey
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel
2011-06-09Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales
2011-06-09Fixed #8913 - Make "must be unique" error messages customisable. Thanks to Le...Andrew Godwin
2011-06-07Made clear() on a reverse foreign key significantly more efficient. Thanks t...Alex Gaynor
2011-05-30Fixed #15776 - delete regression in Django 1.3 involving nullable foreign keysLuke Plant
2011-05-21Fixed #11789 -- Fixed aggregates so it interacts with QuerySet none() in a wa...Ramiro Morales
2011-05-21Fixed #14476 -- Fixed resolution of automatically generated annotation names ...Ramiro Morales
2011-05-15Fixed #15790 -- Fixed QuerySet only() and defer() methods behavior with proxy...Ramiro Morales
2011-05-07Fixed #15709 - Duplicated group_by conditionLuke Plant
2011-05-05Fixed #15823 - incorrect join condition when combining Q objectsLuke Plant
2011-05-03Fixed #5931 -- Added __repr__ to db fields. Thanks, Thomas Güttler, emulbreh...Jannis Leidel
2011-05-03Fixed #5833 -- Modified the admin list filters to be easier to customize. Man...Jannis Leidel
2011-04-27Refs #15093 -- Fixed another get_models call missed in r16053. Thanks Luke fo...Carl Meyer
2011-04-27Fixed #15903 -- Allowed not-installed models to still be referenced in relate...Carl Meyer
2011-04-22Fixed #14729 -- RawQuerySet.__repr__ fails when params passed as list. Thanks...Jannis Leidel