1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

[2.0.x] Fixed #29054 -- Fixed a regression where a queryset that annotates with geometry objects crashes.

Made GEOSGeometryBase hashable.
Regression in 19b2dfd1bf.

Thanks Tim Graham for the review.
Backport of b002a032f9 from master
This commit is contained in:
Mariusz Felisiak
2018-01-27 11:12:11 +01:00
parent 61c74ae74f
commit 42622b8934
4 changed files with 35 additions and 1 deletions

View File

@@ -17,3 +17,6 @@ Bugfixes
* Fixed regression in the use of ``QuerySet.values_list(..., flat=True)``
followed by ``annotate()`` (:ticket:`29067`).
* Fixed a regression where a queryset that annotates with geometry objects
crashes (:ticket:`29054`).