summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Sanders <shang.xiao.sanders@gmail.com>2022-08-09 16:16:23 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-09 21:45:58 +0200
commite215948f0d75f69b11b8daff7628fb1212c00c27 (patch)
tree0be2c7b6f6b4ded5eb9a360e610de8c282459acf /docs
parent6b0193146d3818d17d231b8e3d9fb38f06f55757 (diff)
[4.1.x] Fixed #33905 -- Fixed CheckConstraint() validation on range fields.
Bug in 667105877e6723c6985399803a364848891513cc. Backport of e0ae1363ec2aa71945be26f869cafd4181ccbc95 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/4.1.1.txt b/docs/releases/4.1.1.txt
index dbac1ff926..55c0b7ed08 100644
--- a/docs/releases/4.1.1.txt
+++ b/docs/releases/4.1.1.txt
@@ -32,3 +32,6 @@ Bugfixes
* Fixed a bug in Django 4.1 that caused a crash of model validation on
``UniqueConstraint()`` with field names in ``expressions`` (:ticket:`33902`).
+
+* Fixed a bug in Django 4.1 that caused an incorrect validation of
+ ``CheckConstraint()`` with range fields on PostgreSQL (:ticket:`33905`).