summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorguro-Ishiguro <guro120411@gmail.com>2025-12-23 00:30:05 +0900
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-22 20:33:39 -0500
commit847b2badccbd87fc3e657725eb316b092265912d (patch)
tree3579dc4cfe99b60f06d9a47f36c0826dd13087a6 /docs
parentf31445f2e7e1091ab4de81b9c994052fc6842e22 (diff)
[6.0.x] Fixed #36818 -- Ensured SQLite connection before accessing max_query_params.
Regression in 358fd21c47cdf7bda520ce73c5cfd82bba57827b. Backport of 84bae9c22a8ae7663c56cce5e0c611ea7c17fce1 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/6.0.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/6.0.1.txt b/docs/releases/6.0.1.txt
index 36e533a888..1580512409 100644
--- a/docs/releases/6.0.1.txt
+++ b/docs/releases/6.0.1.txt
@@ -20,3 +20,7 @@ Bugfixes
* Fixed a bug where management command colorized help (introduced in
Python 3.14) ignored the :option:`--no-color` option and the
:envvar:`DJANGO_COLORS` setting (:ticket:`36376`).
+
+* Fixed a regression in Django 6.0 that caused
+ :meth:`~django.db.models.query.QuerySet.bulk_create` to crash
+ when introspecting the connection on SQLite (:ticket:`36818`).