summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrenton Partridge <bapartridge@gmail.com>2021-12-19 01:15:09 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-12-21 13:00:09 +0100
commit19fb838803f63eef0726a370050443b693f109be (patch)
treecd9259e72fd2be670d7f38195863cb115b97ad9e /docs
parente95e6425ac354b8fb0c24580b740dbdc2ea72bd6 (diff)
Fixed #32600 -- Fixed Geometry collections and Polygon segmentation fault on macOS ARM64.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/geos.txt2
-rw-r--r--docs/releases/4.0.1.txt5
2 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index e8a88014cc..dd71229832 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -776,6 +776,8 @@ Other Properties & Methods
>>> if poly_1.area > poly_2.area:
>>> pass
+.. _geos-geometry-collections:
+
Geometry Collections
====================
diff --git a/docs/releases/4.0.1.txt b/docs/releases/4.0.1.txt
index 5fea7aa8df..8caf9d56b1 100644
--- a/docs/releases/4.0.1.txt
+++ b/docs/releases/4.0.1.txt
@@ -23,3 +23,8 @@ Bugfixes
* Fixed a regression in Django 4.0 that caused creating bogus migrations for
models that reference swappable models such as ``auth.User``
(:ticket:`33366`).
+
+* Fixed a long standing bug in :ref:`geos-geometry-collections` and
+ :class:`~django.contrib.gis.geos.Polygon` that caused a crash on some
+ platforms (reported on macOS based on the ``ARM64`` architecture)
+ (:ticket:`32600`).