summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndriy Sokolovskiy <sokandpal@yandex.ru>2015-01-24 00:16:05 +0200
committerMarkus Holtermann <info@markusholtermann.eu>2015-01-27 14:40:39 +0100
commit3d4a826174b7a411a03be39725e60c940944a7fe (patch)
tree8349711ea544bdbff108aee134b5b0933f5e3173 /docs
parent6dc6ec218860e4d4c5c1833c9b8607c4014c85d7 (diff)
[1.7.x] Fixed #24104 -- Fixed check to look on field.get_internal_type() instead of class instance
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.4.txt b/docs/releases/1.7.4.txt
index 0d53459068..133dd44369 100644
--- a/docs/releases/1.7.4.txt
+++ b/docs/releases/1.7.4.txt
@@ -20,3 +20,7 @@ Bugfixes
* Prevented the ``static.serve`` view from producing ``ResourceWarning``\s in
certain circumstances (security fix regression, :ticket:`24193`).
+
+* Fixed schema check for ``ManyToManyField`` to look for internal type instead
+ of checking class instance, so you can write custom m2m-like fields with the
+ same behavior. (:ticket:`24104`).