[3.0.x] Refs #31863 -- Added release notes for 94ea79be137f3cb30949bf82198e96e094f2650d.

Backport of 21768a99f47ee73a2f93405151550ef7c3d9c8a2 from master
This commit is contained in:
Mariusz Felisiak 2020-08-13 16:29:55 +02:00
parent c33b6ceff4
commit ab5491c7cc
2 changed files with 8 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Django 2.2.16 release notes
*Expected September 1, 2020* *Expected September 1, 2020*
Django 2.2.16 fixes a data loss bug in 2.2.15. Django 2.2.16 fixes two data loss bugs in 2.2.15.
Bugfixes Bugfixes
======== ========
@ -13,3 +13,6 @@ Bugfixes
:meth:`~django.db.models.query.QuerySet.select_for_update()`. When using :meth:`~django.db.models.query.QuerySet.select_for_update()`. When using
related fields pointing to a proxy model in the ``of`` argument, the related fields pointing to a proxy model in the ``of`` argument, the
corresponding model was not locked (:ticket:`31866`). corresponding model was not locked (:ticket:`31866`).
* Fixed a data loss possibility, following a regression in Django 2.0, when
copying model instances with a cached fields value (:ticket:`31863`).

View File

@ -4,7 +4,7 @@ Django 3.0.10 release notes
*Expected September 1, 2020* *Expected September 1, 2020*
Django 3.0.10 fixes a data loss bug in 3.0.9. Django 3.0.10 fixes two data loss bugs in 3.0.9.
Bugfixes Bugfixes
======== ========
@ -13,3 +13,6 @@ Bugfixes
:meth:`~django.db.models.query.QuerySet.select_for_update()`. When using :meth:`~django.db.models.query.QuerySet.select_for_update()`. When using
related fields pointing to a proxy model in the ``of`` argument, the related fields pointing to a proxy model in the ``of`` argument, the
corresponding model was not locked (:ticket:`31866`). corresponding model was not locked (:ticket:`31866`).
* Fixed a data loss possibility, following a regression in Django 2.0, when
copying model instances with a cached fields value (:ticket:`31863`).