Re: Test fails silently when using --tag

2021-04-05 Thread Cammil Taank
Thanks for the responses. Cammil On Mon, 5 Apr 2021, 14:04 'Adam Johnson' via Django developers (Contributions to Django itself), wrote: > Great, thanks Tim. > > On Mon, 5 Apr 2021 at 13:28, Tim Graham wrote: > >> This was fixed a week ago (will be in Django 4.0). >>

Re: remove SECURE_BROWSER_XSS_FILTER setting?

2021-04-05 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
I agree. The time has come to remove it as it offers little protection, and it's easy to add back if you have the requirement. Two more data points: securityheaders.com no longer gives you points for setting the header, and caniuse.com data ( https://caniuse.com/mdn-http_headers_x-xss-protection

Re: "Unify by values" setting in Oracle's base.py

2021-04-05 Thread charettes
Hello Nigel, Through git blame for unify_by_values I figured it was introduced[0] to deal with an issue during aggregation[1]. Mariusz might be able to provide more context here as I don't have much knowledge around Oracle cursor cache but it seems you'll have to find another way to address

GSoc proposal : A django pdfs library.

2021-04-05 Thread Anuttam Anand
Hello to all my djangomates. I am Anuttam Anand, Btech student from India. For this year's GSoc , I am thinking of making a proposal for a more efficient and feature containing pdf library. Upon researching , I found ReportLab to be the pdf making library in django but it lacks many features

Re: Google season of docs

2021-04-05 Thread Lokesh Kumar
Yes On Mon, Apr 5, 2021 at 6:30 PM Mhd Ali wrote: > No one Knows? > > On Sun, Apr 4, 2021 at 11:12 AM Mhd Ali wrote: > >> Will Django be participating in Google season of docs this year? >> > -- > You received this message because you are subscribed to the Google Groups > "Django developers

remove SECURE_BROWSER_XSS_FILTER setting?

2021-04-05 Thread Tim Graham
Hi, I think this setting and its functionality could be removed without a deprecation. Django's docs says, "Modern browsers don’t honor X-XSS-Protection HTTP header anymore. Although the setting offers little practical benefit, you may still want to set the header if you support older

Re: Test fails silently when using --tag

2021-04-05 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Great, thanks Tim. On Mon, 5 Apr 2021 at 13:28, Tim Graham wrote: > This was fixed a week ago (will be in Django 4.0). > https://code.djangoproject.com/ticket/29127 > > On Monday, April 5, 2021 at 5:18:45 AM UTC-4 Adam Johnson wrote: > >> Please don't report bugs here but to the ticket tracker.

Re: Google season of docs

2021-04-05 Thread Mhd Ali
No one Knows? On Sun, Apr 4, 2021 at 11:12 AM Mhd Ali wrote: > Will Django be participating in Google season of docs this year? > -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from

Re: Test fails silently when using --tag

2021-04-05 Thread Tim Graham
This was fixed a week ago (will be in Django 4.0). https://code.djangoproject.com/ticket/29127 On Monday, April 5, 2021 at 5:18:45 AM UTC-4 Adam Johnson wrote: > Please don't report bugs here but to the ticket tracker. If you're not > sure there's a bug, django-users, the forum, or IRC are the

Re: Django Channel Multiple Auth

2021-04-05 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Hi! I think you've found the wrong mailing list for this post. This mailing list is for discussing the development of Django itself, not for support using Django. This means the discussions of bugs and features in Django itself, rather than in your code using it. People on this list are unlikely

Django Channel Multiple Auth

2021-04-05 Thread Mesut Öncel
Hello, I want to have multiple auth classes for the Django channel. Can I increase the websocket key on asgi.py for this? For example: application = ProtocolTypeRouter( { "http": get_asgi_application(), "websocket": AuthMiddlewareStack(URLRouter(websocket_urlpatterns)), "websocket2":

Re: Test fails silently when using --tag

2021-04-05 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Please don't report bugs here but to the ticket tracker. If you're not sure there's a bug, django-users, the forum, or IRC are the recommended venues. That said, I cannot reproduce your problem. Using django's main branch, I started a new project with a tests.py file using your exact content and