2016-09-01 16:27:45 -04:00
|
|
|
===========================
|
|
|
|
Django 1.10.2 release notes
|
|
|
|
===========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.10.2 fixes several bugs in 1.10.1.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2016-09-07 13:43:51 +02:00
|
|
|
* Fixed a crash in MySQL database validation where ``SELECT @@sql_mode``
|
|
|
|
doesn't return a result (:ticket:`27180`).
|
2016-08-25 10:36:49 +02:00
|
|
|
|
|
|
|
* Allowed combining ``contrib.postgres.search.SearchQuery`` with more than one
|
|
|
|
``&`` or ``|`` operators (:ticket:`27143`).
|
2016-09-19 21:18:41 +01:00
|
|
|
|
|
|
|
* Disabled system check for URL patterns beginning with a '/' when
|
|
|
|
``APPEND_SLASH=False`` (:ticket:`27238`).
|
2016-09-06 17:41:54 -04:00
|
|
|
|
|
|
|
* Fixed model form ``default`` fallback for ``MultiWidget``, ``FileInput``,
|
|
|
|
``SplitDateTimeWidget``, ``SelectDateWidget``, and ``SplitArrayWidget``
|
|
|
|
(:ticket:`27186`). Custom widgets affected by this issue may need to
|
|
|
|
implement a :meth:`~django.forms.Widget.value_omitted_from_data` method.
|