Skip to content

Commit 2619f45

Browse files
authored
Merge pull request #442 from sliverc/preparing_release_2_5_0
Release 2.5.0
2 parents 79e7738 + 0846624 commit 2619f45

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CHANGELOG.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
v2.5.0 - [unreleased]
1+
v2.5.0 - Released July 11, 2018
2+
23
* Add new pagination classes based on JSON:API query parameter *recommendations*:
34
* `JsonApiPageNumberPagination` and `JsonApiLimitOffsetPagination`. See [usage docs](docs/usage.md#pagination).
4-
* Deprecates `PageNumberPagination` and `LimitOffsetPagination`.
5-
* Add `ReadOnlyModelViewSet` extension with prefetch mixins.
5+
* Deprecates `PageNumberPagination` and `LimitOffsetPagination`
6+
* Add `ReadOnlyModelViewSet` extension with prefetch mixins
67
* Add support for Django REST Framework 3.8.x
7-
* Introduce `JSON_API_FORMAT_FIELD_NAMES` option replacing `JSON_API_FORMAT_KEYS` but in comparision preserving
8+
* Introduce `JSON_API_FORMAT_FIELD_NAMES` option replacing `JSON_API_FORMAT_KEYS` but in comparison preserving
89
values from being formatted as attributes can contain any [json value](http://jsonapi.org/format/#document-resource-object-attributes).
9-
* `JSON_API_FORMAT_KEYS` still works as before (formating all json value keys also nested) but is marked as deprecated.
10+
* `JSON_API_FORMAT_KEYS` still works as before (formatting all json value keys also nested) but is marked as deprecated
11+
* Performance improvement when rendering included data
12+
* Allow overwriting of `get_queryset()` in custom `ResourceRelatedField`
1013

1114
v2.4.0 - Released January 25, 2018
1215

rest_framework_json_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
__title__ = 'djangorestframework-jsonapi'
4-
__version__ = '2.4.0'
4+
__version__ = '2.5.0'
55
__author__ = ''
66
__license__ = 'MIT'
77
__copyright__ = ''

0 commit comments

Comments
 (0)