Skip to content

Commit 9c49b65

Browse files
authored
Release version 3.2.0 (#817)
1 parent 959aec7 commit 9c49b65

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
Note that in line with [Django REST Framework policy](http://www.django-rest-framework.org/topics/release-notes/),
99
any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change.
1010

11-
## [Unreleased]
11+
## [3.2.0] - 2020-08-26
1212

1313
### Added
1414

1515
* 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.
1617

1718
### Fixed
1819

1920
* Avoid `AttributeError` for PUT and PATCH methods when using `APIView`
2021
* 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`.
2223
* Properly format nested errors
2324

2425
### Changed

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__ = '3.1.0'
4+
__version__ = '3.2.0'
55
__author__ = ''
66
__license__ = 'BSD'
77
__copyright__ = ''

0 commit comments

Comments
 (0)