django-rest-framework-json-api
django-rest-framework-json-api copied to clipboard
JSON:API support for Django REST framework
### Update [flake8](https://pypi.org/project/flake8) from **4.0.1** to **5.0.2**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* Links - PyPI: https://pypi.org/project/flake8 - Changelog: https://pyup.io/changelogs/flake8/ - Repo:...
## Description of the Bug Report ```python class LogoutView(APIView): pass ``` Errors when accessing documents AttributeError: 'LogoutView' object has no attribute 'get_serializer' Is fault tolerance possible when the program has...
…s in component schemas. Fixes # ## Description of the Change ## Checklist - [x] PR only contains one change (considered splitting up PR) ~- [ ] unit-test added~ ~-...
Fixes # ## Description of the Change ## Checklist - [x] PR only contains one change (considered splitting up PR) ~- [ ] unit-test added~ ~- [ ] documentation updated~...
## Description of the Bug Report `SparseFieldsetsMixin` does not adjust field_names by configured format. ## Fix: ```python class SparseFieldsetsMixin: """ A serializer mixin that adds support for sparse fieldsets through...
`utils.get_resource_type_from_serializer` is called several times throughout the DJA code base. When this method raises an `AttributeError` it is a configuration/code setup issue and not a runtime issue. Besides there is...
## Description of the Bug Report When requesting an API endpoint with the `include` query param, specifying an unsupported value results in an uncaught exception and traceback (below). Note: this...
Currently some tests are written in unit test and some in pytest. As pytest is more flexible all tests should be converted to use pytest to be consistent. It also...
I am not a 100% sure about this, but when all resource names are dasherized and pluralized, shouldn't the included names be plural and dasherized too? By included names I...
## Description of the Bug Report [CONTRIBUTING,md](https://github.com/django-json-api/django-rest-framework-json-api/blob/master/docs/CONTRIBUTING.md) currently only covers how to setup dev environment. It would be great to get an overhaul so it actually explains how someone can...