summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian King <brian@liip.ch>2015-06-05 12:40:51 +0100
committerTim Graham <timograham@gmail.com>2015-06-15 09:37:38 -0400
commitbfb5b7150ff52571a7a3cf10e0dd0d1dbd45c4b5 (patch)
tree6ad940d20c235e2647e8188c608c061a8770bba0 /docs
parent841a87785a78cc37362a66856025bae2f7ba633c (diff)
Fixed #24912 -- Fixed prefetch_related failure for UUIDField primary keys
This resolves a problem on databases besides PostgreSQL when using prefetch_related with a source model that uses a UUID primary key.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index d7e063b397..39e08f904c 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -66,3 +66,6 @@ Bugfixes
* Provided better backwards compatibility for the ``verbosity`` argument in
``optparse`` management commands by casting it to an integer
(:ticket:`24769`).
+
+* Fixed ``prefetch_related()`` on databases other than PostgreSQL for models
+ using UUID primary keys (:ticket:`24912`).