I will be in Amsterdam next week for the Django Under the Hood conference. Look forward to seeing many of you there.
Triaged
-------
https://code.djangoproject.com/ticket/27377 - Clarify that prepopulated_fields doesn't work with OneToOneField (accepted)
https://code.djangoproject.com/ticket/27380 - Add the 'raw' argument with the 'm2m_changed' signal (accepted)
https://code.djangoproject.com/ticket/27383 - Regression: `FileField(default=None)` now never upload a file through a ModelForm (worksforme)
https://code.djangoproject.com/ticket/27384 - Accessing request.POST in Django middlewares 1.10.x make it empty for view (worksforme)
https://code.djangoproject.com/ticket/27386 - Readonly callable field is unconditionally wrapped inside <p>...</p>, which might create invalid HTML (accepted)
https://code.djangoproject.com/ticket/27391 - Support unittest.TestCase.debug() method (accepted)
https://code.djangoproject.com/ticket/27393 - Admin: input boxes on password reset forms are not aligned (accepted)
https://code.djangoproject.com/ticket/27395 - Allow generating '<link rel="alternate ... hreflang=...>" for sitemaps' (accepted)
https://code.djangoproject.com/ticket/27397 - Querying with an integer larger than SQLite supports crashes with OverflowError (accepted)
https://code.djangoproject.com/ticket/27398 - Make SimpleTestCase.assertRedirects() URL comparison ignore ordering of query parameters (accepted)
https://code.djangoproject.com/ticket/27400 - Changed in 1.10: {% static %} tag now encodes "#" (accepted)
Authored
----------
https://github.com/django/django/pull/7437 - Updated "running the tests" to use 'pip install -e'.
https://github.com/djangounderthehood/duh-web/pull/43 - Updated sprints page for 2016
https://github.com/django/code.djangoproject.com/pull/76 - Fixed #33 -- Added "ticket next steps" suggestions.
Reviewed/committed
------------------
https://github.com/django/django/pull/7405 - Fixed #26357 -- Allowed admin popups to work on links added after page load.
https://github.com/django/django/pull/7433 - Fixed #27385 -- Fixed QuerySet.bulk_create() on PostgreSQL when the number of objects is a multiple plus one of batch_size.
https://github.com/django/django/pull/7379 - Fixed #27334 -- Allowed FileField to move rather than copy a file.
https://github.com/django/django/pull/7420 - Fixed #27373 -- Corrected 404 debug page message for an empty request path.
https://github.com/django/django/pull/7424 - Fixed #27188 -- Allowed using unique=True with FileField.
https://github.com/django/django/pull/7430 - Fixed #27382 -- Doc'd that ugettext_lazy() should be converted to text for non-Django code.
Reviews of core dev work
------------------------
https://github.com/django/django/pull/7419 - Fixed #27299 -- Documented Widget.use_required_attribute().