Django 2.2 Support
- All django 2.2 tests were fixed and now edx-drf-extensions properly supports django>=1.11,<=2.2.
- djangorestframework-jwt library was replaced with drf-jwt to support django2.2.
BREAKING CHANGES:
- To preserve compatibility with existing clients, the
JWT_AUTH_HEADER_PREFIX
Django setting must be set to "JWT". This was the default in djangorestframework-jwt, but it changed to "Bearer" in drf-jwt 1.12.8. - You may also need to add
rest_framework_jwt
andrest_framework_jwt.blacklist
to theINSTALLED_APPS
list.