Fellow Reports -- November 2020

52 views
Skip to first unread message

Carlton Gibson

unread,
Nov 19, 2020, 10:48:50 AM11/19/20
to Django developers (Contributions to Django itself)
Hi all.


Calendar Week 45 -- ending 08 November.


Triaged:

https://code.djangoproject.com/ticket/32174 -- Error page can sometimes be very slow (wontfix)
https://code.djangoproject.com/ticket/31508 -- ASGI Lifespan Support (wontfix)
https://code.djangoproject.com/ticket/32170 -- Admin select_related is different to the model's select related (needsinfo)
https://code.djangoproject.com/ticket/31550 -- AssertionError raised by test_file_response method of ASGITest class. (Accepted)
https://code.djangoproject.com/ticket/32156 -- Add __class_getitem__ to support runtime type parameters for more classes (needsinfo)
https://code.djangoproject.com/ticket/32165 -- Add pre-commit Hooks (needsinfo)



Reviewed:

https://github.com/django/django/pull/13647 -- Refs #31910 -- Fixed GeoQuerySetTest.test_geoagg_subquery() test on Oracle 18c.
https://github.com/django/django/pull/13557 -- Fixed #31235 -- Updated assertQuerysetEqual to compare querysets directly.
https://github.com/django/django/pull/12928 -- Fixed #25791 -- Implement autoreload behaviour for cached template loader
https://github.com/django/django/pull/13607 -- Fixed #22276 -- Fixed crash when formset management form is invalid.
https://github.com/django/django/pull/13557 -- Fixed #31235 -- Updated assertQuerysetEqual to compare querysets directly.
https://github.com/django/django/pull/13389 -- Fixed #31983 -- Added system check for file system caches location.
https://github.com/django/django/pull/13201 -- Fixed #30801 -- Added examples of alternatives to signals
https://github.com/django/django/pull/13636 -- Implementation of ASGI Lifespan protocol
https://github.com/django/django/pull/13629 -- Refs #32061 -- Fixed test_crash_password_does_not_leak() crash on Windows.
https://github.com/django/django/pull/13632 -- Fixed #32162 -- Fixed setting Content-Length header in AsyncRequestFactory.
https://github.com/django/django/pull/13633 -- asgi.tests.ASGITest.test_file_response passes on Windows 10.0.18362



Authored:

https://github.com/django/django/pull/13635 -- Fixed #32159 -- Ensured AsyncRequestFactory correctly sets headers.





Calendar Week 46 -- ending 15 November.


Triaged:

https://code.djangoproject.com/ticket/32189 -- test.client.AsyncClient request POST failing (Invalid)
https://code.djangoproject.com/ticket/32187 -- The .select_related is not necessary in the .update documentation (Accepted)
https://code.djangoproject.com/ticket/32186 -- Application's `ready()` method doesn't called when app's author missed to define `default_app_config` (Duplicate of #31180)
https://code.djangoproject.com/ticket/32188 -- Pipenv latest version of Django is 3.0.11 rather than 3.1.* (Invalid)
https://code.djangoproject.com/ticket/32185 -- Add anchors to django code style docs (wontfix)
https://code.djangoproject.com/ticket/27807 -- Overriding username validators doesn't work as documented (wontfix)
https://code.djangoproject.com/ticket/32184 -- `manage.py migrate --noinput` should not delete stale modules (wontfix)



Reviewed:

https://github.com/django/djangoproject.com/pull/998 -- Fix color contrast
https://github.com/django/django/pull/13669 -- Fixed #32187 -- Removed unnecessary select_related in queries doc.
https://github.com/django/django/pull/12387 -- Fixed #31216 -- Added support for colorama terminal colors on Windows.
https://github.com/django/django/pull/13114 -- Fixed #27807 -- Made username validation configurable through AUTH_USERNAME_VALIDATORS setting
https://github.com/django/django/pull/12449 -- Fixed #31262 -- Allowed dictionaries in Field.choices for named groups.
https://github.com/django/django/pull/13649 -- Fixed #32176 -- Clarified filesystem cache docs.
https://github.com/django/django/pull/13659 -- Removed unnecessary __str__() methods in tests models.
https://github.com/django/django/pull/13648 -- Refs #32074 -- Fixed handling memoryview content by HttpResponse on Python 3.10+.
https://github.com/django/django/pull/13134 -- Fixed #31747 -- Fixed model enumeration via admin URLs.



Kind Regards,

Carlton


Carlton Gibson

unread,
Dec 1, 2020, 8:28:39 AM12/1/20
to Django developers (Contributions to Django itself)
Hi all.


Calendar Week 47 -- ending 22 November.


Triaged:

https://code.djangoproject.com/ticket/32209 -- Prepend project name to default admin url (needsinfo)
https://code.djangoproject.com/ticket/31700 -- Highlight destructive operations in makemigrations output (Accepted)
https://code.djangoproject.com/ticket/32206 -- Incorrect migration generated if field has been renamed when it has verbose_name set (Duplicate of #31700)
https://code.djangoproject.com/ticket/32205 -- ORM migrations after squash, command sqlmigrate will be error (worksforme)
https://code.djangoproject.com/ticket/32204 -- Quick Filter for the Admin Sidebar (needsinfo)
https://code.djangoproject.com/ticket/27541 -- Provide hooks to override manifest file storage in ManifestFilesMixin (Duplicate of #27590)
https://code.djangoproject.com/ticket/32195 -- Improve error messages from forgetting to call .as_view() on a CBV (Accepted)
https://code.djangoproject.com/ticket/32193 -- Deprecate MemcachedCache. (Accepted)



Reviewed:

https://github.com/django/django/pull/13651 -- Fixed #32172 -- Adapted signals to allow async handlers.
https://github.com/django/django/pull/13695 -- Fixed #32206 -- Fixed incorrect migration generated if field has been renamed when it has verbose_name set.
https://github.com/django/django/pull/12187 -- Fixed #27590 -- Added STATICFILES_MANIFEST setting
https://github.com/django/django/pull/13686 -- Fixed #32199 -- Doc'd JSONField in ModelForm field mapping.
https://github.com/django/django/pull/13682 -- Fixed #32195: Improve error from forgetting to call .as_view() on a CBV



Authored:

https://github.com/django/django/pull/13693 -- Fixed #32202 -- Fixed autoreloader argument generation on Windows with Python 3.7-.





Calendar Week 48 -- ending 29 November.


Triaged:

https://code.djangoproject.com/ticket/32227 -- DebugSQLTextTestResult crashes when database error is raised in setUpTestData(). (Accepted)
https://code.djangoproject.com/ticket/32226 -- QuerySet.explain(format='json') outputs repr'd JSON on PostgreSQL (Accepted)
https://code.djangoproject.com/ticket/32217 -- Add warning about missing 'migrations' package to migration docs (wontfix)
https://code.djangoproject.com/ticket/32212 -- Vary header changed by SessionMiddleware (wontfix)



Reviewed:

https://github.com/django/django/pull/13730 -- Refs #31978 -- Fixed hint in admin's password reset confirmation form for custom username fields.
https://github.com/django/django/pull/13435 -- Fixed #32018 -- Extracted admin colors into CSS variables.
https://github.com/django/django/pull/13525 -- Contributing Guide Overview Refactored
https://github.com/django/django/pull/13691 -- Fixed #32203 -- Fixed QuerySet.values()/values_list() crash on KeyTransforms with non-string values on SQLite.
https://github.com/django/django/pull/13362 -- Fixed #21936 -- Refactored DeleteView to work with SuccessMessageMixin.
https://github.com/django/django/pull/13714 -- Fixed #32224 -- Avoided suppressing connection errors in supports_json_field on SQLite.
https://github.com/django/django/pull/13697 -- Simplified JSONField key transforms by using JSON_OBJECT() on Oracle.
https://github.com/django/django/pull/13651 -- Fixed #32172 -- Adapted signals to allow async handlers.
https://github.com/django/django/pull/13711 -- Linked to FileResponse in Content-Disposition docs
https://github.com/django/django/pull/13305 -- Fixed #31885 -- Updated SMTP Email Backend to use an SSLContext.

https://github.com/django/django/pull/13134 -- Fixed #31747 -- Fixed model enumeration via admin URLs.
https://github.com/django/django/pull/12187 -- Fixed #27590 -- Added STATICFILES_MANIFEST setting
https://github.com/django/django/pull/13713 -- Fixed #32223 -- Removed strict=True in Path.resolve() in autoreloader.


Kind Regards,
Carlton
Reply all
Reply to author
Forward
0 new messages