summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-11-04 09:30:23 +0100
committerGitHub <noreply@github.com>2022-11-04 09:30:23 +0100
commit7b0e9ea53ca99de2f485ec582f3a79be34b531d4 (patch)
tree06b78217b7f974b5179d6c145955a869a0a875b9 /docs
parent0f4964535cb81c12303dd103c4bdba4891c99c2c (diff)
Fixed #34138 -- Avoided table rebuild when adding inline m2m fields on SQLite.
Regression in 2f73e5406d54cb8945e187eff302a3a3373350be. Thanks David Wobrock for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.4.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/4.1.4.txt b/docs/releases/4.1.4.txt
index da3810875f..21040ebab6 100644
--- a/docs/releases/4.1.4.txt
+++ b/docs/releases/4.1.4.txt
@@ -9,4 +9,5 @@ Django 4.1.4 fixes several bugs in 4.1.3.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.1 that caused an unnecessary table rebuilt
+ when adding ``ManyToManyField`` on SQLite (:ticket:`34138`).