summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-02-15 19:28:49 +0100
committerClaude Paroz <claude@2xlibre.net>2016-02-16 21:09:16 +0100
commit205cafd01ebe0f1c72ef3772a1b3f195387f4c50 (patch)
tree52117d2195dc3afabc58134d4095787b71755f3b /docs
parentcc7ea1905ddb4ba444b4f358c26b6bd8f1f6c93b (diff)
[1.9.x] Fixed #26215 -- Fixed RangeField/ArrayField serialization with None values
Also added tests for HStoreField and JSONField. Thanks Aleksey Bukin for the report and Tim Graham for the initial patch and the review. Backport of 928c12eb1 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.10.txt4
-rw-r--r--docs/releases/1.9.3.txt4
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/releases/1.8.10.txt b/docs/releases/1.8.10.txt
index 4eea5a3b7b..b29000eb20 100644
--- a/docs/releases/1.8.10.txt
+++ b/docs/releases/1.8.10.txt
@@ -17,3 +17,7 @@ Bugfixes
* Made ``forms.FileField`` and ``utils.translation.lazy_number()`` picklable
(:ticket:`26212`).
+
+* Fixed :class:`~django.contrib.postgres.fields.RangeField` and
+ :class:`~django.contrib.postgres.fields.ArrayField` serialization with
+ ``None`` values (:ticket:`26215`).
diff --git a/docs/releases/1.9.3.txt b/docs/releases/1.9.3.txt
index 05c6542329..af7bcf21bb 100644
--- a/docs/releases/1.9.3.txt
+++ b/docs/releases/1.9.3.txt
@@ -27,3 +27,7 @@ Bugfixes
* Made ``forms.FileField`` and ``utils.translation.lazy_number()`` picklable
(:ticket:`26212`).
+
+* Fixed :class:`~django.contrib.postgres.fields.RangeField` and
+ :class:`~django.contrib.postgres.fields.ArrayField` serialization with
+ ``None`` values (:ticket:`26215`).