File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
Note that in line with [ Django REST Framework policy] ( http://www.django-rest-framework.org/topics/release-notes/ ) ,
9
9
any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change.
10
10
11
- ## [ Unreleased ]
11
+ ## [ 3.2.0 ] - 2020-08-26
12
12
13
13
### Added
14
14
15
15
* Added support for serializing nested serializers as attribute json value introducing setting ` JSON_API_SERIALIZE_NESTED_SERIALIZERS_AS_ATTRIBUTE `
16
+ * Note: As keys of nested serializers are not json api spec field names they are not inflected by format field names option.
16
17
17
18
### Fixed
18
19
19
20
* Avoid ` AttributeError ` for PUT and PATCH methods when using ` APIView `
20
21
* Clear many-to-many relationships instead of deleting related objects during PATCH on ` RelationshipView `
21
- * Allow POST, PATCH, DELETE for actions in ` ReadOnlyModelViewSet ` . It was problematic since 2.8.0.
22
+ * Allow POST, PATCH, DELETE for actions in ` ReadOnlyModelViewSet ` . Regression since version ` 2.8.0 ` .
22
23
* Properly format nested errors
23
24
24
25
### Changed
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
3
3
__title__ = 'djangorestframework-jsonapi'
4
- __version__ = '3.1 .0'
4
+ __version__ = '3.2 .0'
5
5
__author__ = ''
6
6
__license__ = 'BSD'
7
7
__copyright__ = ''
You can’t perform that action at this time.
0 commit comments