summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2020-02-07Fixed #31055 -- Made constraint checks support databases aware.Simon Charette
2020-02-06Fixed #31233 -- Closed database connections and cursors after use.Jon Dufresne
2020-02-06Refs #31233 -- Changed DatabaseWrapper._nodb_connection to _nodb_cursor().Jon Dufresne
2020-02-05Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...Hasan Ramezani
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2020-02-03Fixed #31217 -- Made QuerySet.values()/values_list() group by not selected an...Mariusz Felisiak
2020-01-31Cached ForeignObject.(local/foreign/reverse)_related_fields properties.Adam Johnson
2020-01-31Fixed 31207 -- Prevented references to non-local remote fields in ForeignKey....Hasan Ramezani
2020-01-31Fixed #31219 -- Fixed object deletion crash for nested protected related obje...Matthias Kestenholz
2020-01-29Simplified DeferredAttribute.__get__() a bit.Taoup
2020-01-29Used model's Options.label/label_lower where applicable.Mariusz Felisiak
2020-01-29Refs #27852 -- Fixed object deletion to show all restricted related objects r...Hasan Ramezani
2020-01-29Refs #27852 -- Renamed a loop variable in Collector.collect() to avoid redefi...Mariusz Felisiak
2020-01-29Fixed #31212 -- Updated psycopg links to HTTPS and new location.Jon Dufresne
2020-01-27Refs #27852 -- Fixed object deletion to show all protected related objects ra...Hasan Ramezani
2020-01-20Fixed #31183 -- Added a feature flag for "<db> only supports UNBOUNDED togeth...Tim Graham
2020-01-20Changed re-raising an exception to use bare raise syntax where appropriate.Jon Dufresne
2020-01-16Used constant instead of hard-coded value for recursive relationship.Adam Johnson
2020-01-16Fixed #29998 -- Allowed multiple OneToOneFields to the parent model.Mariusz Felisiak
2020-01-15Fixed #31124 -- Fixed setting of get_FOO_display() when overriding inherited ...Carlton Gibson
2020-01-15Refs #31136 -- Made QuerySet.values()/values_list() group only by selected an...Mariusz Felisiak
2020-01-15Fixed #29871 -- Allowed setting pk=None on a child model to create a copy.chetan22
2020-01-11Fixed #31155 -- Fixed a system check for the longest choice when a named grou...Mariusz Felisiak
2020-01-10Fixed #31154 -- Added support for using enumeration types in templates.Adam Johnson
2020-01-09Fixed #31148 -- Added error messages on update()/delete() operations followin...Hasan Ramezani
2020-01-09Fixed #21238 -- Fixed restoring attributes when pickling FileField and ImageF...Hasan Ramezani
2020-01-07Simplified model's Options.add_field() a bit.Taoup
2020-01-04Fixed #31136 -- Disabled grouping by aliases on QuerySet.values()/values_list().Mariusz Felisiak
2020-01-03Fixed #31133 -- Fixed crash when subtracting against a subquery annotation.Simon Charette
2019-12-30Fixed #31071 -- Disabled insert optimization for primary keys with defaults w...Simon Charette
2019-12-23Fixed #31106 -- Fixed migrations crash on PostgreSQL 10+ when adding FK const...Mariusz Felisiak
2019-12-23Fixed #31109 -- Disabled grouping by aliases on QuerySet.exists().Simon Charette
2019-12-19Fixed #31095 -- Made RelatedManager.set() preserve existing m2m relations wit...Hasan Ramezani
2019-12-19Fixed #31094 -- Included columns referenced by subqueries in GROUP BY on aggr...Simon Charette
2019-12-16Fixed #31088 -- Added support for websearch searching in SearchQuery.James Turk
2019-12-16Optimized containment check in ChoicesMeta.Ram Rachum
2019-12-16Fixed #31076 -- Fixed dbshell crash on Windows with Python < 3.8.Zeynel Ă–zdemir
2019-12-11Refs #28373 -- Stopped setting tzinfo in typecast_timestamp().Sergey Fedoseev
2019-12-10Used Signature API instead of deprecated inspect.getcallargs().Baptiste Mispelon
2019-12-09Refs #31044 -- Fixed error message when using Prefetch with a values_list() q...Mariusz Felisiak
2019-12-09Fixed #31044 -- Errored nicely when using Prefetch with a raw() queryset.Hasan Ramezani
2019-12-06Made Query.check_filterable() use bool by default instead of str.Alex Aktsipetrov
2019-12-06Fixed #31060 -- Reallowed window expressions to be used in conditions outside...Alex Aktsipetrov
2019-12-04Fixed #23524 -- Allowed DATABASES['TIME_ZONE'] option on PostgreSQL.Aymeric Augustin
2019-12-04Refs #23524 -- Unified BaseDatabaseWrapper.timezone.Aymeric Augustin
2019-12-03Fixed #31046 -- Allowed RelatedManager.add()/create()/set() to accept callabl...Baptiste Mispelon
2019-12-03Simplified RelatedManager._add_items() a bit.Baptiste Mispelon
2019-12-03Refs #31046 -- Added django.db.models.utils.resolve_callables().Baptiste Mispelon
2019-12-02Fixed #30953 -- Made select_for_update() lock queryset's model when using "se...Mariusz Felisiak
2019-11-25Fixed #27914 -- Fixed serialization of nested classes in migrations.John Bowen