diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-08-14 15:25:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-14 15:25:35 +0200 |
| commit | 1f8382d34d54061eddc41df6994e20ee38c60907 (patch) | |
| tree | 392c51868ba9418b218e5618d3e48c7c6221cf41 /docs | |
| parent | 0b8d911d280f033154bb43f3da0e72b6175aa708 (diff) | |
Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on expressions with params.
Regression in 4f5b58f5cd3c57fee9972ab074f8dc6895d8f387.
Thanks Florian Apolloner for the report and helping with tests.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.11.24.txt | 15 | ||||
| -rw-r--r-- | docs/releases/2.1.12.txt | 15 | ||||
| -rw-r--r-- | docs/releases/2.2.5.txt | 5 | ||||
| -rw-r--r-- | docs/releases/index.txt | 2 |
4 files changed, 37 insertions, 0 deletions
diff --git a/docs/releases/1.11.24.txt b/docs/releases/1.11.24.txt new file mode 100644 index 0000000000..3013c866d0 --- /dev/null +++ b/docs/releases/1.11.24.txt @@ -0,0 +1,15 @@ +============================ +Django 1.11.24 release notes +============================ + +*Expected September 2, 2019* + +Django 1.11.24 fixes a regression in 1.11.23. + +Bugfixes +======== + +* Fixed crash of ``KeyTransform()`` for + :class:`~django.contrib.postgres.fields.JSONField` and + :class:`~django.contrib.postgres.fields.HStoreField` when using on + expressions with params (:ticket:`30672`). diff --git a/docs/releases/2.1.12.txt b/docs/releases/2.1.12.txt new file mode 100644 index 0000000000..696a6c4890 --- /dev/null +++ b/docs/releases/2.1.12.txt @@ -0,0 +1,15 @@ +=========================== +Django 2.1.12 release notes +=========================== + +*Expected September 2, 2019* + +Django 2.1.12 fixes a regression in 2.1.11. + +Bugfixes +======== + +* Fixed crash of ``KeyTransform()`` for + :class:`~django.contrib.postgres.fields.JSONField` and + :class:`~django.contrib.postgres.fields.HStoreField` when using on + expressions with params (:ticket:`30672`). diff --git a/docs/releases/2.2.5.txt b/docs/releases/2.2.5.txt index 718ec8d888..0b9310a344 100644 --- a/docs/releases/2.2.5.txt +++ b/docs/releases/2.2.5.txt @@ -12,3 +12,8 @@ Bugfixes * Relaxed the system check added in Django 2.2 for models to reallow use of the same ``db_table`` by multiple models when database routers are installed (:ticket:`30673`). + +* Fixed crash of ``KeyTransform()`` for + :class:`~django.contrib.postgres.fields.JSONField` and + :class:`~django.contrib.postgres.fields.HStoreField` when using on + expressions with params (:ticket:`30672`). diff --git a/docs/releases/index.txt b/docs/releases/index.txt index c1f9a864c8..d9db32ee4f 100644 --- a/docs/releases/index.txt +++ b/docs/releases/index.txt @@ -44,6 +44,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 2.1.12 2.1.11 2.1.10 2.1.9 @@ -82,6 +83,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 1.11.24 1.11.23 1.11.22 1.11.21 |
