This release adds Django Rest Framework support for select endpoints for Targets and DataProducts. It also fixes an issue with Targets not being linked to on comments.
Please note, in order to avoid breaking your TOM when upgrading, you'll need to add the following to your `settings.py`:
- Add ``LOGIN_URL = '/accounts/login/'``, preferably just above ``LOGIN_REDIRECT_URL``.
- Add `rest_framework` to your `settings.INSTALLED_APPS`.
- Add the following property, which can be configured as:
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': [
],
'TEST_REQUEST_DEFAULT_FORMAT': 'json',
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
'PAGE_SIZE': 100
}