summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2024-01-29[5.0.x] Fixed #35141 -- Clarified the expected type of ↵Alexander Lazarević
CACHE_MIDDLEWARE_SECONDS setting. Backport of a5365339eaee043895a79dbbdd7462f1399136e5 from main
2024-01-26[5.0.x] Applied Black's 2024 stable style.Mariusz Felisiak
https://github.com/psf/black/releases/tag/24.1.0 Backport of 305757aec19c9d5111e4d76095ae0acd66163e4b from main
2024-01-24[5.0.x] Fixed #34971 -- Doc'd additional loggers.duranbe
Co-authored-by: duranbe <benoit.durand.mail@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Backport of 0450c9bdf1773297c61b4e36850ab997ffd5dde2 from main
2024-01-20[5.0.x] Updated "Dive Into Python" links.Emmanuel Katchy
Backport of 12ffcfc350a19bbfbc203126a9b6c84b5e0d0ba2 from main
2024-01-16[5.0.x] Used more specific link to email backends in EMAIL_BACKEND docs.Baptiste Mispelon
Backport of 1592f0ac220c1fd37779f6d33efb28ebd60e2e66 from main
2024-01-15[5.0.x] Fixed #34949 -- Clarified when UniqueConstraints with ↵jordanbae
include/nulls_distinct are not created. Backport of 4fec1d2ce37241fb8fa001971c441d360ed2a196 from main
2023-12-30[5.0.x] Fixed #35069 -- Fixed typo in docs/ref/forms/api.txt.Salvo Polizzi
Backport of dc26a3d563b1e1d98d40f5d351a6a61c34f12d98 from main
2023-12-28[5.0.x] Corrected code-block directives in docs.Mariusz Felisiak
Backport of 0be6dde81721e4a61caf45422987c599ebfcfe56 from main
2023-12-28[5.0.x] Improved DEFAULT_FROM_EMAIL/SERVER_EMAIL docs.David D Lowe
Co-authored-by: nessita <124304+nessita@users.noreply.github.com> Backport of 61aae838f77c2d3f1bb2b50095cdf3d79afffb02 from main
2023-12-19[5.0.x] Doc'd that users with unusable passwords cannot request a password ↵Amin Shah Gilani
reset. Backport of 47033bfd486206d6809068c838d45b999e5c1bd2 from main
2023-12-15[5.0.x] Added missing import in docs/ref/models/expressions.txt.Viicos
Backport of e28bd6776dfedc1ad4dce4719e4303ca34019a83 from main
2023-12-14[5.0.x] Added clarifications about the DATABASES.TIME_ZONE setting in docs.David Sanders
These include: - Doc'd which is the default used when DATABASES.TIME_ZONE is None. - Doc'd that the database connection's time zone setting is set for PostgreSQL and clarified that it may be necessary to set it to the same value as TIME_ZONE. Co-authored-by: David Smith <39445562+smithdc1@users.noreply.github.com> Co-authored-by: Natalia Bidart <124304+nessita@users.noreply.github.com> Backport of acfc7e3a735ffa41dcd9ad7f4f8fef97c1a2c3c6 from main
2023-12-08[5.0.x] Fixed #35016 -- Doc'd that DATABASES["OPTIONS"] are passed to new ↵Yashas
PostgreSQL connections. Backport of eeb2119985d9879b1d9ac3730ea0b53c0c019221 from main
2023-12-01[5.0.x] Improved wording in auth.models.User field docs.Adrien
Co-authored-by: Lily Foote <code@lilyf.org> Backport of 79099a7ba454581ab521fcb4ea61fc6ed3dccf26 from main
2023-11-29[5.0.x] Updated conditions to retrieve primary keys in bulk_create() docs.KimSia Sim
Backport of c9ce764f59c1e809b210337980ae10c4b1d0f9be from main.
2023-11-28[5.0.x] Removed link to lawrence.com in contrib.sites docs.Adam Johnson
lawrence.com has since become a redirect to LJWorld.com, making the link pointless. Backport of 9e7ac5890147a8271eb5eb19bb88ab93dadc6c6d from main
2023-11-28[5.0.x] Refs #34380 -- Added FORMS_URLFIELD_ASSUME_HTTPS transitional setting.Mariusz Felisiak
This allows early adoption of the new default "https". Backport of a4931cd75a1780923b02e43475ba5447df3adb31 from main.
2023-11-25[5.0.x] Refs #34380 -- Improved docs for forms.URLField.assume_scheme.Adam Johnson
Backport of 0203771b626c27c1af24cdeb0e425ccca3d19ad5 from main
2023-11-23[5.0.x] Fixed #34990 -- Changed link to OWASP in CSRF docs.Tim Schilling
The OWASP site is the standard resource for web application security information. Backport of aceee39d44994df20d13104e55ae61845d7a1e95 from main
2023-11-16[5.0.x] Refs #32819 -- Used auto_id instead of id_for_label as unique ↵David Smith
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
2023-11-15[5.0.x] Refs #33690 -- Added missing data-theme selector to example in ↵William Hayes
theming support docs. Backport of 640283711e6c8d25ad0e3c97453cd178a3e4d6a6 from main
2023-11-14[5.0.x] Refs #34944 -- Propagated system checks for GeneratedField.output_field.Mariusz Felisiak
Backport of c705625ebff0141ed2b95dd3c8174bda8270a47f from main
2023-11-14[5.0.x] Fixed #34944 -- Made GeneratedField.output_field required.Mariusz Felisiak
Regression in f333e3513e8bdf5ffeb6eeb63021c230082e6f95. Backport of 5875f03ce61b85dfd9ad34f7b871c231c358d432 from main
2023-11-09[5.0.x] Fixed #34457 -- Restored output for makemigrations --check.Adam Johnson
Co-authored-by: David Sanders <shang.xiao.sanders@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Backport of f7389c4b07ceeb036436e065898e411b247bca78 from main
2023-11-09[5.0.x] Fixed typos in docs/ref/models/fields.txt.Jacob Walls
Backport of 427f0ed98d7ecf4381cebd4f7773f761e2446851 from main
2023-11-02[5.0.x] Fixed #34813 -- Doc'd usage of integrity HTML attribute with ↵Patrick Rauscher
ManifestStaticFilesStorage. Backport of 116e225266c511dfc0bfc96c8497e9c8aaa4d004 from main
2023-10-28[5.0.x] Fixed typos in docs/ref/models/expressions.txt.Sarah Boyce
Backport of 8992a0489c01ac8ab7283264a315c005511323e2 from main
2023-10-27[5.0.x] Doc'd writing integration tests for the system check framework.Marc Gibbons
Backport of 8d9c0e4e244111ea3839434d8812c8573cfbf00e from main
2023-10-27[5.0.x] Fixed typo in docs/ref/contrib/gis/geos.txt.Izzy Hyman
Backport of c42250a7039a5ace1b482b30c6a1359b748cae65 from main
2023-10-25[5.0.x] Added missing pycon directives in various docs.Mariusz Felisiak
Backport of 718b32c6918037cfc746d7867333d79a3c887a8c from main
2023-10-25[5.0.x] Fixed #27403 -- Doc'd that QuerySet.prefetch_related() doesn't ↵Tim Bell
guarantee transactional consistency. Added a note about the potential race condition in prefetch_related() that could produce an inconsistent result, one that does not correspond to any point in the database history. Backport of ee104251c403fbac83b8475163ff2ac01c567d25 from main
2023-10-11[5.0.x] Fixed #34808 -- Doc'd aggregate function's default argument.lufafajoshua
Backport of 8adc7c86ab85ed91e512bc49056e301cbe1715d0 from main
2023-10-07[5.0.x] Added missing import in docs/ref/contrib/contenttypes.txt.sag᠎e
Backport of 958e4cfe42190539af9386e753d59cd487bd8847 from main
2023-10-06[5.0.x] Refs #32275 -- Added scrypt password hasher to PASSWORD_HASHERS ↵ume
setting docs. Backport of 90c75dc4f37bee19b7c3790519d187e38e293800 from main
2023-10-05[5.0.x] Refs #31435 -- Doc'd potential infinite recursion when accessing ↵David Sanders
model fields in __init__. Backport of e47298aec4fa04416e7082331fbd44bd9f2662aa from main
2023-10-05[5.0.x] Fixed #34759 -- Confirmed support for SpatiaLite 5.1.pieterck
Thanks The Epic Dev for helping with tests. Backport of 0989cf13e70f52d5b241aa176eb74a680a282d09 from main.
2023-10-05[5.0.x] Refs #22936 -- Doc'd Lookup.prepare_rhs.Mariusz Felisiak
Backport of 91cb2d0b487acc56d886612a7251b9ba555d71b4 from main
2023-10-04[5.0.x] Corrected wrap_socket() reference in docs/ref/settings.txt.Mariusz Felisiak
Backport of f9cdecfb0de40698eb2ce44c04068bb091fa8998 from main
2023-10-04[5.0.x] Fixed CVE-2023-43665 -- Mitigated potential DoS in ↵Natalia
django.utils.text.Truncator when truncating HTML text. Thanks Wenchao Li of Alibaba Group for the report.
2023-10-02[5.0.x] Fixed #32602 -- Clarified wording of TestCase class.faishalmanzar
Backport of f4e72e6523e6968d9628dfbff914ab57dbf19e6b from main
2023-09-27[5.0.x] Added warning about flatpages and untrusted users.Mariusz Felisiak
Backport of 571bab98879578b6ef54ee654ead06736855767d from main
2023-09-21[5.0.x] Refs #34808 -- Doc'd that aggregation functions on empty groups can ↵David Sanders
return None. Backport of 78b5c9075348aa12da2e024f6ece29d1d652dfdd from main
2023-09-18Fixed #33651 -- Added support for prefetching GenericForeignKey.Clément Escolano
Co-authored-by: revanthgss <revanthgss@almabase.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2023-09-18Fixed #34560 -- Updated admin's jQuery to 3.7.1.Mariusz Felisiak
2023-09-16Fixed #31558 -- Added support for boolean attribute on properties in ↵Ryanwalker277
ModelAdmin.list_display.
2023-09-16Corrected QuerySet.prefetch_related() note about GenericRelation().Mariusz Felisiak
GenericRelation is a reverse generic relationship so it's always homogeneous. Mentioning this as a restriction is confusing.
2023-09-14Fixed #24561 -- Added support for callables on model fields' choices.Natalia
2023-09-14Doc'd HttpResponse.cookies.Michele Mazzucchi
2023-09-13Refs #31949 -- Made make_middleware_decorator to work with async functions.Ben Lomax
2023-09-11Fixed #34752 -- Fixed handling ASGI http.disconnect for streaming responses.Sam Toyer