diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-02-15 19:28:49 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2016-02-16 21:07:05 +0100 |
| commit | 928c12eb1a75dbcab22b64f8cf0afb17389c20d2 (patch) | |
| tree | b8f20f14e121e816772056d639a6a14f60adffe8 /docs | |
| parent | b09b71bf3468c67a9c08654e7aa8b99efe59ebee (diff) | |
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.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.8.10.txt | 4 | ||||
| -rw-r--r-- | docs/releases/1.9.3.txt | 4 |
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`). |
