summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEugene Hatsko <e.hacko.nicecode@gmail.com>2020-01-21 10:12:25 +0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-01-22 07:54:16 +0100
commit0b013564ef0609d95b1d263626f2e15bccda1a50 (patch)
tree13e1ac0b31173d2d707f138e3732905394a57555 /docs
parentb753e0e750cc70c77f9d9591f0c4701b72242c62 (diff)
Fixed #31190 -- Fixed prefetch_related() crash for GenericForeignKey with custom ContentType foreign key.
Regression in dffa3e1992562ba60512d96d1eb5859ffff2ceb5.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.3.txt b/docs/releases/3.0.3.txt
index 2726e2d3ab..ed92938e09 100644
--- a/docs/releases/3.0.3.txt
+++ b/docs/releases/3.0.3.txt
@@ -35,3 +35,7 @@ Bugfixes
* Fixed a regression in Django 2.2.7 that caused
:meth:`~django.db.models.Model.get_FOO_display` to work incorrectly when
overriding inherited choices (:ticket:`31124`).
+
+* Fixed a regression in Django 3.0 that caused a crash of
+ ``QuerySet.prefetch_related()`` for ``GenericForeignKey`` with a custom
+ ``ContentType`` foreign key (:ticket:`31190`).