Under development
Django 1.10.1 fixes several bugs in 1.10.
SELECT @@SQL_AUTO_IS_NULL
doesn’t return a result (#26991).User.is_authenticated and User.is_anonymous properties to be
compared using == and != (#26988).BaseCommand.usage() method which was for
optparse support (#27000).Meta.default_permissions
(#26997).RadioSelect with a
ModelChoiceField form field (#27001).request.META['CONTENT_LENGTH'] is an empty string
(#27005).isnull lookup on a ForeignKey with its to_field
pointing to a CharField or pointing to a CharField defined with
primary_key=True (#26983).migrate command from raising
InconsistentMigrationHistory in the presence of unapplied squashed
migrations (#27004).Client.force_login() which required specifying a
backend rather than automatically using the first one if multiple
backends are configured (#27027).QuerySet.bulk_create() properly initialize model instances on
backends, such as PostgreSQL, that support returning the IDs of the created
records so that many-to-many relationships can be used on the new objects
(#27026).django.views.static.serve() with show_indexes enabled
(#26973).ClearableFileInput to avoid the required HTML attribute when
initial data exists (#27037).{% for %} tag to unpack any iterable (#27058).makemigrations crash if a database is read-only (#27054).Model._meta.managers (#27073).contrib.admindocs crash when a view is in a class, such as some of
the admin views (#27018).Aug 20, 2016