summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndré Ericson <de.ericson@gmail.com>2014-10-08 03:27:31 +0700
committerLoic Bistuer <loic.bistuer@gmail.com>2014-10-08 04:55:47 +0700
commitfa4b6482df08d308fe88044b8c8bf981c6225fb8 (patch)
treec988171c48c77266e42a09d483681796ec07c806 /docs
parentdbd52f339cdae7fb57526cb86d45792438799e5b (diff)
[1.7.x] Fixed #23611 -- update_or_create failing from a related manager
Added update_or_create to RelatedManager, ManyRelatedManager and GenericRelatedObjectManager. Added missing get_or_create to GenericRelatedObjectManager. Conflicts: tests/generic_relations/tests.py tests/get_or_create/tests.py Backport of ed37f7e979 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 1604e75da8..6511074542 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -100,3 +100,6 @@ Bugfixes
* Fixed ``UnicodeDecodeError`` crash in ``AdminEmailHandler`` with non-ASCII
characters in the request (:ticket:`23593`).
+
+* Fixed missing ``get_or_create`` and ``update_or_create`` on related managers
+ causing ``IntegrityError`` (:ticket:`23611`).