2017-08-01 08:46:23 -04:00
|
|
|
===========================
|
|
|
|
Django 1.11.5 release notes
|
|
|
|
===========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.11.5 fixes several bugs in 1.11.4.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2017-08-01 15:06:31 -04:00
|
|
|
* Fixed GEOS version parsing if the version has a commit hash at the end (new
|
|
|
|
in GEOS 3.6.2) (:ticket:`28441`).
|
2017-08-16 18:39:58 +02:00
|
|
|
|
2017-08-23 10:01:49 +02:00
|
|
|
* Added compatibility for ``cx_Oracle`` 6 (:ticket:`28498`).
|
2017-08-22 14:45:08 +02:00
|
|
|
|
|
|
|
* Fixed select widget rendering when option values are tuples (:ticket:`28502`).
|
2017-08-22 17:41:25 -04:00
|
|
|
|
|
|
|
* Django 1.11 inadvertently changed the sequence and trigger naming scheme on
|
|
|
|
Oracle. This causes errors on INSERTs for some tables if
|
|
|
|
``'use_returning_into': False`` is in the ``OPTIONS`` part of ``DATABASES``.
|
2017-08-23 08:55:25 +02:00
|
|
|
The pre-1.11 naming scheme is now restored. Unfortunately, it necessarily
|
2017-08-22 17:41:25 -04:00
|
|
|
requires an update to Oracle tables created with Django 1.11.[1-4]. Use the
|
|
|
|
upgrade script in :ticket:`28451` comment 8 to update sequence and trigger
|
2017-08-23 08:55:25 +02:00
|
|
|
names to use the pre-1.11 naming scheme.
|
2017-08-24 21:11:16 +08:00
|
|
|
|
|
|
|
* Added POST request support to ``LogoutView``, for equivalence with the
|
|
|
|
function-based ``logout()`` view (:ticket:`28513`).
|
2017-08-25 23:54:36 +02:00
|
|
|
|
|
|
|
* Omitted ``pages_per_range`` from ``BrinIndex.deconstruct()`` if it's ``None``
|
|
|
|
(:ticket:`25809`).
|
2017-08-28 18:42:03 -07:00
|
|
|
|
|
|
|
* Fixed a regression where ``SelectDateWidget`` localized the years in the
|
|
|
|
select box (:ticket:`28530`).
|
2017-08-28 12:40:27 -04:00
|
|
|
|
|
|
|
* Fixed a regression in 1.11.4 where ``runserver`` crashed with non-Unicode
|
|
|
|
system encodings on Python 2 + Windows (:ticket:`28487`).
|
2017-08-30 10:06:10 -04:00
|
|
|
|
|
|
|
* Fixed a regression in Django 1.10 where changes to a ``ManyToManyField``
|
|
|
|
weren't logged in the admin change history (:ticket:`27998`) and prevented
|
|
|
|
``ManyToManyField`` initial data in model forms from being affected by
|
|
|
|
subsequent model changes (:ticket:`28543`).
|
2017-03-02 09:36:25 -05:00
|
|
|
|
|
|
|
* Fixed non-deterministic results or an ``AssertionError`` crash in some
|
|
|
|
queries with multiple joins (:ticket:`26522`).
|
2017-09-03 12:05:18 -04:00
|
|
|
|
|
|
|
* Fixed a regression in ``contrib.auth``'s ``login()`` and ``logout()`` views
|
|
|
|
where they ignored positional arguments (:ticket:`28550`).
|