Fixed #28462 -- Decreased memory usage with ModelAdmin.list_editable.

Regression in 917cc288a3.
This commit is contained in:
Adam Donaghy 2018-05-03 23:41:04 +10:00 committed by Tim Graham
parent e1ebd22558
commit b18650a263
6 changed files with 116 additions and 4 deletions

View file

@ -11,3 +11,6 @@ Bugfixes
* Fixed ``WKBWriter.write()`` and ``write_hex()`` for empty polygons on
GEOS 3.6.1+ (:ticket:`29460`).
* Fixed a regression in Django 1.10 that could result in large memory usage
when making edits using ``ModelAdmin.list_editable`` (:ticket:`28462`).

View file

@ -20,3 +20,6 @@ Bugfixes
* Fixed ``WKBWriter.write()`` and ``write_hex()`` for empty polygons on
GEOS 3.6.1+ (:ticket:`29460`).
* Fixed a regression in Django 1.10 that could result in large memory usage
when making edits using ``ModelAdmin.list_editable`` (:ticket:`28462`).