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:36:08 +0100
commitb85ceaaba6e3de8419a8604cde426914a7915e13 (patch)
tree55136e08550ebc7a0d10f30681faa101333a6161 /docs
parent7e6a2e3b4555c069c50cb949404938345bfb2ea6 (diff)
[4.0.x] Fixed #32600 -- Fixed Geometry collections and Polygon segmentation fault on macOS ARM64.
Backport of 19fb838803f63eef0726a370050443b693f109be from main
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 84de1094fc..ed8dc2d893 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -766,6 +766,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`).