summaryrefslogtreecommitdiff
path: root/docs/releases/4.2.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releases/4.2.txt')
-rw-r--r--docs/releases/4.2.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/releases/4.2.txt b/docs/releases/4.2.txt
index fefba040e2..e3553e737b 100644
--- a/docs/releases/4.2.txt
+++ b/docs/releases/4.2.txt
@@ -351,3 +351,17 @@ Miscellaneous
* ``django.contrib.auth.hashers.SHA1PasswordHasher``,
``django.contrib.auth.hashers.UnsaltedSHA1PasswordHasher``, and
``django.contrib.auth.hashers.UnsaltedMD5PasswordHasher`` are deprecated.
+
+* ``django.contrib.postgres.fields.CICharField`` is deprecated in favor of
+ ``CharField(db_collation="…")`` with a case-insensitive non-deterministic
+ collation.
+
+* ``django.contrib.postgres.fields.CIEmailField`` is deprecated in favor of
+ ``EmailField(db_collation="…")`` with a case-insensitive non-deterministic
+ collation.
+
+* ``django.contrib.postgres.fields.CITextField`` is deprecated in favor of
+ ``TextField(db_collation="…")`` with a case-insensitive non-deterministic
+ collation.
+
+* ``django.contrib.postgres.fields.CIText`` mixin is deprecated.