summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2018-01-03Fixed #28867 -- Added system check for a model property that clashes with a r...shanghui
2018-01-03Fixed #28811 -- Fixed crash when combining regular and group by annotations.Robin Ramael
2018-01-02Removed DeferredAttribute.__init__()'s unused model argument.Mariusz Felisiak
2018-01-02Fixed #28974 -- Made refresh_from_db() hint routers about its instance.Simon Charette
2017-12-30Fixed #28918 -- Fixed Model.refresh_from_db() for instances hidden by the def...Tim Graham
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-27Fixed #28967 -- Prevented Cast to FloatField from rounding to integer on MySQL.Sergey Fedoseev
2017-12-27Fixed #28714 -- Added system checks for invalid model field names in Meta.ind...hui shang
2017-12-27Refs #28459 -- Improved performance of loading DurationField on SQLite and My...Sergey Fedoseev
2017-12-27Removed unused variable in QuerySet._earliest_or_latest().Mads Jensen
2017-12-26Refs #28459 -- Improved performance of loading DecimalField on SQLite.Sergey Fedoseev
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-26Fixed #28944 -- Fixed crash when chaining values()/values_list() after QueryS...Ran Benita
2017-12-26Fixed #28731 -- Added an error message when using an empty Q() in a When expr...Tim Martin
2017-12-22Fixed #28937 -- Allowed BinaryField to be editable=True.Cameron Curry
2017-12-12Refs #27985 -- Reallowed using __exact=None as an alias for __isnull=True if ...Sergey Fedoseev
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-08Refs #27849 -- Removed empty Q() hack in filtered Aggregate.as_sql().Simon Charette
2017-12-07Fixed #28906 -- Removed unnecessary bool() calls.Tim Graham
2017-12-07Fixed #28907 -- Removed unnecessary if statements.Tim Graham
2017-12-06Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham
2017-12-05Refs #28876 -- Fixed incorrect class-based model index name generation for mo...Mariusz Felisiak
2017-12-04Fixed #28873 -- Used dict.setdefault() to set model and form field defaults.Дилян Палаузов
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-12-01Fixed #28863 -- Fixed filter on annotation that contains Q.Sergey Fedoseev
2017-11-30Fixed #28856 -- Fixed a regression in caching of a GenericForeignKey pointing...Simon Charette
2017-11-29Fixed #28834 -- Followed ancestor links on field cache lookup failure.Simon Charette
2017-11-28Fixed #28837 -- Fixed test client crash if an exception with more than one ar...Nicolas Delaby
2017-11-27Fixed #28848 -- Fixed SQLite/MySQL crash when ordering by a filtered subquery...Raphael Michel
2017-11-21Fixed #28820 -- Eliminated an extra query with QuerySet.update() on proxy mod...Yan Mitrofanov
2017-11-21Fixed #28817 -- Made QuerySet.iterator() use server-side cursors after values...Dražen Odobašić
2017-11-18Fixed #26184 -- Allowed using any lookups in ModelAdmin.search_fields.Krzysztof Nazarewski
2017-11-14Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().Дилян Палаузов
2017-11-12Fixed #28781 -- Added QuerySet.values()/values_list() support for union(), di...Mariusz Felisiak
2017-11-11Simplified Field.get_choices().Sergey Fedoseev
2017-11-09Fixed #27710 -- Made Model.save() invalidate cached, stale relations after a ...Paulo
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-11-02Fixed #28723 -- Fixed RelatedManager's prefetch_related() cache name.Mike Hansen
2017-10-31Fixed #28750 -- Allowed models to define Meta.manager_inheritance_from_future...Charlie Denton
2017-10-30Fixed #28742 -- Fixed AttributeError crash when assigning None to cached reve...Paulo
2017-10-28Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .. OF.Ran Benita
2017-10-25Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using OuterRef.Mariusz Felisiak
2017-10-21Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last.Tomer Chachamu
2017-10-18Refs #28575 -- Made RelatedObjectDoesNotExist classes pickable.Simon Charette
2017-10-18Fixed outdated comment in RelatedObjectDoesNotExist.Simon Charette
2017-10-16Fixed #28497 -- Restored the ability to use sliced QuerySets with __exact.Tim Graham
2017-10-13Fixed #28695 -- Allowed models to use __init_subclass__().k
2017-10-13Corrected examples in related field descriptor docstrings.Simon Charette
2017-10-13Refs #28575 -- Removed unnecessary code for model exception pickling.Simon Charette