From f6ae03da6238ed6c9fd501b496932287ea2ccb73 Mon Sep 17 00:00:00 2001 From: Shafiya Adzhani Date: Sat, 24 Aug 2024 23:19:13 +0700 Subject: [PATCH] Added release notes for partial JSONField updates support. --- docs/releases/5.2.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/releases/5.2.txt b/docs/releases/5.2.txt index aaf47ff8e8..9fc20f11e6 100644 --- a/docs/releases/5.2.txt +++ b/docs/releases/5.2.txt @@ -318,6 +318,10 @@ Models * :meth:`.QuerySet.explain` now supports the ``memory`` and ``serialize`` options on PostgreSQL 17+. +* Added :class:`~django.db.models.functions.JSONSet` and + :class:`~django.db.models.functions.JSONRemove` for making partial updates + and removing keys in :class:`~django.db.models.JSONField`. + Requests and Responses ~~~~~~~~~~~~~~~~~~~~~~