2014-09-03 01:41:21 +00:00
|
|
|
==========================
|
|
|
|
Django 1.7.1 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.7.1 fixes several bugs in 1.7.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
|
|
|
* Replace with actual issue (:ticket:`00000`).
|
2014-09-06 14:07:34 +00:00
|
|
|
|
|
|
|
* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
|
|
|
|
Unicode characters (:ticket:`22882`).
|
2014-09-04 15:32:51 +00:00
|
|
|
|
|
|
|
* Reinstated missing ``CHECK`` SQL clauses which were omitted on some backends
|
|
|
|
when not using migrations (:ticket:`23416`).
|
2014-09-06 00:07:42 +00:00
|
|
|
|
|
|
|
* Fixed serialization of ``type`` objects in migrations (:ticket:`22951`).
|
2014-09-04 21:04:53 +00:00
|
|
|
|
|
|
|
* Allowed inline and hidden references to admin fields (:ticket:`23431`).
|
2014-09-08 01:01:42 +00:00
|
|
|
|
|
|
|
* The ``@deconstructible`` decorator now fails with a ``ValueError`` if the
|
|
|
|
decorated object cannot automatically be imported (:ticket:`23418`).
|
2014-09-08 19:54:57 +00:00
|
|
|
|
|
|
|
* Fixed a typo in an ``inlineformset_factory()`` error message that caused a
|
|
|
|
crash (:ticket:`23451`).
|
2014-09-09 12:29:49 +00:00
|
|
|
|
|
|
|
* Restored the ability to use :setting:`ABSOLUTE_URL_OVERRIDES` with the
|
|
|
|
``'auth.User'`` model (:ticket:`11775`). As a side effect, the setting now
|
|
|
|
adds a ``get_absolute_url()`` method to any model that appears in
|
|
|
|
``ABSOLUTE_URL_OVERRIDES`` but doesn't define ``get_absolute_url()``.
|
2014-09-09 21:28:45 +00:00
|
|
|
|
|
|
|
* Empty ``index_together`` or ``unique_together`` model options no longer
|
|
|
|
results in infinite migrations (:ticket:`23452`).
|