summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2009-06-15Fixed #9023 -- Corrected a problem where cached attribute values would cause ...Russell Keith-Magee
2009-06-15Fixed #11311 -- Reverted [10952], Refs #10785. Changeset [10952] caused probl...Russell Keith-Magee
2009-06-08Fixed #11194 -- Corrected loading of Proxy models from fixtures (and, by exte...Russell Keith-Magee
2009-06-08Fixed #10672 -- Altered save_base to ensure that proxy models send a post_sav...Russell Keith-Magee
2009-06-08Fixed #10785 -- Corrected a case for foreign key lookup where the related obj...Russell Keith-Magee
2009-06-06Fixed #11082 -- Ensured that subqueries used in an exclude(X__in=) clause are...Russell Keith-Magee
2009-06-06Fixed #10572 -- Corrected the operation of the defer() and only() clauses whe...Russell Keith-Magee
2009-06-03Fixed #9479 -- Corrected an edge case in bulk queryset deletion that could ca...Russell Keith-Magee
2009-05-29Fixed #11216 and #11218 -- Corrected a few typos, thanks buriy.Gary Wilson Jr
2009-05-28Changes to `ImageFileDescriptor` and `ImageField` to fix a few cases of setti...Gary Wilson Jr
2009-05-19Fixed #11116 -- Corrected the deletion of proxy objects. Thanks to Samuel Ada...Russell Keith-Magee
2009-05-19Fixed #9308 -- Corrected the updated of nullable foreign key fields when dele...Russell Keith-Magee
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-05-11Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss
2009-05-08Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss
2009-05-07Fixed #10153: foreign key `gte` and `lte` lookups now work. Thanks, joelhooks...Jacob Kaplan-Moss
2009-05-02Fixed #10349 -- Modified ManyToManyFields to allow initial form values to be ...Russell Keith-Magee
2009-04-30Fixed #10847 -- Modified handling of extra() to use a masking strategy, rathe...Russell Keith-Magee
2009-04-22Added a `QuerySet.ordered` property to check if a queryset is already ordered...Jacob Kaplan-Moss
2009-04-13Fixed #10237 -- Corrected the handling of self-referential m2m fields when us...Russell Keith-Magee
2009-04-12Fixed #10692 -- Fixed DecimalField lookups for extreme values.Malcolm Tredinnick
2009-04-12Fixed #10071 -- Changed some internal database data representations.Malcolm Tredinnick
2009-04-11Fixed #10796 -- Corrected a pickling problem introduced by [10522]. Thanks to...Russell Keith-Magee
2009-04-11Fixed #10197 -- Corrected pickling of querysets when a subset of fields was s...Russell Keith-Magee
2009-04-11Fixed #10766 -- Raise an error when annotate() references another aggreagte()...Russell Keith-Magee
2009-04-11Fixed BooleanFields being coerced null=True in Oracle.Ian Kelly
2009-04-10Fixed #9640, #10549: BooleanFields with choices, a default, and null=False no...Jacob Kaplan-Moss
2009-04-08Fixed #10666 -- Corrected the handling of inherited fields with aggregate() a...Russell Keith-Magee
2009-04-04Fixed a problem when computing deferred fields on multiple related models.Malcolm Tredinnick
2009-04-04Fixed deferred fields and select_related() interaction.Malcolm Tredinnick
2009-04-04Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick
2009-04-02Fixed #10670: fixed reusing QuerySets previously used in a filter expression....Jacob Kaplan-Moss
2009-04-01Fixed #9871 -- Geometry objects are now returned in dictionaries and tuples r...Justin Bronn
2009-03-30Fixed #10149. FileFields in a form now validate max_length. Based on a patch ...Joseph Kocherhans
2009-03-30Fixed #10413: RelatedManager.add no longer fails silenty when trying to add a...Jacob Kaplan-Moss
2009-03-30Fixed #10157: correctly set the related objects pk when assigning a reverse O...Jacob Kaplan-Moss
2009-03-25Fixed a breakage with ManyToManyFields in admin caused by r10139.Malcolm Tredinnick
2009-03-24Fixed #9926 -- Fixes for some select_related() situations.Malcolm Tredinnick
2009-03-22Fixed deferred loading of fields with default values.Malcolm Tredinnick
2009-03-20Fixed #2698 -- Fixed deleting in the presence of custom managers.Malcolm Tredinnick
2009-03-20Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4.Malcolm Tredinnick
2009-03-19Typo fix for an error path in r100090.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-15Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-03-14Fixed #10425 -- Corrected the interaction of .count() with .annotate() when ....Russell Keith-Magee
2009-03-13Fixed a case where column aliases weren't being quoted properly.Ian Kelly
2009-03-13Prevented InsertQuery from appending a 'RETURNING' clause when it's not actua...Ian Kelly
2009-03-12Fixed #10473: Added Oracle support for "RETURNING" ids from insert statements.Ian Kelly