summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-10 06:53:32 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-10 06:54:51 +0200
commit9ec6eca136cbc906f55e5844732cde6ea55b2152 (patch)
treee1d4207e1a0a655af34ade03fec3c511eca1d0d3
parent2b2500021b502318866e605f6c031f122703fe4b (diff)
[3.0.x] Refs #31682 -- Doc'd minimal sqlparse version in Django 2.2.
Support for sqlparse < 0.2.2 was broken in 40b0a58f5ff949fba1072627e4ad11ef98aa7f36 because is_whitespace property was added in sqlparse 0.2.2. Backport of 4339f2aff272bceabd67e452c65bcfe0700b3f09 from master
-rw-r--r--docs/releases/2.2.txt2
-rw-r--r--docs/releases/3.0.txt2
2 files changed, 1 insertions, 3 deletions
diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt
index 195665b158..b3a815fbb1 100644
--- a/docs/releases/2.2.txt
+++ b/docs/releases/2.2.txt
@@ -331,7 +331,7 @@ change shouldn't have an impact on your tests unless you've customized
``sqlparse`` is required dependency
-----------------------------------
-To simplify a few parts of Django's database handling, `sqlparse
+To simplify a few parts of Django's database handling, `sqlparse 0.2.2+
<https://pypi.org/project/sqlparse/>`_ is now a required dependency. It's
automatically installed along with Django.
diff --git a/docs/releases/3.0.txt b/docs/releases/3.0.txt
index 51ca584ecb..2bfd7d4719 100644
--- a/docs/releases/3.0.txt
+++ b/docs/releases/3.0.txt
@@ -571,8 +571,6 @@ Miscellaneous
* ``alias=None`` is added to the signature of
:meth:`.Expression.get_group_by_cols`.
-* Support for ``sqlparse`` < 0.2.2 is removed.
-
* ``RegexPattern``, used by :func:`~django.urls.re_path`, no longer returns
keyword arguments with ``None`` values to be passed to the view for the
optional named groups that are missing.