Report for week ending May 30, 2015:
Triaged
-------
https://code.djangoproject.com/ticket/24850 - Squashed migration not recognized as an initial migration (duplicate)
https://code.djangoproject.com/ticket/24851 - Regression in reverse one-to-one field in list_display (accepted)
https://code.djangoproject.com/ticket/13223 - ValueError with inline and save as new (duplicate)
https://code.djangoproject.com/ticket/24283 - ModelAdmin.media does not use get_prepopulated_fields (duplicate)
https://code.djangoproject.com/ticket/19431 - Prepopulate modeladmin forms datetime fields using querystrings (duplicate)
https://code.djangoproject.com/ticket/24849 - Broken squashmigration when model related to another one gets deleted (accepted)
https://code.djangoproject.com/ticket/17417 - "Save as new" does not work when a ValidationError is raised (duplicate)
https://code.djangoproject.com/ticket/15935 - Allow django admin filter to be hidable (duplicate)
https://code.djangoproject.com/ticket/24856 - raw_id_fields popup missing (worksforme)
https://code.djangoproject.com/ticket/24864 - Django will not listen to same port on IPv4 and IPv6 at the same time (won’t fix)
https://code.djangoproject.com/ticket/24865 - Add a feature to programmatically remove stale content types (accepted)
https://code.djangoproject.com/ticket/24859 - UUIDField does not validate query value (accepted)
https://code.djangoproject.com/ticket/24858 - Add support for get_foo_display() with ArrayField (accepted)
https://code.djangoproject.com/ticket/24853 - FK value not inserted in database in data migration (won’t fix)
https://code.djangoproject.com/ticket/24867 - admin.E202 seems to include superclass references? (invalid)
https://code.djangoproject.com/ticket/24872 - dbshell don't read parameters correctly with sql_server.pyodbc (django-pyodbc-azure) (needsinfo)
https://code.djangoproject.com/ticket/24869 - Model unicode and Foreign key (needsinfo)
https://code.djangoproject.com/ticket/24860 - Migrations leak stale RelatedManager related_model definitions (needsinfo)
https://code.djangoproject.com/ticket/24873 - Error while using Prefech on more than two levels (accepted)
https://code.djangoproject.com/ticket/24874 - Why does "AbstractBaseUser" contain "password" and "last_login" fields? (invalid)
https://code.djangoproject.com/ticket/24876 - Skipping migrations checking in sql* commands (duplicate)
Authored
--------
https://github.com/django/djangoproject.com/pull/475 - Fixed #459 -- Fixed ContactForm crash on empty name.
https://github.com/django/djangoproject.com/pull/476 - Fixed #457 -- Fixed docs search suggestions crash.
https://github.com/django/django/pull/4713 - Fixed #24836 -- Made force_text() resolve lazy objects.
https://github.com/django/django/pull/4717 - Fixed #24851 -- Fixed crash with reverse one-to-one relation in ModelAdmin.list_display
https://github.com/django/django/pull/4718 - Added contrib.auth migration for refs #13147.
Reviewed/committed
------------------
https://github.com/django/django/pull/4630 - Fixed #24773 -- Added a json() method on test client responses.
https://github.com/django/django/pull/4695 - Fixed #24841 -- Made BaseRangeField.prepare_value() call base_field's prepare_value()
https://github.com/django/django/pull/4708 - Fixed #24848 -- Fixed ValueError for faulty migrations module.
https://github.com/django/django/pull/4707 - Fixed #24788 -- Allowed Forms to specify a prefix at the class level.
https://github.com/django/django/pull/4706 - Fixed #24835 -- exists() incorrect after annotation with Count()
https://github.com/django/django/pull/4712 - Fixed #24847 -- Items set on a RequestContext after creation get lost
https://github.com/django/django/pull/4715 - Fixed #24817 -- Prevented loss of null info in MySQL field renaming.
https://github.com/django/django/pull/4665 - Fixed #24732 -- Reordered tutorial to cover basics before bells and whistles.
https://github.com/django/django/pull/4530 - Refs #23643 -- Fixed debug view regression on Python 2.
https://github.com/django/django/pull/4703 - Fixed #24846 -- Added support to MySQL SchemaEditor for all blob/text data types
Reviews of core dev work
------------------------
https://github.com/django/django/pull/4699 - Fixed #24699 -- Added aggregate support for DurationField on Oracle