summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-10-29Fixed #35871 -- Corrected example on altering the base_fields attribute in ↵antoliny0919
forms docs.
2024-10-28Refs #34900 -- Removed usage of deprecated glob.glob1().earthyoung
2024-10-26Refs #35742 -- Used curly quote in add user form message.Claude Paroz
2024-10-25Improved the writing documentation contributing guide.Paolo Melchiorre
2024-10-25Refs #35844 -- Corrected expected error messages in commands tests on Python ↵Tainara Palmeira
3.14+. Updated CommandTests.test_subparser_invalid_option and CommandDBOptionChoiceTests.test_invalid_choice_db_option to address changes in Python 3.14+ error handling.
2024-10-25Made GitHub actions display all warnings in Python tests.Mariusz Felisiak
2024-10-25Improved readability of triage workflow image by increasing its size and ↵mbcodes
color contrast.
2024-10-25Refs #35803 -- Added support for __covers GIS lookup on MySQL.Mariusz Felisiak
2024-10-25Fixed #35803 -- Added support for Collect, GeoHash, and IsValid on MariaDB ↵Mariusz Felisiak
11.7+.
2024-10-25Refs #35803 -- Added support for __coveredby GIS lookup on MySQL and MariaDB ↵Mariusz Felisiak
11.7+.
2024-10-24Refs #26029 -- Extended docs for the StorageHandler default instance.Carlton Gibson
Third-party packages that provide storages need to rely on the StorageHandler API in order to allow users to use the `storages` module instance to override defaults. Minimally documenting these methods allows package authors to rely on them. Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
2024-10-24Refs #35844 -- Fixed tests for test --parallel option on Python 3.14+.Mariusz Felisiak
"forkserver" is the new default on POSIX systems, and Django doesn't support parallel tests with "forkserver": https://github.com/python/cpython/commit/b65f2cdfa77d8d12c213aec663ddaaa30d75a4b2
2024-10-24Used webbroswer module in docs Makefile.Paolo Melchiorre
2024-10-24Updated authentication solutions list on using REMOTE_USER how-to.AfiMaameDufie
2024-10-24Fixed #22828 -- Warned that ModelAdmin get hooks return the property itself ↵koresi
rather a copy.
2024-10-24Refs #35803 -- Added more tests for __coveredby and __covers GIS lookups.Mariusz Felisiak
Co-authored-by: David Smith <smithdc@gmail.com>
2024-10-23Doc'd that unusable passwords are defined by metadata in the password field.David D Lowe
2024-10-23Fixed #28999 -- Documented how to reverse a class-based view by instance.Clifford Gama
Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
2024-10-23Refs #28999 -- Added tests for reversing a class-based view by instance.Clifford Gama
2024-10-23Fixed #35731 -- Extended db_default docs.Yash
This added a missing db_default reference in docs/topics/db/models.txt, and added a reference to the DatabaseDefault object.
2024-10-22Refs #34406 -- Added support for GDAL curved geometries.David Smith
Co-authored-by: Fabien Le Frapper <contact@fabienlefrapper.me>
2024-10-22Restructured how-to docs landing page.Daniele Procida
Previously, this was a bare list of sub-pages, not in any discernible order, and hard to parse. Now the sub-pages are grouped in sections by topic. It's unlikely to be the final word on how this material is arranged, but it's a clear improvement on the existing arrangement and provides a good basis for next steps.
2024-10-22Added missing alt attribute to <img> tag in docs.ssanger
2024-10-22Fixed example indentation in howto/overriding-templates.txt.Mariusz Felisiak
2024-10-21Updated Hypercorn links in docs/howto/deployment/asgi/hypercorn.txt.amirreza sohrabi far
2024-10-21Updated tutorial part count from 7 to 8 in docs/intro/reusable-apps.txt.Mariusz Felisiak
2024-10-17Fixed #35841 -- Restored support for DB-IP databases in GeoIP2.Nick Pope
Thanks Felix Farquharson for the report and Claude Paroz for the review. Regression in 40b5b1596f7505416bd30d5d7582b5a9004ea7d5. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-10-17Refs #35841 -- Adjusted GeoIP2 tests for easier test case extension.Nick Pope
These changes will make it easier to introduce tests for alternate databases that may have different results without the need to duplicate lots of the tests definition.
2024-10-17Refs #35841 -- Updated GeoIP2 test database files.Nick Pope
The mmdb files were taken from https://github.com/maxmind/MaxMind-DB/commit/679e37e18a4a3009949c2213ec2c0bb8090c10c7.
2024-10-17Fixed #35845 -- Updated DomainNameValidator to require entire string to be a ↵Justin Thurman
valid domain name. Bug in 4971a9afe5642569f3dcfcd3972ebb39e88dd457. Thank you to kazet for the report and Claude Paroz for the review.
2024-10-17Fixed #26322 -- Consolidated lazy relationships details in ↵Clifford Gama
docs/ref/models/fields.txt. Reorganized docs to list and explain the types of lazy relationships that can be defined in related fields. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-10-17Refs #35844 -- Used asgiref.sync.iscoroutinefunction() instead of deprecated ↵Mariusz Felisiak
asyncio.iscoroutinefunction(). Fixes DeprecationWarning: 'asyncio.iscoroutinefunction' is deprecated and slated for removal in Python 3.16; use inspect.iscoroutinefunction() instead.
2024-10-17Fixed #35795 -- Added role="button" to links acting as buttons for screen ↵Jay Patel
readers.
2024-10-16Refs #35844 -- Added Python 3.14 to daily builds.Mariusz Felisiak
2024-10-16Expanded contributor docs on getting feedback from the wider community.Maryam Yusuf
2024-10-16Refs #35727 -- Updated response.content.decode calls to use the ↵SaJH
HttpResponse.text property. Signed-off-by: SaJH <wogur981208@gmail.com>
2024-10-16Fixed #35727 -- Added HttpResponse.text property.SaJH
Signed-off-by: SaJH <wogur981208@gmail.com>
2024-10-15Fixed #35782 -- Allowed overriding password validation error messages.Ben Cail
2024-10-15Fixed #35656 -- Added an autodetector attribute to the makemigrations and ↵leondaz
migrate commands.
2024-10-15Fixed #35682 -- Updated docstrings for base view classes which require a ↵Yash
response mixin.
2024-10-15Refs #35782 -- Documented the get_help_text methods in password validators.Ben Cail
2024-10-14Fixed #35744 -- Relabelled external aliases of combined queries.Simon Charette
Just like normal queries, combined queries' outer references might fully resolve before their reference is assigned its final alias. Refs #29338. Thanks Antony_K for the report and example, and thanks Mariusz Felisiak for the review.
2024-10-14Refs #373 -- Added additional validations to tuple lookups.Bendeguz Csirmaz
2024-10-11Fixed docs build on Sphinx 8.1+.Mariusz Felisiak
Sphinx 8.1 added :cve: role, so there is no need to define it in Django: - https://github.com/sphinx-doc/sphinx/pull/11781 This also changes used URL to the one used by Python and soonish to be used by Sphinx itself: - https://github.com/sphinx-doc/sphinx/pull/13006
2024-10-11Fixed #35612 -- Added documentation on how the security team evaluates reports.Sarah Boyce
Co-authored-by: Joshua Olatunji <joshua+github@etentlabs.com>
2024-10-10Fixed #35717 -- Reduced Create/RemoveCollation operations when optimizing ↵Adam Johnson
migrations.
2024-10-10Fixed #35789 -- Improved the error message raised when the tag must be first ↵ekinertac
in the template.
2024-10-10Fixed #35103 -- Used provided error code and message when fields is set ↵gabn88
without a condition on UniqueConstraint.
2024-10-10Fixed docstring for django.core.exceptions module.Baptiste Mispelon
2024-10-10Fixed typo in docs/releases/5.2.txt.Mariusz Felisiak