summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2011-03-14Fixed #14733: no longer "validate" .raw() queries.Jacob Kaplan-Moss
2011-03-14Fixed #15601 -- Corrected a weird typo. Thanks, jMylesAdrian Holovaty
2011-03-14Fixed #15604 -- Changed django.db.models.permalink to use wraps() so that it ...Adrian Holovaty
2011-03-10Fixed #15559 - distinct queries introduced by [15607] cause errors with some ...Luke Plant
2011-03-03Fixed #12252 -- Ensure that queryset unions are commutative. Thanks to benrey...Russell Keith-Magee
2011-03-03Fixed #3094 -- Accelerated deprecation of XMLField, since it hasn't served an...Russell Keith-Magee
2011-02-21Fixed #11707 - limit_choices_to on a ForeignKey can render duplicate options ...Luke Plant
2011-02-12Fixed #13987 -- Ensure that the primary key is set correctly for all models t...Russell Keith-Magee
2011-02-12Fixed #15283 -- Made a minor performance tweak to __iter__. Thanks to lanyjie...Russell Keith-Magee
2011-02-08Fixed #13815 -- Ensure that reverse exclude lookups on nullable foreign keys ...Russell Keith-Magee
2011-02-08Fixed #15116 -- Strip ordering clause from in_bulk() queries, since ordering ...Russell Keith-Magee
2011-01-28Fixed #15103 - SuspiciousOperation with limit_choices_to and raw_id_fieldsLuke Plant
2011-01-26Fixed #15161 - Corrected handling of ManyToManyField with through table using...Carl Meyer
2011-01-26Fixed Python 2.4 incompatibility introduced in r15249.Carl Meyer
2011-01-26Tweaked r15303 to avoid O(N) lookup of field name. Thanks to Alex's eagle eyes.Carl Meyer
2011-01-26Fixed #6456 - Excised FileField file deletion to avoid data loss. Thanks to d...Carl Meyer
2011-01-26Fixed #13159 -- properly quote aggregates in order_by.Alex Gaynor
2011-01-26Fixed #13206 -- call super().__init__() in Model.__init__ to allow mixins to ...Alex Gaynor
2011-01-25Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no...Carl Meyer
2011-01-20Fixed #14672 - Added admin handling for on_delete=PROTECT. Thanks to jtiai fo...Carl Meyer
2011-01-19Fixed #14896 -- Ensured that _meta.get_all_related_objects(include_hidden=Tru...Carl Meyer
2011-01-19Fixed #15118 - Corrected the deletion-ordering for inherited models.Carl Meyer
2011-01-19Avoid doing quadratic amounts of work during object deletion.Alex Gaynor
2011-01-16Fixed #14707 -- Relax the protections on aggregate naming collisions when a V...Russell Keith-Magee
2011-01-14Cleaned up the ORM slightly.Alex Gaynor
2011-01-13Fixed #13668 -- Corrected database router methods invocation for ManyToMany f...Ramiro Morales
2011-01-11Fixed #11293 -- fixed using Q objects to generate ORs with aggregates.Alex Gaynor
2011-01-10Fix wrong attribute name in [15156]. Thanks to Alex Gaynor for spotting this.Andrew Godwin
2011-01-09Fixed #14951 -- Made the unique_for_{date,month,year} model field constraints...Ramiro Morales
2011-01-08Fixed #9029 -- Allow use of fieldname_id with get_or_create. Thanks to aaron ...Andrew Godwin
2010-12-22Fixed #10154: Allow combining F expressions with timedelta values.Karen Tracey
2010-12-12Fixed #12955 -- Use the size attribute of the file instead of len() to suppor...Jannis Leidel
2010-12-04Normalized the name order of arguments. There's no actual bug here, other tha...Russell Keith-Magee
2010-12-03Fixed #14700 -- ensure that a raw query is only executed once per iteration.Alex Gaynor
2010-12-01Fixed a bug in date queries with GIS backends introduced in [14715].Alex Gaynor
2010-11-26Fixed a suite of errors in the ORM -- a) fixed calling values_list().values_l...Alex Gaynor
2010-11-24Fixed #14700 - speed up RawQuerySet iterator.Luke Plant
2010-11-23Fixed #14697 - speeded up model instance creation by moving work outside of l...Luke Plant
2010-11-22Fixed #14754 -- corrected using an aggregate in an F expressions when that qu...Alex Gaynor
2010-11-21Fixed #3400 -- Support for lookup separator with list_filter admin option. Th...Honza Král
2010-11-21Fixed #5768 -- Added support for ManyToManyFields and reverse relations in va...Carl Meyer
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-18Fixed #14234 -- Re-validating a model instance added via ModelForm no longer ...Carl Meyer
2010-11-17Fixed #14257 -- removed ManyToManyField.isValidIDList which was completely de...Alex Gaynor
2010-11-17Fixed #14423 -- corrected incorrect SQL being generated when a nullable, inhe...Alex Gaynor
2010-11-17Fixed #11369 -- Corrected verbose_name_plural model Meta option to be consist...Ramiro Morales
2010-11-17Fixed #12687 -- fixed an issue with aggregates and counts in conjunction with...Alex Gaynor
2010-11-16Fixed #14691 -- Made ForeignKey.validate() use the right database. Thanks Mar...Ramiro Morales
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-11-04Fixed a test failure introduced in [14461].Alex Gaynor