Triaged
-------
https://code.djangoproject.com/ticket/27105 - Misleading error in ContentTypes get_for_model (fixed)
https://code.djangoproject.com/ticket/27104 - The Django test client statement 'response.content' in "Writing your first Django app, part 5" unlikely to return "No polls are available." as documented (fixed)
https://code.djangoproject.com/ticket/27108 - Remove collectstatic warning about overwriting existing files when STATIC_ROOT directory doesn't exist (accepted)
https://code.djangoproject.com/ticket/27111 - UserCreationForm.__init__() crashes if USERNAME_FIELD not in self.fields (accepted)
https://code.djangoproject.com/ticket/27112 - django.test.client.Client doesn't support timeouts (wontfix)
https://code.djangoproject.com/ticket/27107 - setting request.encoding damages request.POST (needsinfo)
https://code.djangoproject.com/ticket/27113 - Add tests for setting HttpRequest.encoding (created)
https://code.djangoproject.com/ticket/27117 - The force_login() does not work in a testing if using more one a test (invalid)
https://code.djangoproject.com/ticket/27118 - Make QuerySet.get_or_create()/update_or_create() error for a non-field in defaults (accepted)
https://code.djangoproject.com/ticket/27116 - Deferrable Admin Filters (wontfix)
https://code.djangoproject.com/ticket/27121 - Migrate Fails When Column is Deleted and Unique Together is modified in the same migration (duplicate)
https://code.djangoproject.com/ticket/27127 - Overriding timezone in test forces them to be TestCase (duplicate)
https://code.djangoproject.com/ticket/27129 - Allow setting CSS classes in the output of the unordered_list template filter (wontfix)
https://code.djangoproject.com/ticket/27119 - full_clean() called too many times during formset validation (accepted)
https://code.djangoproject.com/ticket/27130 - Cannot use Django Templates in Standalone Mode (invalid)
Authored
--------
https://github.com/django/djangopeople/pull/72 - Remove usage of iteritems (gone in Python 3) in JSONSerializer
https://github.com/django/django/pull/7142 - Fixed #27110 -- Prevented makemigrations from creating the django_migrations table.
https://github.com/sebleier/django-redis-cache/pull/119 - Drop support for Django < 1.8 and related cleanups
https://github.com/django/djangosnippets.org/pull/46 - Update to Django 1.7.11
Reviewed/committed
------------------
https://github.com/django/django/pull/7087 - Fixed #26866 -- Added utils.text.format_lazy()
https://github.com/django/django/pull/7147 - Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in UserCreationForm.fields.
https://github.com/django/django/pull/7092 - Fixed #27061 -- Added a TEST['TEMPLATE'] setting for PostgreSQL.
https://github.com/django/django/pull/7140 - Fixed #26998 -- Reverted some admin checks from checking field.many_to_many back to isinstance(field, models.ManyToManyField).
https://github.com/django/django/pull/7137 - Fixed #27103 -- Registered vcapi/rcapi GDAL prototypes based on their own drivers.
https://github.com/django/django/pull/7149 - Fixed #26816 -- Corrected an admin check to require inlines to subclass InlineModelAdmin.
https://github.com/django/django/pull/7150 - Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().
https://github.com/django/django/pull/7063 - Fixed #26942 -- Added support for subtests during parallel testing.
https://github.com/django/django/pull/7156 - Fixed #27124 -- Excluded cull-related cache configs from memcached tests.
https://github.com/django/django/pull/7157 - Fixed #27126 -- Made {% regroup %} return a namedtuple to ease unpacking.
Reviews of core dev work
------------------------
https://github.com/django/django/pull/7071 - Fixed #25995 -- Added an encoder option to JSONField