jazzband / django-debug-toolbar

A configurable set of panels that display various debug information about the current request/response.
https://django-debug-toolbar.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
7.97k stars 1.03k forks source link

Remove obsolete staticfiles check #1894

Closed living180 closed 3 months ago

living180 commented 3 months ago

Description

The toolbar had a check for misconfigured static files directories. However, Django 4.0 added its own check for this situation. Since the toolbar's minimum supported Django version is now 4.2, the toolbar's check is made redundant by Django's check and can thus be removed.

Checklist:

tim-schilling commented 3 months ago

The relevant check in Django is staticfiles.W004

living180 commented 3 months ago

The relevant check in Django is staticfiles.W004

Should I add that information to the changelog entry?

tim-schilling commented 3 months ago

No, I was just adding it here for future reference. I should have noted that in my message, sorry!

living180 commented 3 months ago

No worries, thanks!