summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-10 13:25:40 -0400
committerTim Graham <timograham@gmail.com>2014-09-10 13:26:01 -0400
commita358e8dc4441c4b20133d0686b8b9ff57fcc2eb6 (patch)
treeac7e64127a3039ca1706e28334088d04b067ddb9
parent4500784b24856b23924e7d36b405f2df1499ea83 (diff)
[1.7.x] Added some items to the 1.7.1 release notes.
Backport of cc5e81c46d from master
-rw-r--r--docs/releases/1.7.1.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index b98ec1b847..98e99e8125 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -9,7 +9,10 @@ Django 1.7.1 fixes several bugs in 1.7.
Bugfixes
========
-* Replace with actual issue (:ticket:`00000`).
+* Added a more helpful error message if you try to migrate an app without first
+ creating the ``contenttypes`` table (:ticket:`22411`).
+
+* Modified migrations dependency algorithm to avoid possible infinite recursion.
* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
Unicode characters (:ticket:`22882`).
@@ -32,5 +35,8 @@ Bugfixes
adds a ``get_absolute_url()`` method to any model that appears in
``ABSOLUTE_URL_OVERRIDES`` but doesn't define ``get_absolute_url()``.
+* Avoided masking some `ImportError` exceptions during application loading
+ (:ticket:`22920`).
+
* Empty ``index_together`` or ``unique_together`` model options no longer
results in infinite migrations (:ticket:`23452`).