| Age | Commit message (Collapse) | Author |
|
Forwardport of cbf7e7dc52db2834e95817bbbfb56a693c83b84f from stable/2.1.x.
|
|
Forwardport of 734e2c65ae54552b61ad34105ba4debe936fe223 from stable/2.1.x.
|
|
|
|
|
|
|
|
Regression in 3a148f958dddd97c1379081118c30fbede6b6bc4.
|
|
|
|
list" crash.
|
|
|
|
signal receivers.
|
|
|
|
|
|
Refs #29600 -- Removed usage of django.utils.datetime_safe in migrations.
|
|
|
|
|
|
|
|
SelectDateWidget.value_from_datadict().
|
|
The only effect would be if items in Atom feeds had a published date
year of < 1000 (ensuring those years are padded with leading zeros).
|
|
Removed in 244cc401559e924355cf943b6b8e66ccf2f6da3a.
|
|
|
|
unique_together validation.
|
|
|
|
DatabaseFeatures.can_use_chunked_reads.
|
|
|
|
The issue was fixed as a side effect of implementing RemoveField's reduction
of DeleteModel to a DeleteModel in ad82900ad94ed4bbad050b9993373dafbe66b610.
|
|
|
|
|
|
docs/topics/db/examples/many_to_many.txt.
|
|
|
|
and password.
|
|
|
|
The PostgreSQL concat() function handles nulls and non-text values better than
the || operator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stream.
|
|
It isn't required anymore since AlterTogetherOperations can be reduced into
CreateModels which can reduce DeleteField operations.
|
|
Thanks Akshesh Doshi for the initial patch.
|
|
This should alleviate the side effects of disabling the AlterFooOperation
reduction with RemoveField to fix refs #28862 during migration squashing
because CreateModel can perform a reduction with RemoveField.
Thanks Nick Pope for the review.
|
|
AlterFooTogether operations cannot be swapped with RemoveField operations on
the same model as they could be removing the the same field as well.
Since AlterFooTogether operations don't track what their previous value was,
it's impossible to determine whether or not the optimization is safe so the
only way to proceed is to disable the optimization.
Thanks Ramiro Morales for the in-depth analysis of the issue.
Refs #24828
|
|
|
|
Thanks Sassan Haradji for the report.
|
|
|
|
As of 301de774c21d055e9e5a7073e5bffdb52bc71079.
|
|
|