summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2018-11-16 15:10:33 +0100
committerTim Graham <timograham@gmail.com>2018-11-16 14:45:21 -0500
commite7e55059027ae2f644c852e0ba60dc9307b425e1 (patch)
tree7ea7309dec5ff11232f1883c917fe59a6a2bbd3b /docs
parent97cec6f75d9d9b86892829f784e5e9dabfd1242a (diff)
Fixed #29959 -- Cached GEOS version in WKBWriter class.
Regression in f185d929fa1c0caad8c03fccde899b647d7248c6.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.17.txt4
-rw-r--r--docs/releases/2.0.10.txt4
-rw-r--r--docs/releases/2.1.4.txt4
3 files changed, 10 insertions, 2 deletions
diff --git a/docs/releases/1.11.17.txt b/docs/releases/1.11.17.txt
index 52d86601a6..db201d0b9a 100644
--- a/docs/releases/1.11.17.txt
+++ b/docs/releases/1.11.17.txt
@@ -9,4 +9,6 @@ Django 1.11.17 fixes several bugs in 1.11.16.
Bugfixes
========
-* ...
+* Prevented repetitive calls to ``geos_version_tuple()`` in the ``WKBWriter``
+ class in an attempt to fix a random crash involving ``LooseVersion`` since
+ Django 1.11.14 (:ticket:`29959`).
diff --git a/docs/releases/2.0.10.txt b/docs/releases/2.0.10.txt
index 70d74559a4..fd2e7f5ebf 100644
--- a/docs/releases/2.0.10.txt
+++ b/docs/releases/2.0.10.txt
@@ -9,4 +9,6 @@ Django 2.0.10 fixes several bugs in 2.0.9.
Bugfixes
========
-* ...
+* Prevented repetitive calls to ``geos_version_tuple()`` in the ``WKBWriter``
+ class in an attempt to fix a random crash involving ``LooseVersion`` since
+ Django 2.0.6 (:ticket:`29959`).
diff --git a/docs/releases/2.1.4.txt b/docs/releases/2.1.4.txt
index 6f05a04357..82378b16a0 100644
--- a/docs/releases/2.1.4.txt
+++ b/docs/releases/2.1.4.txt
@@ -12,3 +12,7 @@ Bugfixes
* Corrected the default password list that ``CommonPasswordValidator`` uses by
lowercasing all passwords to match the format expected by the validator
(:ticket:`29952`).
+
+* Prevented repetitive calls to ``geos_version_tuple()`` in the ``WKBWriter``
+ class in an attempt to fix a random crash involving ``LooseVersion``
+ (:ticket:`29959`).