| Age | Commit message (Collapse) | Author |
|
Modified example to use python standard library function
to lower the case of the string.
Backport of 136a5f94099e428dd57572ebd16905fb25ef227e from main.
|
|
Backport of bcad5ad92b1dad2874453dee7a480e9b9f29aad5 from main
|
|
Backport of ba4ffdc8771c2f38cf6de26a2b82bbceea2b933a from main
|
|
Backport of 5f3cdf219de71021cc5b965695dbe0c881c0a4f1 from main
|
|
Backport of 2d3531af234c4bc2b78f8b3d8e916ec3ac33fb24 from main
|
|
Backport of 177e6493961dfcdafb44e5b02894bf4201050910 from main
|
|
The timezone documentation for Postgres mentions the behavior of
time zone conversion, but links to the wrong setting that controls the
behavior.
Postgres will not return datetimes in the time zone set by the
TIME_ZONE setting, but rather the time zone of the database connection,
which is defined by DATABASES.TIME_ZONE setting falling back to UTC.
This corrects the link in the documentation and adds note that there
are two distinct TIME_ZONE settings and the one most are familiar with
is not considered for PostgreSQL time zone conversion.
Backport of 6e195b800aed7d6a0d2a4c073d8f3507f6beb126 from main
|
|
docs.
`rel` attribute is not valid on `<link>` tags.
Backport of 368a8a3a83885a13776a530920f0317a40e7989d from main
|
|
Backport of 2152246c0a4408df7716c84b20bd0fa79a31179b from main
|
|
keys by SQLite.
Backport of b3dc80682e678b20c89fb2a430c0bc77960a29ac from main
|
|
CACHE_MIDDLEWARE_SECONDS setting.
Backport of a5365339eaee043895a79dbbdd7462f1399136e5 from main
|
|
https://github.com/psf/black/releases/tag/24.1.0
Backport of 305757aec19c9d5111e4d76095ae0acd66163e4b from main
|
|
Backport of 8570e091d025c4aacc6b76597a3322030c2f8162 from main
|
|
Backport of 12ffcfc350a19bbfbc203126a9b6c84b5e0d0ba2 from main
|
|
Backport of ec7651586d2d94e1ccd8f905c6a3776ad936b62d from main
|
|
Backport of 8fcd7b01eec85a509762dd8dbb3a27b7ab521e94 from main
|
|
Backport of d4c583682e7afc2b4e953b8c85af17f1c1514ba9 from main
|
|
variables.
Django 5.0+ required asgiref 3.7+, and this warning is obsolete for
asgiref 3.7+ since
https://github.com/django/asgiref/commit/be6635e0e79009e55cf7a999614186f061f9f09b.
Backport of 594873befbbec13a2d9a048a361757dd3cf178da from main
|
|
identifier for the field.
`id_for_label` is blank for widgets with multiple inputs such as radios
and multiple checkboxes. Therefore , `help_text` for fields using these
widgets cannot currently be associated using `aria-describedby`.
`id_for_label` is being used as a guard to avoid incorrectly adding
`aria-describedby` to those widgets.
This change uses `auto_id` as the unique identified for the fields
`help_text`. A guard is added to avoid incorrectly adding
`aria-describedby` to inputs by checking the widget's `use_fieldset`
attribute. Fields rendered in a `<fieldset>` should have
`aria-describedby` added to the `<fieldset>` and not every `<input>`.
Backport of 292f1ea90f90ff140617299a25884c8fda24aa64 from main
|
|
password_changed callback.
Backport of 61c305f298da1b4079a80721c861d0663dc8717e from main
|
|
Backport of 9b18af4f6f12b9d25157e0b5afc3dca198f6dd06 from main
|
|
Backport of b412e5645a65a632f0147e50ceecb60acd33bb4d from main
|
|
Backport of 46df3ab244e1688bd186f0bfbfea6a354097a910 from main
|
|
transaction rollbacks.
Backport of aa80b357fbef46e5b6faa08d63bcfd4fe21f3776 from main
|
|
Backport of 8d9c0e4e244111ea3839434d8812c8573cfbf00e from main
|
|
fixtures docs.
Also, added details about loading multiple fixtures and unified line wrapping
at 79 cols.
Co-Authored-By: Aniketh Babu <anikethbabu@gmail.com>
Co-Authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Co-Authored-By: Natalia Bidart <124304+nessita@users.noreply.github.com>
Backport of 334dc073b1d9c89692aa5b11d362fb1cceae7a4a from main
|
|
Backport of 718b32c6918037cfc746d7867333d79a3c887a8c from main
|
|
Backport of 8adc7c86ab85ed91e512bc49056e301cbe1715d0 from main
|
|
Backport of f4e72e6523e6968d9628dfbff914ab57dbf19e6b from main
|
|
Follow up to 6c57c08ae52f86df843fccb5a3c1c6c45a10a26f.
|
|
functools.lru_cache in migrations.
`@functools.cache` and `@functools.lru_cache` return an object of type
`functools._lru_cache_wrapper` which prevented the migrations serializer from
working. Simply using the existing `FunctionTypeSerializer` for this additional
type works as expected.
|
|
Functions decorated with a decorator that is properly wrapped, e.g. by
using `@functools.wraps`, are already supported.
|
|
|
|
|
|
|
|
ChoiceField's choices.
|
|
|
|
Follow up to ad6bb20557f5c87de26aeb3afb061af942a8cc17.
|
|
validation example.
|
|
|
|
|
|
|
|
|
|
functions.
|
|
decorators in async topic.
Follow up to 38e391e95fe5258bc6d2467332dc9cd44ce6ba52.
|
|
|
|
text.
Thanks Nimra for the initial patch.
Thanks Natalia Bidart, Thibaud Colas, David Smith, and Mariusz Felisiak
for reviews.
|
|
related methods test clients.
|
|
This bumps minimum supported versions of selenium to the first release
to support Python 3.10.
|
|
|