mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
c32bc1a7a7
Thanks jukvalim for the report and initial patch, and Preston Timmons for review.
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
==========================
|
|
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`).
|
|
|
|
* Fixed a ``UnicodeDecodeError`` when the ``flush`` error message contained
|
|
Unicode characters (:ticket:`22882`).
|
|
|
|
* Reinstated missing ``CHECK`` SQL clauses which were omitted on some backends
|
|
when not using migrations (:ticket:`23416`).
|
|
|
|
* Fixed serialization of ``type`` objects in migrations (:ticket:`22951`).
|
|
|
|
* Allowed inline and hidden references to admin fields (:ticket:`23431`).
|
|
|
|
* The ``@deconstructible`` decorator now fails with a ``ValueError`` if the
|
|
decorated object cannot automatically be imported (:ticket:`23418`).
|
|
|
|
* Fixed a typo in an ``inlineformset_factory()`` error message that caused a
|
|
crash (:ticket:`23451`).
|
|
|
|
* 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()``.
|