summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2013-02-25[1.5.x] Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2013-02-24[1.5.x] Fixed #19688 -- Allow model subclassing with a custom metaclass using...Simon Charette
2013-02-23[1.5.x] Fixed #19895 -- Made second iteration over invalid queryset raise an ...Grzegorz Nosek
2013-02-23[1.5.x] Fixed empty strings + to_field regression on OracleAnssi Kääriäinen
2013-02-20[1.5.x] Fixed #19672 -- Error in negated Q() filteringAnssi Kääriäinen
2013-02-10[1.5.x] Made custom m2m fields without through easier to useAnssi Kääriäinen
2013-02-10[1.5.x] Fixed #19720 -- Oracle ordering related delete regressionAnssi Kääriäinen
2013-01-29[1.5.x] Fixed typos in docs and commentsTim Graham
2013-01-23[1.5.x] Fixed #19652 -- Fixed .none() regression in related fieldsAnssi Kääriäinen
2013-01-08[1.5.x] Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base.Simon Charette
2013-01-08[1.5.x] Fixed #17541 -- Fixed non-saved/nullable fk queryingAnssi Kääriäinen
2013-01-03Fixed #19426 -- Adapted EmptyQuerySet.distinct signatureClaude Paroz
2013-01-02[1.5.x] Fixed #19547 -- Caching of related instances.Aymeric Augustin
2012-12-28[1.5.x] Fix #19524 -- Incorrect caching of parents of unsaved model instances.Aymeric Augustin
2012-12-27[1.5.x] Fixed #19525 -- Reverted dcd4383107 and 05d333ba3b.Aymeric Augustin
2012-12-21[1.5.x] Refactored proxy model skipping in get_default_columns()Anssi Kääriäinen
2012-12-20[1.5.x] Fixed #19401 -- Ensure that swappable model references are case insen...Russell Keith-Magee
2012-12-08[1.5.x] Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-11-28[1.5.x] Fixed #14694 again -- Made defer() works with reverse relationsAnssi Kääriäinen
2012-11-28[1.5.x] Fixed #14694 -- Made ``defer()`` work with reverse relationsTai Lee
2012-11-27[1.5.x] Removed duplicate opts.pk_index() methodAnssi Kääriäinen
2012-11-27[1.5.x] Fixed #19362 -- Detected invalid use of @python_2_unicode_compatible.Aymeric Augustin
2012-11-24[1.5.x] Fixed #19806 -- Ensure that content types and permissions aren't crea...Russell Keith-Magee
2012-11-23[1.5.x] Fixed #18375 -- Removed dict-ordering dependency for F-expressionsAnssi Kääriäinen
2012-11-15[1.5.x] Fixed #19058 -- Fixed Oracle GIS crashAnssi Kääriäinen
2012-11-13Fixed select_related performance regressionsAnssi Kääriäinen
2012-11-13Removed use of SortedDict for query.alias_refcountAnssi Kääriäinen
2012-11-08[1.5.x] Fixed #17144 -- MySQL again groups by PK onlyAnssi Kääriäinen
2012-11-04[1.5.x]Merge pull request #494 from mrj0/model_splitAlex Gaynor
2012-11-04[1.5.x] Fixed #5805 -- it is now possible to specify multi-column indexes. Th...Alex Gaynor
2012-11-03[1.5.x] Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-11-02[1.5.x] Deprecated depth kwarg on select_related.Preston Holmes
2012-10-28[1.5.x] Fixed #18823 -- Ensured m2m.clear() works when using through+to_fieldAnssi Kääriäinen
2012-10-27[1.5.x] Fixed Oracle failure caused by None converted to '' in select_related...Anssi Kääriäinen
2012-10-26[1.5.x] Fixed #15040 - Boolean fields return 0 and 1 when loaded through sele...Luke Plant
2012-10-25Fixed regression caused by #19102Anssi Kääriäinen
2012-10-25Fixed #19187 -- Raise consistent error from qs.values().delete()Anssi Kääriäinen
2012-10-25Added docstring to DeleteQuery.delete_qs()Anssi Kääriäinen
2012-10-25Fixed #19102 -- Fixed fast-path delete for modified SELECT clause casesAnssi Kääriäinen
2012-10-21Fixed #19151 -- Added missing methods to EmptyQuerySet.Jan Bednařík
2012-10-10Moved F() '&' and '|' to .bitand() and .bitor()Anssi Kääriäinen
2012-10-10Revert "Fixed #16211 -- Added comparison and negation ops to F() expressions"Anssi Kääriäinen
2012-10-10Fixed #19096 -- Made can_return_id_from_insert more extendableMichael Manfre
2012-10-09Fix exception message from 3190abcd. Refs #18153.Aymeric Augustin
2012-10-09Fixed #18153 -- Reverse OneToOne lookups on unsaved instances.Aymeric Augustin
2012-10-08Fixed #19087 -- Ensured query's base table is never LOUTER joinedAnssi Kääriäinen
2012-10-06Fixed #19069 -- Improved the error message when trying to query a swapped model.Russell Keith-Magee
2012-10-03Fixed #19049 -- Corrected dumb logic negation error from earlier patch.Russell Keith-Magee
2012-10-02Fixed #19049 -- Ensure that swapped models aren't included in reverse field c...Russell Keith-Magee
2012-09-30Fixed #16211 -- Added comparison and negation ops to F() expressionsAnssi Kääriäinen