2017-04-04 22:20:56 -04:00
|
|
|
|
===========================
|
|
|
|
|
Django 1.11.1 release notes
|
|
|
|
|
===========================
|
|
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
|
|
Django 1.11.1 fixes several bugs in 1.11.
|
|
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
|
========
|
|
|
|
|
|
2017-04-07 17:47:53 +02:00
|
|
|
|
* Made migrations respect ``Index``’s ``name`` argument. If you created a
|
|
|
|
|
named index with Django 1.11, ``makemigrations`` will create a migration to
|
|
|
|
|
recreate the index with the correct name (:ticket:`28051`).
|
2017-04-06 20:28:21 -04:00
|
|
|
|
|
|
|
|
|
* Fixed a crash when using a ``__icontains`` lookup on a ``ArrayField``
|
|
|
|
|
(:ticket:`28038`).
|
2017-04-07 15:23:25 +05:00
|
|
|
|
|
|
|
|
|
* Fixed a crash when using a two-tuple in ``EmailMessage``’s ``attachments``
|
|
|
|
|
argument (:ticket:`28042`).
|
2017-04-10 09:47:26 -04:00
|
|
|
|
|
|
|
|
|
* Fixed ``QuerySet.filter()`` crash when it references the name of a
|
|
|
|
|
``OneToOneField`` primary key (:ticket:`28047`).
|
2017-04-15 09:21:35 -04:00
|
|
|
|
|
|
|
|
|
* Fixed empty POST data table appearing instead of "No POST data" in HTML debug
|
|
|
|
|
page (:ticket:`28079`).
|
2017-04-15 13:01:38 -04:00
|
|
|
|
|
|
|
|
|
* Restored ``BoundField``\s without any ``choices`` evaluating to ``True``
|
|
|
|
|
(:ticket:`28058`).
|
2017-04-11 17:35:17 -07:00
|
|
|
|
|
|
|
|
|
* Prevented ``SessionBase.cycle_key()`` from losing session data if
|
|
|
|
|
``_session_cache`` isn't populated (:ticket:`28066`).
|
2017-04-19 12:59:30 -04:00
|
|
|
|
|
|
|
|
|
* Fixed layout of ``ReadOnlyPasswordHashWidget`` (used in the admin's user
|
|
|
|
|
change page) (:ticket:`28097`).
|
2017-04-19 10:24:22 +02:00
|
|
|
|
|
|
|
|
|
* Allowed prefetch calls on managers with custom ``ModelIterable`` subclasses
|
|
|
|
|
(:ticket:`28096`).
|