You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,10 +104,10 @@ This is the last release supporting Django 1.11, Django 2.1, Django REST Framewo
104
104
### Added
105
105
106
106
* Added support for serializing nested serializers as attribute json value introducing setting `JSON_API_SERIALIZE_NESTED_SERIALIZERS_AS_ATTRIBUTE`
107
-
* Note: As keys of nested serializers are not json:api spec field names they are not inflected by format field names option.
107
+
* Note: As keys of nested serializers are not JSON:API spec field names they are not inflected by format field names option.
108
108
* Added `rest_framework_json_api.serializer.Serializer` class to support initial JSON:API views without models.
109
109
* Note that serializers derived from this class need to define `resource_name` in their `Meta` class.
110
-
* This fix might be a **BREAKING CHANGE** if you use `rest_framework_json_api.serializers.Serializer` for non json:api spec views (usually `APIView`). You need to change those serializers classes to use `rest_framework.serializers.Serializer` instead.
110
+
* This fix might be a **BREAKING CHANGE** if you use `rest_framework_json_api.serializers.Serializer` for non JSON:API spec views (usually `APIView`). You need to change those serializers classes to use `rest_framework.serializers.Serializer` instead.
111
111
112
112
### Fixed
113
113
@@ -202,7 +202,7 @@ This is the last release supporting Python 2.7, Python 3.4, Django Filter 1.1, D
202
202
* Don't swallow `filter[]` params when there are several
203
203
* Fix DeprecationWarning regarding collections.abc import in Python 3.7
204
204
* Allow OPTIONS request to be used on RelationshipView
205
-
* Remove non-JSONAPI methods (PUT and TRACE) from ModelViewSet and RelationshipView.
205
+
* Remove non-JSON:API methods (PUT and TRACE) from ModelViewSet and RelationshipView.
206
206
This fix might be a **BREAKING CHANGE** if your clients are incorrectly using PUT instead of PATCH.
207
207
* Avoid validation error for missing fields on a PATCH request using polymorphic serializers
Copy file name to clipboardExpand all lines: docs/usage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -312,7 +312,7 @@ multiple endpoints. Setting the `resource_name` on views may result in a differe
312
312
313
313
### Inflecting object and relation keys
314
314
315
-
This package includes the ability (off by default) to automatically convert [json:api field names](http://jsonapi.org/format/#document-resource-object-fields) of requests and responses from the python/rest_framework's preferred underscore to
315
+
This package includes the ability (off by default) to automatically convert [JSON:API field names](http://jsonapi.org/format/#document-resource-object-fields) of requests and responses from the python/rest_framework's preferred underscore to
316
316
a format of your choice. To hook this up include the following setting in your
0 commit comments