summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorScott Macpherson <scott@zerosleeps.com>2023-04-13 21:07:32 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-04-14 11:02:47 +0200
commit090d5ccc6c59e4df491ec0599c569834bdcf1409 (patch)
tree5a1f8fe31cdd75b30e31e564ffa9de0865390791 /docs
parentcd464fbc3ab5c3eccd9d026607341bfe859f10aa (diff)
[4.2.x] Fixed #34486 -- Fixed DatabaseOperations.compose_sql() crash with no existing database connection on PostgreSQL.
Regression in 09ffc5c1212d4ced58b708cbbf3dfbfb77b782ca. Backport of 53aee470d5b35e2708864d5221d2b5655e10c091 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.2.1.txt b/docs/releases/4.2.1.txt
index 84e3695cf4..f8bf6cc9d4 100644
--- a/docs/releases/4.2.1.txt
+++ b/docs/releases/4.2.1.txt
@@ -37,3 +37,7 @@ Bugfixes
* Fixed a regression in Django 4.2 where ``timesince`` and ``timeuntil``
template filters returned incorrect results for a datetime with a non-UTC
timezone when a time difference is less than 1 day (:ticket:`34483`).
+
+* Fixed a regression in Django 4.2 that caused a crash of
+ :class:`~django.contrib.postgres.search.SearchHeadline` function with
+ ``psycopg`` 3 (:ticket:`34486`).