summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatthew Schinckel <matt@schinckel.net>2016-04-18 11:25:15 +0930
committerTim Graham <timograham@gmail.com>2016-04-19 10:17:11 -0400
commit5402f3ab09413a571fd9d3aa27f6c76ec42ff891 (patch)
tree310c2a4229247138f88b8f0f4aba1d9d35c68be0 /docs
parent2a9bcb503f2aa1b7462174cf95852a2aafbe90ec (diff)
Fixed #26475 -- Added functools.partial() support to migrations autodetector.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.6.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.6.txt b/docs/releases/1.9.6.txt
index c22e99f48e..8b48f803c7 100644
--- a/docs/releases/1.9.6.txt
+++ b/docs/releases/1.9.6.txt
@@ -15,3 +15,6 @@ Bugfixes
* Fixed ``TimeField`` microseconds round-tripping on MySQL and SQLite
(:ticket:`26498`).
+
+* Prevented ``makemigrations`` from generating infinite migrations for a model
+ field that references a ``functools.partial`` (:ticket:`26475`).