summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-07-08Fixed 35506 -- Clarified initial references to URLconf in tutorial 1.lucas-r-oliveira
2024-07-04Removed outdated note about limitations in Clickjacking protection.Mariusz Felisiak
There is no need to list old browser versions or point users to workarounds.
2024-07-04Replaced usage of "patch" with more precise terms in contributing docs.Andreu Vallbona
2024-07-04Relocated database setup details to install docs to simplify tutorial 2.Kudz
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-07-04Fixed #35560 -- Made Model.full_clean() ignore GeneratedFields for constraints.Mark Gensler
Accessing generated field values on unsaved models caused a crash when validating CheckConstraints and UniqueConstraints with expressions.
2024-07-04Fixed #35520 -- Avoided opening transaction for read-only ModelAdmin requests.Jake Howard
2024-07-04Fixed #35569 -- Improved wording of invalid ForeignKey error message.Jacob Walls
2024-07-04Removed unneeded hyphens in "counterintuitive".Carlton Gibson
Follow-up to 65ad4ade74dc9208b9d686a451cd6045df0c9c3a which added counterintuitive to the wordlist. Removes unneeded (antiquated) hyphenated usages. See e.g. https://www.merriam-webster.com/dictionary/counterintuitive
2024-07-03Added stub release notes and release date for 5.0.7 and 4.2.14.Natalia
2024-07-03Refs #28900 -- Made Query.has_select_fields a computed property.Simon Charette
This should ensure it never drifts from Query.selected while maintaining backward compatibility.
2024-07-03Fixed #28900 -- Propagated all selected fields to combinator queries.Simon Charette
Previously, only the selected column aliases would be propagated and annotations were ignored.
2024-07-03Refs #28900 -- Made SELECT respect the order specified by values(*selected).Simon Charette
Previously the order was always extra_fields + model_fields + annotations with respective local ordering inferred from the insertion order of *selected. This commits introduces a new `Query.selected` propery that keeps tracks of the global select order as specified by on values assignment. This is crucial feature to allow the combination of queries mixing annotations and table references. It also allows the removal of the re-ordering shenanigans perform by ValuesListIterable in order to re-map the tuples returned from the database backend to the order specified by values_list() as they'll be in the right order at query compilation time. Refs #28553 as the initially reported issue that was only partially fixed for annotations by d6b6e5d0fd4e6b6d0183b4cf6e4bd4f9afc7bf67. Thanks Mariusz Felisiak and Sarah Boyce for review.
2024-07-03Fixed #35511 -- Documented when the py binary is unavailable on Windows.alexgmin
2024-07-01Fixed #23790 -- Warned about renaming AppConfig.label in ↵Andrew Miller
docs/ref/applications.txt.
2024-07-01Fixed typo in source file linking Sphinx extension.Michael
2024-06-28Refs #35561 -- Renamed Model.save()/asave() helper to a more specific name.nessita
2024-06-28Reverted "Fixed #35564 -- Improved readability of subclass identification."Sarah Boyce
This reverts commit f0d05a747f7a099e6c6bc58c42a787546d2212e7 due to a performance regression.
2024-06-28Refs #22712 -- Corrected deprecation of "all" argument in ↵Mariusz Felisiak
django.contrib.staticfiles.finders.find(). Features deprecated in Django 5.2 should be removed in Django 6.1.
2024-06-27Fixed #22712 -- Avoided name shadowing of "all" in ↵Andreu Vallbona
django.contrib.staticfiles.finders. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-06-27Fixed #35517, Refs #35515 -- Improved test coverage of shell command.Salvo Polizzi
2024-06-27Fixed #35564 -- Improved readability of subclass identification.Jaap Roes
2024-06-26Fixed 35561 -- Made *args and **kwargs parsing more strict in ↵nessita
Model.save()/asave().
2024-06-26Added references to the Django Discord server inside the FAQ docs.raffaella
2024-06-25Optimized admin docs images.Sarah Boyce
2024-06-25Refs #35380 -- Updated screenshots in intro docs.Sarah Boyce
2024-06-25Fixed #35558 -- Increased inline H3 headers color prominence in admin change ↵Sarah Boyce
page.
2024-06-25Fixed #35554, Refs #35060 -- Corrected deprecated *args parsing in ↵Adam Johnson
Model.save()/asave(). The transitional logic added to deprecate the usage of *args for Model.save()/asave() introduced two issues that this branch fixes: * Passing extra positional arguments no longer raised TypeError. * Passing a positional but empty update_fields would save all fields. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-06-25Refs #35380 -- Updated screenshots in admin docs.nessita
When listing users, ensure that user first and last name are diverse.
2024-06-25Used Query.add_annotation where appropriate.Simon Charette
This avoids manual .annotations and .append_annotation_mask manipulations.
2024-06-25Fixed #35540 -- Fixed the padding on admin login page.arjunomray
2024-06-25Fixed #34886 -- Modified sample use of lazy in delayed translations.lufafajoshua
Modified example to use python standard library function to lower the case of the string.
2024-06-24Migrated setuptools configuration to pyproject.toml.Claude Paroz
This branch migrates setuptools configuration from setup.py/setup.cfg to pyproject.toml. In order to ensure that the generated binary files have consistent casing (both the tarball and the wheel), setuptools version is limited to ">=61.0.0,<69.3.0". Configuration for flake8 was moved to a dedicated .flake8 file since it cannot be configured via pyproject.toml. Also, __pycache__ exclusion was removed from MANIFEST and the extras/Makefile was replaced with a simpler build command. Co-authored-by: Nick Pope <nick@nickpope.me.uk>
2024-06-24Fixed #35306 -- Documented fallback localization formats in templates when ↵lufafajoshua
localization is disabled.
2024-06-24Fixed #35545, Refs #32833 -- Fixed ContentTypeManager.get_for_models() crash ↵Sarah Boyce
in CreateModel migrations. Thank you to Csirmaz Bendegúz for the report and Simon Charettes for the review.
2024-06-24Fixed #35547 -- Added reset_queries to django.db.__all__.AjmalPonneth
2024-06-21Fixed Number.__str__() crash when float/decimal_value is None in expressions ↵Tim Graham
tests models.
2024-06-21Fixed #35461 -- Updated misleading django-debug-toolbar instructions.Rosana Rufer
The DjDT "handle" isn't visible on the polls application as the templates are missing <body> tags for brevity.
2024-06-21Fixed #35528 -- Added EmailMultiAlternatives.body_contains() helper method.Ronny Vedrilla
2024-06-21Cleaned up EmailMultiAlternatives docs.Sarah Boyce
2024-06-20Refs #35074 -- Avoided failed attempts to remove spatial indexes on nullable ↵Mariusz Felisiak
fields on MySQL. MySQL doesn't support spatial indexes on NULL columns, so there is no point in removing them.
2024-06-20Fixed #35537 -- Changed EmailMessage.attachments and ↵Jake Howard
EmailMultiAlternatives.alternatives to use namedtuples. This makes it more descriptive to pull out the named fields.
2024-06-20Refs #35404 -- Fixed padding of admin fieldset checkbox label.Vaarun Sinha
2024-06-20Fixed #35441 -- Documented Context and RequestContext keyword arguments.John Higgins
2024-06-18Fixed #12978 -- Added support for RSS feed stylesheets.Baptiste Mispelon
2024-06-18Fixed #35505 -- Added extrabody block to admin/base.html.stefan.ivic
2024-06-18Simplified OperationTestCase.alter_gis_model() test hook a bit.Mariusz Felisiak
This avoids passing "blank=False" and "srid=4326" to field classes, which are the default values, and removes special treatment for the "blank" parameter.
2024-06-18Restructured the EmailMultiAlternatives docs.Sarah Boyce
2024-06-17Fixed #35483 -- Added NUL (0x00) character validation to ModelChoiceFields.Alexander Lötvall
Applied the ProhibitNullCharactersValidator to ModelChoiceField and ModelMultipleChoiceField. Co-authored-by: Viktor Paripás <viktor.paripas@gmail.com> Co-authored-by: Vasyl Dizhak <vasyl@dizhak.com> Co-authored-by: Arthur Vasconcelos <vasconcelos.arthur@gmail.com>
2024-06-14Refs #34881 -- Fixed ↵Mariusz Felisiak
OperationTests.test_rename_m2m_field_with_2_references() test on Oracle.
2024-06-14Fixed mail.tests.MailTests.test_backend_arg() test on Python 3.13+.Mariusz Felisiak
There is no point in asserting Python error messages.