From d307be8d91aaa0fc652673d096ea244c4e7e28f6 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Thu, 24 Jul 2025 18:28:43 +0400 Subject: [PATCH] Release 8.0.0 --- CHANGELOG.md | 7 +++---- rest_framework_json_api/__init__.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f13d267f..fe7c9e14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Note that in line with [Django REST framework policy](https://www.django-rest-framework.org/topics/release-notes/), any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change. -## [Unreleased] +## [8.0.0] - 2025-07-24 ### Added @@ -17,9 +17,8 @@ any parts of the framework not mentioned in the documentation should generally b ### Fixed -* Ensured that interpreting `include` query parameter is done in internal Python naming. - This adds full support for using multipart field names for includes while configuring `JSON_API_FORMAT_FIELD_NAMES`. -* Ensured that sparse fieldset fully supports `JSON_API_FORMAT_FIELD_NAMES`. +* Ensured that compound documents' `include` query parameter fully support `JSON_API_FORMAT_FIELD_NAMES`. +* Ensured that sparse fieldset's `fields` query parameter fully supports `JSON_API_FORMAT_FIELD_NAMES`. ### Changed diff --git a/rest_framework_json_api/__init__.py b/rest_framework_json_api/__init__.py index a69daa9f..23f6b8f9 100644 --- a/rest_framework_json_api/__init__.py +++ b/rest_framework_json_api/__init__.py @@ -1,5 +1,5 @@ __title__ = "djangorestframework-jsonapi" -__version__ = "7.1.0" +__version__ = "8.0.0" __author__ = "" __license__ = "BSD" __copyright__ = ""