Fellow Reports - November 2018

121 views
Skip to first unread message

Tim Graham

unread,
Nov 10, 2018, 8:53:38 PM11/10/18
to Django developers (Contributions to Django itself)

Week ending November 10, 2018


Triaged

-------

https://code.djangoproject.com/ticket/29921 - Default BooleanField.required different from Django 2.0 when using choices (invalid)

https://code.djangoproject.com/ticket/29928 - TestCase doesn't check for foreign key constraints when using sqlite (accepted)

https://code.djangoproject.com/ticket/29932 - QuerySet.difference() after intersection() returns incorrect results on SQLite (accepted)

https://code.djangoproject.com/ticket/29930 - View only permissions on stacked inline result in error (accepted)


Authored

----------

https://github.com/django/django/pull/10622 - Fixed #29934 -- Added sqlparse as a required dependency.


Reviewed/committed

------------------

https://github.com/django/django/pull/7528 - Fixed #25251 -- Made data migrations available in TransactionTestCase when using --keepdb.

https://github.com/django/django/pull/10603 - Fixed #29917 -- Stopped collecting ModelAdmin.actions from base ModelAdmins.

https://github.com/django/django/pull/10595 - Fixed #29908 -- Fixed setting of foreign key after related set access if ForeignKey uses to_field.

https://github.com/django/django/pull/10406 - Refs #29641 -- Refactored database schema constraint creation code.

https://github.com/django/django/pull/10632 - Fixed #29940 -- Recommended using the ORM rather than raw SQL.

Tim Graham

unread,
Nov 17, 2018, 7:31:57 PM11/17/18
to Django developers (Contributions to Django itself)

Week ending November 17, 2018


Triaged

-------

https://code.djangoproject.com/ticket/29946 - Weird session behavior after upgrading to Django 1.11.16 (needsinfo)

https://code.djangoproject.com/ticket/29947 - Inlines containing a field with default value are considered empty and not saved (wontfix)

https://code.djangoproject.com/ticket/29944 - Can't translate URL if activated language is different than the URL's (invalid)

https://code.djangoproject.com/ticket/29943 - Document that admin changelist adds `pk` to ordering (accepted)

https://code.djangoproject.com/ticket/29951 - Object not created in the correct table with db_table=<schema>.<table> on PostgreSQL (invalid)

https://code.djangoproject.com/ticket/29961 - Change-Add-Delete links are visible in tabular inline for foreignkey fields with a HiddenInput widget (accepted)


Authored

----------

https://github.com/django/django/pull/10659 - Fixed #29505 -- Removed SchemaEditor's calling of callable defaults.


Reviewed/committed

------------------

https://github.com/django/django/pull/9353 - Fixed #29945 -- Moved contrib.postgres uninstallation logic to the app config.

https://github.com/django/django/pull/10406 - Refs #29641 -- Refactored database schema constraint creation.

https://github.com/django/django/pull/10639 - Fixed #29641 -- Added support for unique constraints in Meta.constraints.

https://github.com/django/django/pull/10617 - Fixed #29788 -- Added support for Oracle Managed File (OMF) tablespaces.

https://github.com/django/django/pull/10630 - Fixed #17210 -- Made NullBooleanSelect use unknown/true/false as query data.

https://github.com/django/django/pull/10534 - Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.

https://github.com/django/django/pull/10627 - Fixed #29939 -- Increased Group.name max_length to 150 characters.

https://github.com/django/django/pull/10644 - Fixed #17930 -- Allowed ORing (|) with sliced QuerySets.

https://github.com/django/django/pull/10185 - Fixed #25884 -- Fixed migrate --run-syncdb when specifying an app label.

https://github.com/django/django/pull/10647 - Fixed #29952 -- Lowercased all passwords in contrib.auth's auth/common-passwords.txt.gz.

https://github.com/django/djangosnippets.org/pull/68 - Update URLconfs to use django.urls.path()

https://github.com/django/django/pull/10567 - Fixed #29864 -- Added link targets for low-level cache API.

https://github.com/django/django/pull/10653 - Fixed #29959 -- Cached GEOS version in WKBWriter class.

https://github.com/django/django/pull/10654 - Refs #28814 -- Backported Python 3.7 compatibility to Django 1.11.x.

Tim Graham

unread,
Nov 26, 2018, 8:36:12 AM11/26/18
to Django developers (Contributions to Django itself)

Week ending November 24, 2018


Triaged

-------

https://code.djangoproject.com/ticket/29966 - Add test coverage for BaseHandler's "The view didn't return an HttpResponse object." error (accepted)

https://code.djangoproject.com/ticket/29977 - Allow customizing AccessMixin redirect (needsinfo)

https://code.djangoproject.com/ticket/29981 - "Please correct the error below." (with no errors displayed) when changing an inline that has a one-to-one relation to the parent that uses to_field (accepted)


Reviewed/committed

------------------

https://github.com/django/django/pull/10033 - Fixed #29478 -- Added support for mangled names to @cached_property.

https://github.com/django/django/pull/10385 - Refs #29722 -- Added introspection of partitions for PostgreSQL.

https://github.com/django/django/pull/10661 - Fixed #29961 -- Made RelatedFieldWidgetWrapper hide related item links if wrapping a hidden widget.

https://github.com/django/django/pull/10652 - Fixed #29282 -- Prevented some admin checks from crashing with TypeError.

https://github.com/django/django/pull/10645 - Fixed #29953 -- Added CSS class to column headers in tabular inlines.

Tim Graham

unread,
Dec 3, 2018, 8:42:17 PM12/3/18
to Django developers (Contributions to Django itself)

Week ending December 1, 2018


Triaged

-------

https://code.djangoproject.com/ticket/29992 - Error in admin checking list_display items (needsinfo)


Authored

----------

https://github.com/django/django/pull/10697 - Switched TestCase to SimpleTestCase where possible in Django's tests.


Reviewed/committed

------------------

https://github.com/django/django/pull/10683 - Refs #29722 -- Added introspection of materialized views for Oracle.

https://github.com/django/django/pull/10685 - Switched setUp() to setUpTestData() where possible in Django's tests.

https://github.com/django/django/pull/10681 - Fixed #28385 -- Fixed deserializing natural keys when primary key has a default value.

https://github.com/django/django/pull/10629 - Fixed #29929 -- Fixed admin view-only change form crash when using ModelAdmin.prepopulated_fields.

https://github.com/django/django/pull/10667 - Refs #25251 -- Filtered out skipped tests when processing the test suite to set _next_serialized_rollback.

https://github.com/django/django/pull/10699 - Fixed #29991 -- Doc'd logger propagation for the default logging config.

https://github.com/django/django/pull/10704 - Fixed #29997 -- Allowed combining SearchQuerys with different configs.

https://github.com/django/django/pull/10678 - Fixed #29930 -- Allowed editing in admin with view-only inlines.
Reply all
Reply to author
Forward
0 new messages