Recently, Django released its 4.2 version and remove the django.http.multipartparser.parse_header() function, So djangorestframework required version also get changed. So, added the new version of djangorestframework to use django.utils.http.parse_header_parameters() instead of django.http.multipartparser.parse_header(). As it is required by the notification widget.
Recently, Django released its 4.2 version and remove the
django.http.multipartparser.parse_header()
function, Sodjangorestframework
required version also get changed. So, added the new version ofdjangorestframework
to usedjango.utils.http.parse_header_parameters()
instead ofdjango.http.multipartparser.parse_header()
. As it is required by the notification widget.Before
After