| Age | Commit message (Collapse) | Author |
|
error message.
|
|
lists.
Regression in fc6528b25ab1834be1a478b405bf8f7ec5cf860c.
|
|
AttributeError.
|
|
methods.
|
|
|
|
functions.
|
|
|
|
password field.
|
|
Unnecessary since their introduction in
fa75b2cb512409116b6f1b5229d6f99074d8e452.
|
|
required fields.
|
|
|
|
|
|
user can't create databases.
Regression in e776dd2db677d58dcb50aea20d3bb191537df25b.
Thanks Tim Graham for the review.
|
|
Regression in 7d96f0c49ab750799860e42716d7105e11de44de.
|
|
A race condition happened when the object didn't already exist and
another process/thread created the object before update_or_create()
did and then attempted to update the object, also before update_or_create()
saved the object. The update by the other process/thread could be lost.
|
|
|
|
|
|
|
|
|
|
|
|
Thanks Akshesh Doshi for the initial implementation.
|
|
unsupported.
|
|
- Added mixin to make tests more DRY.
- Removed redundant equality tests.
|
|
|
|
|
|
Regression in 3a148f958dddd97c1379081118c30fbede6b6bc4.
|
|
|
|
list" crash.
|
|
|
|
signal receivers.
|
|
|
|
|
|
Refs #29600 -- Removed usage of django.utils.datetime_safe in migrations.
|
|
|
|
|
|
SelectDateWidget.value_from_datadict().
|
|
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.
|
|
|
|
|
|
and password.
|
|
|
|
The PostgreSQL concat() function handles nulls and non-text values better than
the || operator.
|
|
|
|
|
|
|
|
|
|
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
|