Re: How can I work around the Django 3.2.10 cve release

2022-05-21 Thread Jason
https://docs.djangoproject.com/en/4.0/ref/urls/#django.urls.path This was one of the additions in 2.0, and from what it seems like, you're not doing anything specific with regex that cannot be done with a path alternative. ie, re_path(r"invoice/(?P\d+)/$", billing_views.invoice_view, name="

Re: How can I work around the Django 3.2.10 cve release

2022-05-21 Thread Lakshyaraj Dash XI-D 25
There are not a big bunch of differences. You can also upgrade the version in production. On Sat, 21 May, 2022, 15:10 Mike Dewhirst, wrote: > I'm still on 3.2.x because it is a long term supported version and my > project is in production. > > Django 4.0 is really new with asgi replacing wsgi. >

Re: How can I work around the Django 3.2.10 cve release

2022-05-21 Thread Mike Dewhirst
I'm still on 3.2.x because it is a long term supported version and my project is in production. Django 4.0 is really new with asgi replacing wsgi.I want more unit test coverage before upgrading.CheersMike--(Unsigned mail from my phone) Original message From: Lakshyaraj Dash XI-D

Re: How can I work around the Django 3.2.10 cve release

2022-05-21 Thread Lakshyaraj Dash XI-D 25
Hey why don't you use django v4 for your projects? On Fri, 20 May, 2022, 08:43 Mike Dewhirst, wrote: > My billing (Stripe) mechanism is working right up until Django 3.2.9 - > which is where I'm stumped at the moment. > > Django 3.2.10 https://docs.djangoproject.com/en/3.2/releases/3.2.10/ > ind