summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2018-02-10Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes
2018-02-10Fixed #29118 -- Fixed crash with QuerySet.order_by(Exists(...)).Raphael Gaschignard
2018-02-08Fixed #29108 -- Fixed crash in aggregation of distinct+ordered+sliced querysets.Simon Charette
2018-02-07Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueri...Mariusz Felisiak
2018-02-05Refs #28814 -- Fixed migrations crash with namespace packages on Python 3.7.Tim Graham
2018-02-05Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...Raymond Hettinger
2018-02-05Refs #28723 -- Fixed stale prefetch_related cache after add/remove.Jon Dufresne
2018-02-02Fixed imports per isort 4.3.1.Tim Graham
2018-02-01Fixed imports per isort 4.3.0.Mariusz Felisiak
2018-01-31Removed uneeded comment in DatabaseWrapper.check_constraints() on SQLite/MySQ...Mariusz Felisiak
2018-01-31Fixed #29066 -- Allowed negating query expressions.priyanshsaxena
2018-01-31Fixed #29093 -- Simplified a few lines in ModelBase.__new__().Дилян Палаузов
2018-01-31Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't ha...Tim Graham
2018-01-30Fixed #29076 -- Made Model.refresh_from_db() clear cached relationships even ...Jon Dufresne
2018-01-27Fixed #29004 -- Added inspectdb --include-views option.bquinn
2018-01-27Fixed #28650 -- Added TruncWeek database function.Sigurd Ljødal
2018-01-27Refs #28748 -- Reallowed lazy values in model field choices.François Freitag
2018-01-26Fixed #29067 -- Fixed regression in QuerySet.values_list(..., flat=True) foll...Jon Dufresne
2018-01-25Fixed #28838 -- Fixed Model.save() crash if the base manager annotates with a...shanghui
2018-01-24Fixed #28748 -- Made model field choices check more strict for named groups.François Freitag
2018-01-17Refs #28643 -- Added Replace database function.Mads Jensen
2018-01-17Fixed #28857 -- Fixed invalid SQL when using Cast with complex expressions on...hayashi
2018-01-13Fixed #28542 -- Fixed deletion of primary key constraint if the new field is ...Tim Martin
2018-01-13Fixed #29016 -- Fixed incorrect foreign key nullification on related instance...Étienne Loks
2018-01-12Removed Query.split_exclude()'s unused prefix argument.Mariusz Felisiak
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-09Added DatabaseFeatures.is_postgresql_9_5 to avoid repetition.Tim Graham
2018-01-06Fixed #28859 -- Made Oracle backend raise DatabaseError if "no data found" ex...Mariusz Felisiak
2018-01-04Refs #28459 -- Improved performance of duration expressions on SQLite.Sergey Fedoseev
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2018-01-03Fixed #28985 -- Removed unneeded None checks before hasattr().Дилян Палаузов
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-30Fixed #25817 -- Made RenameField repoint to_field/to_fields references.Simon Charette
2017-12-30Moved _get_model_tuple() to the base Operation class.Simon Charette
2017-12-30Used Decimal.scaleb() in backends.utils.format_number() and DecimalField.widg...Mariusz Felisiak
2017-12-29Bumped minimum supported mysqlclient version to 1.3.7.Sergey Fedoseev
2017-12-29Refs #28459 -- Used default date converter on SQLite for better performance.Sergey Fedoseev
2017-12-28Fixed #28926 -- Fixed loss of precision of big DurationField values on SQLite...Sergey Fedoseev
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
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().Дилян Палаузов