2017-11-02 01:33:51 +00:00
|
|
|
===========================
|
|
|
|
Django 1.11.8 release notes
|
|
|
|
===========================
|
|
|
|
|
2017-12-02 13:55:33 +00:00
|
|
|
*December 2, 2017*
|
2017-11-02 01:33:51 +00:00
|
|
|
|
|
|
|
Django 1.11.8 fixes several bugs in 1.11.7.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2017-11-08 08:32:49 +00:00
|
|
|
* Reallowed, following a regression in Django 1.10, ``AuthenticationForm`` to
|
|
|
|
raise the inactive user error when using ``ModelBackend`` (:ticket:`28645`).
|
2017-11-12 13:28:11 +00:00
|
|
|
|
|
|
|
* Added support for ``QuerySet.values()`` and ``values_list()`` for
|
|
|
|
``union()``, ``difference()``, and ``intersection()`` queries
|
|
|
|
(:ticket:`28781`).
|
2017-11-12 00:17:20 +00:00
|
|
|
|
|
|
|
* Fixed incorrect index name truncation when using a namespaced ``db_table``
|
|
|
|
(:ticket:`28792`).
|
2017-11-19 15:13:10 +00:00
|
|
|
|
|
|
|
* Made ``QuerySet.iterator()`` use server-side cursors on PostgreSQL after
|
|
|
|
``values()`` and ``values_list()`` (:ticket:`28817`).
|
2017-11-26 16:32:17 +00:00
|
|
|
|
|
|
|
* Fixed crash on SQLite and MySQL when ordering by a filtered subquery that
|
|
|
|
uses ``nulls_first`` or ``nulls_last`` (:ticket:`28848`).
|
2017-11-14 21:51:51 +00:00
|
|
|
|
|
|
|
* Made query lookups for ``CICharField``, ``CIEmailField``, and ``CITextField``
|
|
|
|
use a ``citext`` cast (:ticket:`28702`).
|
2017-11-29 06:06:45 +00:00
|
|
|
|
|
|
|
* Fixed a regression in caching of a ``GenericForeignKey`` when the referenced
|
|
|
|
model instance uses multi-table inheritance (:ticket:`28856`).
|
2017-06-30 18:51:08 +00:00
|
|
|
|
|
|
|
* Fixed "Cannot change column 'x': used in a foreign key constraint" crash on
|
|
|
|
MySQL with a sequence of ``AlterField`` and/or ``RenameField`` operations in
|
|
|
|
a migration (:ticket:`28305`).
|