2017-04-05 10:20:56 +08:00
|
|
|
|
===========================
|
|
|
|
|
Django 1.11.1 release notes
|
|
|
|
|
===========================
|
|
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
|
|
Django 1.11.1 fixes several bugs in 1.11.
|
|
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
|
========
|
|
|
|
|
|
2017-04-07 23:47:53 +08: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-07 08:28:21 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a crash when using a ``__icontains`` lookup on a ``ArrayField``
|
|
|
|
|
(:ticket:`28038`).
|
2017-04-07 18:23:25 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a crash when using a two-tuple in ``EmailMessage``’s ``attachments``
|
|
|
|
|
argument (:ticket:`28042`).
|
2017-04-10 21:47:26 +08:00
|
|
|
|
|
|
|
|
|
* Fixed ``QuerySet.filter()`` crash when it references the name of a
|
|
|
|
|
``OneToOneField`` primary key (:ticket:`28047`).
|
2017-04-15 21:21:35 +08:00
|
|
|
|
|
|
|
|
|
* Fixed empty POST data table appearing instead of "No POST data" in HTML debug
|
|
|
|
|
page (:ticket:`28079`).
|
2017-04-16 01:01:38 +08:00
|
|
|
|
|
|
|
|
|
* Restored ``BoundField``\s without any ``choices`` evaluating to ``True``
|
|
|
|
|
(:ticket:`28058`).
|
2017-04-12 08:35:17 +08:00
|
|
|
|
|
|
|
|
|
* Prevented ``SessionBase.cycle_key()`` from losing session data if
|
|
|
|
|
``_session_cache`` isn't populated (:ticket:`28066`).
|
2017-04-20 00:59:30 +08:00
|
|
|
|
|
|
|
|
|
* Fixed layout of ``ReadOnlyPasswordHashWidget`` (used in the admin's user
|
|
|
|
|
change page) (:ticket:`28097`).
|
2017-04-19 16:24:22 +08:00
|
|
|
|
|
|
|
|
|
* Allowed prefetch calls on managers with custom ``ModelIterable`` subclasses
|
|
|
|
|
(:ticket:`28096`).
|
2017-04-16 01:55:33 +08:00
|
|
|
|
|
2017-05-02 09:29:24 +08:00
|
|
|
|
* Fixed change password link in the ``contrib.auth`` admin for ``el``,
|
|
|
|
|
``es_MX``, and ``pt`` translations (:ticket:`28100`).
|
|
|
|
|
|
2017-04-16 01:55:33 +08:00
|
|
|
|
* Restored the output of the ``class`` attribute in the ``<ul>`` of widgets
|
|
|
|
|
that use the ``multiple_input.html`` template. This fixes
|
|
|
|
|
``ModelAdmin.radio_fields`` with ``admin.HORIZONTAL`` (:ticket:`28059`).
|
2017-04-20 23:36:40 +08:00
|
|
|
|
|
|
|
|
|
* Fixed crash in ``BaseGeometryWidget.subwidgets()`` (:ticket:`28039`).
|
2017-04-21 00:58:24 +08:00
|
|
|
|
|
|
|
|
|
* Fixed exception reraising in ORM query execution when ``cursor.execute()``
|
|
|
|
|
fails and the subsequent ``cursor.close()`` also fails (:ticket:`28091`).
|
2017-04-22 00:14:40 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a regression where ``CheckboxSelectMultiple``, ``NullBooleanSelect``,
|
|
|
|
|
``RadioSelect``, ``SelectMultiple``, and ``Select`` localized option values
|
|
|
|
|
(:ticket:`28075`).
|
2017-04-21 10:44:15 +08:00
|
|
|
|
|
|
|
|
|
* Corrected the stack level of unordered queryset pagination warnings
|
|
|
|
|
(:ticket:`28109`).
|
2017-04-23 05:04:02 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a regression causing incorrect queries for ``__in`` subquery lookups
|
|
|
|
|
when models use ``ForeignKey.to_field`` (:ticket:`28101`).
|
2017-04-25 23:01:21 +08:00
|
|
|
|
|
|
|
|
|
* Fixed crash when overriding the template of
|
|
|
|
|
``django.views.static.directory_index()`` (:ticket:`28122`).
|
2017-04-28 21:32:40 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a regression in formset ``min_num`` validation with unchanged forms
|
|
|
|
|
that have initial data (:ticket:`28130`).
|
2017-04-28 23:36:34 +08:00
|
|
|
|
|
|
|
|
|
* Prepared for ``cx_Oracle`` 6.0 support (:ticket:`28138`).
|
2017-04-30 07:00:21 +08:00
|
|
|
|
|
|
|
|
|
* Updated the ``contrib.postgres`` ``SplitArrayWidget`` to use template-based
|
|
|
|
|
widget rendering (:ticket:`28040`).
|
2017-04-29 21:35:46 +08:00
|
|
|
|
|
|
|
|
|
* Fixed crash in ``BaseGeometryWidget.get_context()`` when overriding existing
|
|
|
|
|
``attrs`` (:ticket:`28105`).
|
2017-04-07 16:44:28 +08:00
|
|
|
|
|
|
|
|
|
* Prevented ``AddIndex`` and ``RemoveIndex`` from mutating model state
|
|
|
|
|
(:ticket:`28043`).
|
2017-04-07 21:54:40 +08:00
|
|
|
|
|
|
|
|
|
* Prevented migrations from dropping database indexes from ``Meta.indexes``
|
|
|
|
|
when changing ``Field.db_index`` to ``False`` (:ticket:`28052`).
|
2017-05-03 19:21:44 +08:00
|
|
|
|
|
|
|
|
|
* Fixed a regression in choice ordering in form fields with grouped and
|
|
|
|
|
non-grouped options (:ticket:`28157`).
|