2016-08-02 02:57:10 +08:00
|
|
|
===========================
|
|
|
|
Django 1.10.1 release notes
|
|
|
|
===========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.10.1 fixes several bugs in 1.10.
|
|
|
|
|
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2016-08-02 22:52:31 +08:00
|
|
|
* Fixed a crash in MySQL connections where ``SELECT @@SQL_AUTO_IS_NULL``
|
|
|
|
doesn't return a result (:ticket:`26991`).
|
2016-08-02 21:32:00 +08:00
|
|
|
|
|
|
|
* Allowed ``User.is_authenticated`` and ``User.is_anonymous`` properties to be
|
|
|
|
compared using ``==`` and ``!=`` (:ticket:`26988`).
|
2016-08-03 06:50:12 +08:00
|
|
|
|
|
|
|
* Removed the broken ``BaseCommand.usage()`` method which was for
|
|
|
|
``optparse`` support (:ticket:`27000`).
|
2016-08-03 03:19:01 +08:00
|
|
|
|
|
|
|
* Fixed a checks framework crash with an empty ``Meta.default_permissions``
|
|
|
|
(:ticket:`26997`).
|
2016-08-03 11:12:06 +08:00
|
|
|
|
|
|
|
* Fixed a regression in the number of queries when using ``RadioSelect`` with a
|
|
|
|
``ModelChoiceField`` form field (:ticket:`27001`).
|
2016-08-04 00:46:57 +08:00
|
|
|
|
|
|
|
* Fixed a crash if ``request.META['CONTENT_LENGTH']`` is an empty string
|
|
|
|
(:ticket:`27005`).
|
2016-08-02 23:27:45 +08:00
|
|
|
|
|
|
|
* Fixed the ``isnull`` lookup on a ``ForeignKey`` with its ``to_field``
|
|
|
|
pointing to a ``CharField`` (:ticket:`26983`).
|
2016-08-05 07:37:42 +08:00
|
|
|
|
|
|
|
* Prevented the ``migrate`` command from raising
|
|
|
|
``InconsistentMigrationHistory`` in the presence of unapplied squashed
|
|
|
|
migrations (:ticket:`27004`).
|