summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2015-07-26 17:42:21 +0100
committerTim Graham <timograham@gmail.com>2015-08-01 07:38:20 -0400
commitb46dad1befb1edd680c71f09df952245b3413f20 (patch)
tree2569259468a767336f53954d0f4323ad9ab8b3a9 /docs
parent1acdb88136d6ca470e78dfff2998c3cc0795b39b (diff)
[1.8.x] Fixed #25176 -- Prevented TestCase.setUpTestData() exception from leaking transaction.
Backport of 0abb06930fc0686cb35079934e5bb40df66f5691 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.4.txt b/docs/releases/1.8.4.txt
index 81b00c1800..53c58e6a90 100644
--- a/docs/releases/1.8.4.txt
+++ b/docs/releases/1.8.4.txt
@@ -18,3 +18,6 @@ Bugfixes
* Fixed ``QuerySet.raw()`` so ``InvalidQuery`` is not raised when using the
``db_column`` name of a ``ForeignKey`` field with ``primary_key=True``
(:ticket:`12768`).
+
+* Prevented an exception in ``TestCase.setUpTestData()`` from leaking the
+ transaction (:ticket:`25176`).