summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2009-06-15[1.0.X] Fixed #9023 -- Corrected a problem where cached attribute values woul...Russell Keith-Magee
2009-06-15[1.0.X] Fixed #11311 -- Reverted [10952], Refs #10785. Changeset [10952] caus...Russell Keith-Magee
2009-06-08[1.0.X] Fixed #10785 -- Corrected a case for foreign key lookup where the rel...Russell Keith-Magee
2009-06-03[1.0.X] Fixed #9479 -- Corrected an edge case in bulk queryset deletion that ...Russell Keith-Magee
2009-05-29[1.0.X] Fixed #11216 and #11218 -- Corrected a few typos, thanks buriy.Gary Wilson Jr
2009-05-19[1.0.X] Fixed #9308 -- Corrected the updated of nullable foreign key fields w...Russell Keith-Magee
2009-05-13[1.0.X] Fixed BooleanFields being coerced null=True in Oracle. Backport of r1...Ian Kelly
2009-05-02[1.0.X] Fixed #10349 -- Modified ManyToManyFields to allow initial form value...Russell Keith-Magee
2009-04-13[1.0.X] Fixed #10237 -- Corrected the handling of self-referential m2m fields...Russell Keith-Magee
2009-04-12[1.0.X] Fixed #10692 -- Fixed DecimalField lookups for extreme values.Malcolm Tredinnick
2009-04-12[1.0.X] Fixed #10071 -- Changed some internal database data representations.Malcolm Tredinnick
2009-04-10[1.0.X] Fixed #9640, #10549: BooleanFields with choices, a default, and null=...Jacob Kaplan-Moss
2009-03-31[1.0.X] Fixed #10413: RelatedManager.add no longer fails silenty when trying ...Jacob Kaplan-Moss
2009-03-31[1.0.X] Fixed #10157: correctly set the related objects pk when assigning a r...Jacob Kaplan-Moss
2009-03-30[1.0.X] Fixed #10149. FileFields? in a form now validate max_length. Based on...Joseph Kocherhans
2009-03-25[1.0.X] Fixed a breakage with ManyToManyFields in admin caused by r10140. Ref...Russell Keith-Magee
2009-03-24[1.0.X] Fixed #9926 -- Fixes for some select_related() situations.Malcolm Tredinnick
2009-03-20[1.0.X] Fixed #2698 -- Fixed deleting in the presence of custom managers.Malcolm Tredinnick
2009-03-15[1.0.X] Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-03-10[1.0.X] Fixed #10443 -- Fixed model attribute updating after r10004.Malcolm Tredinnick
2009-03-09[1.0.X] Pass values through get_db_prep_save() in a QuerySet.update() call.Malcolm Tredinnick
2009-03-08[1.0.x] Fixed #9508 -- Added an appropriate FileField.__hash__ implementation.Malcolm Tredinnick
2009-03-08[1.0.X] Fixed #10432 -- Handle all kinds of iterators in queryset filters.Malcolm Tredinnick
2009-03-06[1.0.X] Fixed #9649 -- Better error handling in model creation.Malcolm Tredinnick
2009-03-06[1.0.X] Improved table join handling for comparisons against NULL.Malcolm Tredinnick
2009-03-04[1.0.X] Made it explicit if you accidentally override a Field from a parent m...Malcolm Tredinnick
2009-03-04[1.0.X] Fixed #10406 -- Fixed some problems with model inheritance and pk fie...Malcolm Tredinnick
2009-03-04[1.0.X] Fixed #10251 -- Fixed model inheritance when there's also an explicit...Malcolm Tredinnick
2009-03-04[1.0.X] Changed the row count value returned from update queries in some cases.Malcolm Tredinnick
2009-03-04[1.0.X] Fixed #10362 -- An update() that only affects a parent model no longe...Malcolm Tredinnick
2009-03-01[1.0.X] Fixed insert/update handling when no database interaction is required.Malcolm Tredinnick
2009-03-01[1.0.X] Fixed #10202 -- Fixed another couple of slicing edge-cases with query...Malcolm Tredinnick
2009-02-28[1.0.X] Fixed #10028 -- Fixed a problem when ordering by related models.Malcolm Tredinnick
2009-02-24[1.0.X] Fixed #10347 -- Fixed incorrect AttributeError raised when attempting...Karen Tracey
2009-02-22[1.0.X] Fixed #10256 -- Corrected the interaction of extra(select=) with valu...Russell Keith-Magee
2009-01-08[1.0.X] Fixed #9985 -- qs.values_list(...).values(...) was constructing incor...Malcolm Tredinnick
2009-01-03[1.0.X] Fixed #9942 -- Added a to_python handler for FloatField to ensure cor...Russell Keith-Magee
2008-12-16[1.0.X] Fixed #9786 -- Fixed inequality checking for django.db.models.fields....Malcolm Tredinnick
2008-12-10[1.0.X] Fixed #8248: made help() work on models and improved introspection su...Luke Plant
2008-12-09[1.0.X] Fixed #9775 -- Fixed an oversight from r9601 and allow direct attributeMalcolm Tredinnick
2008-12-08[1.0.X] The first step in fixing a group of problems related to outputting aMalcolm Tredinnick
2008-12-08[1.0.X] This fixes a group of problems in the SQL created by QuerySet.exclude()Malcolm Tredinnick
2008-12-07[1.0.X] Fixed #9188 -- Fixed a case where we were generating syntactically in...Malcolm Tredinnick
2008-12-02[1.0.X] Fixed a pair of bugs in determining the set of models to flush that w...Ian Kelly
2008-11-16[1.0.X] Fixed #9608: Ensured a Model's default repr() is printable even if it...Karen Tracey
2008-10-24[1.0.X] Fixed #9307 -- Added the ability to pickle the Query class used by theMalcolm Tredinnick
2008-10-24[1.0.X] Fixed #9406 -- Ensure that each database column is only representedMalcolm Tredinnick
2008-10-08[1.0.X] A queryset that has had ordering removed (order_by()) can have orderingMalcolm Tredinnick
2008-10-08[1.0.X] Fixed #6748 -- When printing the repr() of querysets, don't load orMalcolm Tredinnick
2008-10-08[1.0.X] Applying a limit to a queryset that already had an upper limit of 0Malcolm Tredinnick