Triaged
-------
https://code.djangoproject.com/ticket/26977 - Instantiating an abstract model with a string ForeignKey fails with TypeError: isinstance() arg 2 must be a class, type, or tuple of classes and types (accepted)
https://code.djangoproject.com/ticket/26989 - Provide a way of specifying ON DELETE and On UPDATE properties in model DDL (duplicate)
https://code.djangoproject.com/ticket/26990 - Support MySQL FULLTEXT INDEX in the model DDL (wontfix)
https://code.djangoproject.com/ticket/26987 - Document using .get() without args to return an object from a single-row queryset (accepted)
https://code.djangoproject.com/ticket/26994 - Remove blank line after template have been rendered (duplicate)
https://code.djangoproject.com/ticket/26995 - Windows Error 10053 after changing database engine (duplicate)
https://code.djangoproject.com/ticket/26979 - Using an admin.RelatedOnlyFieldListFilter in admin does not working if a type of a field is ForeignKey and value to_field is not pk (in my case it is UUID). (needsinfo)
https://code.djangoproject.com/ticket/26999 - Add changes to ``model_to_dict`` in Django 1.10 to the release notes (fixed)
https://code.djangoproject.com/ticket/27000 - Django manage Command.usage() is broken (fixed)
https://code.djangoproject.com/ticket/27006 - Hints how to update code automatically to support Python3 (wontfix)
https://code.djangoproject.com/ticket/27011 - Django Middleware 1.10 does not run template_context_processors for exceptions thrown from middleware (invalid)
Authored
--------
https://github.com/django/django/pull/7004 - Fixed #26991 -- Fixed a crash in MySQL where SQL_AUTO_IS_NULL doesn't return a result.
https://github.com/django/django/pull/7005 - Fixed #26988 -- Improved/clarified User.is_authenticated/anonymous comparisons.
https://github.com/django/django/pull/7016 - Fixed #27005 -- Fixed crash if request.META[''CONTENT_LENGTH']=''.
https://github.com/django/django/pull/7018 - Fixed #27009 -- Made update_session_auth_hash() rotate the session key. (and clarified docs)
Reviewed/committed
------------------
https://github.com/django/django/pull/6960 - Fixed #26927 -- Made subwidget iteration pass disabled and required attributes.
https://github.com/django/django/pull/7011 - Fixed #27001 -- Fixed a query count regression in ModelChoiceField with RadioSelect.
https://github.com/django/django/pull/7009 - Fixed #26981 -- Added DiscoverRunner.get_test_runner_kwargs().
https://github.com/django/django/pull/6961 - Fixed #26928 -- Changed forms' checked attribute to HTML5 boolean style.
https://github.com/django/django/pull/6638 - Fixed #26517, 26433 -- Fixed annotations with empty predicates.
https://github.com/django/django/pull/7029 - Fixed #27023 -- Prevented possibility of shell loading ~/.pythonrc.py twice.
https://github.com/django/django/pull/7010 - Edited multi-db topic guide for grammar and clarity.
https://github.com/django/django/pull/6725 - Fixed #26706 -- Made RelatedManager modification methods clear prefetch_related() cache.
https://github.com/django/django/pull/6857 - Fixed #26808 -- Added Meta.indexes for class-based indexes.
https://github.com/django/django/pull/7013 - Fixed #27004 -- Made migrations consistency check ignore unapplied squashed migrations.
https://github.com/django/django/pull/7034 - Fixed #27027 -- Restored Client.force_login() using the first auth backend.
https://github.com/django/django/pull/7033 - Fixed #27026 -- Fixed state initialization of bulk_create() objects if can_return_ids_from_bulk_insert.