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:29 -0400
commit799e81ef6bc8cbb944dd3594a2646a594a04b44d (patch)
tree77c09a788f5b1acea2cc5d2a84034f41d169a8ed /docs
parentf5b8e9b2820177dae2bf392867641d097438f85e (diff)
[1.9.x] Fixed #26475 -- Added functools.partial() support to migrations autodetector.
Backport of 5402f3ab09413a571fd9d3aa27f6c76ec42ff891 from master
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`).