summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2017-12-01[2.0.x] Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
2017-12-01[2.0.x] Fixed #28863 -- Fixed filter on annotation that contains Q.Sergey Fedoseev
2017-12-01[2.0.x] Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign ke...Tim Graham
2017-11-29[2.0.x] Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
2017-11-28[2.0.x] Fixed #28837 -- Fixed test client crash if an exception with more tha...Nicolas Delaby
2017-11-27[2.0.x] Fixed #28848 -- Fixed SQLite/MySQL crash when ordering by a filtered ...Raphael Michel
2017-11-21[2.0.x] Fixed #28817 -- Made QuerySet.iterator() use server-side cursors afte...Dražen Odobašić
2017-11-20[2.0.x] Fixed #28804 -- Fixed "Unknown system variable 'transaction_isolation...Tim Graham
2017-11-15[2.0.x] Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
2017-11-14[2.0.x] Fixed #28794 -- Fixed tx_isolation deprecation warning on MySQL 5.7.20+.Sergey Fedoseev
2017-11-12[2.0.x] Fixed #28781 -- Added QuerySet.values()/values_list() support for uni...Mariusz Felisiak
2017-11-06[2.0.x] Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-10-31[2.0.x] Fixed #28750 -- Allowed models to define Meta.manager_inheritance_fro...Charlie Denton
2017-10-30[2.0.x] Fixed #28742 -- Fixed AttributeError crash when assigning None to cac...Paulo
2017-10-28[2.0.x] Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .....Ran Benita
2017-10-25[2.0.x] Fixed #28689 -- Fixed unquoted table names in Subquery SQL when using...Mariusz Felisiak
2017-10-21[2.0.x] Fixed #28722 -- Made QuerySet.reverse() affect nulls_first/nulls_last.Tomer Chachamu
2017-10-18[2.0.x] Fixed outdated comment in RelatedObjectDoesNotExist.Simon Charette
2017-10-16[2.0.x] Fixed #28497 -- Restored the ability to use sliced QuerySets with __e...Tim Graham
2017-10-13[2.0.x] Corrected examples in related field descriptor docstrings.Simon Charette
2017-10-12[2.0.x] Fixed #27846 -- Made Model.refresh_from_db() clear cached relations.Paulo
2017-10-06[2.0.x] Refs #24254 -- Removed unnecessary SQL AS clause in SQLCompiler.as_sq...Mariusz Felisiak
2017-10-05[2.0.x] Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion cra...Mariusz Felisiak
2017-09-29[2.0.x] Fixed #27979 -- Made MySQL raise IntegrityError rather than Operation...Tim Graham
2017-09-29[2.0.x] Refs #28492 -- Defined aggregates' output_field at the class level.Simon Charette
2017-09-22Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) s...Nicolas Delaby
2017-09-21Refs #28595 -- Added a hook to add execute wrappers for database queries.Shai Berger
2017-09-20Removed unused list in Query.resolve_lookup_value().Nicolas Delaby
2017-09-18Fixed #28597 -- Fixed crash with the name of a model's autogenerated primary ...Mariusz Felisiak
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-09-18Changed default value of DatabaseFeatures.has_bulk_insert to True.Mads Jensen
2017-09-16Removed unneeded StdDev.convert_value() and Variance.convert_value().Sergey Fedoseev
2017-09-16Simplified Count.convert_value() and RegrCount.convert_value().Sergey Fedoseev
2017-09-15Removed unnecessary check in SQLCompiler.get_related_selections().Tim Graham
2017-09-13Refs #27090 -- Added real database sequence introspection.Mariusz Felisiak
2017-09-11Fixed #28492 -- Defined default output_field of expressions at the class level.Simon Charette
2017-09-11Refs #28492 -- Stopped accessing settings at Field.db_tablespace initialization.Simon Charette
2017-09-11Fixed #28578 -- Renamed DatabaseCreation number arguments to suffix.Jon Dufresne
2017-09-10Removed unnecessary parens in _get_app_label_and_model_name().Mariusz Felisiak
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-09-07Removed unneeded __init__() methods.Sergey Fedoseev
2017-09-06Fixed #15648 -- Allowed QuerySet.values_list() to return a namedtuple.Sergey Fedoseev
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev
2017-09-06Replaced @cached_property with class attributes where possible.Sergey Fedoseev
2017-09-06Removed DatabaseWrapper.psycopg2_version.Sergey Fedoseev
2017-09-06Replaced deque() with list() in prefetch_related_objects(). Sergey Fedoseev
2017-09-05Fixed #11557 -- Added support for a list of fields in Meta.get_latest_by and ...François Freitag
2017-09-05Fixed #28335 -- Allowed query expressions in Meta.ordering.Dima Kudosh
2017-09-05Removed unneeded __init__() in PostgreSQL DatabaseWrapper.Mads Jensen
2017-09-05Fixed typo in django/db/models/query.py docstring.Boris Burkov