summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Filipovic <david.filipovic@gmail.com>2015-11-04 17:25:21 -0500
committerTim Graham <timograham@gmail.com>2015-11-10 10:34:25 -0500
commit8c8a6d8a3f869ecc4d72b96ddb4760a1b59d5e62 (patch)
tree2e50a1eddc22ac4e8f3a63c5c8cb7834dae27441 /docs
parentf787aaeb262b72b9a7144d2420a2dc82c9d6e033 (diff)
[1.8.x] Fixed #25618 -- Restored migration support for non-upgraded apps.
A non-upgraded app is one that retains South migrations in the `migrations` module and doesn't introduce Django migrations.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.7.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index 9e8f37f120..78912d0f52 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -18,3 +18,6 @@ Bugfixes
* Fixed a regression in 1.8.6 by restoring the ability to use ``Manager``
objects for the ``queryset`` argument of ``ModelChoiceField``
(:ticket:`25683`).
+
+* Fixed a regression in 1.8.6 that caused an application with South migrations
+ in the ``migrations`` directory to fail (:ticket:`25618`).