| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-11-01 | Fixed #35837 -- Added missing alters_data=True to QuerySet and UserManager ↵ | Sarah Boyce | |
| methods. Thank you to Jason Chambers for the report and to Mariusz Felisiak for the review. | |||
| 2024-11-01 | Refs #373 -- Used a feature flag to disable composite subquery test on MySQL. | Simon Charette | |
| 2024-10-31 | Updated the "Built-in Field classes" section reference to a link. | antoliny0919 | |
| 2024-10-31 | Fixed #35876 -- Displayed non-ASCII fieldset names when rendering ↵ | Sarah Boyce | |
| ModelAdmin.fieldsets. Thank you to Namhong Kim for the report, and to Mariusz Felisiak and Marijke Luttekes for the review. Regression in 01ed59f753139afb514170ee7f7384c155ecbc2d. | |||
| 2024-10-31 | Fixed #35180 -- Recreated PostgreSQL _like indexes when changing between ↵ | Ben Cail | |
| TextField and CharField field types. | |||
| 2024-10-30 | Fixed #35866 -- Clarified the positioning Python magic methods on models in ↵ | maddrum | |
| the internal style guide. | |||
| 2024-10-30 | Fixed #35856 -- Added QuerySet.explain() support for MEMORY/SERIALIZE option ↵ | Anthony Joseph | |
| on PostgreSQL 17+. | |||
| 2024-10-30 | Added missing lang attributes to html elements in docs. | Johanan-Ayadata | |
| 2024-10-30 | Clarified default behavior when fields and fieldsets are not set on ModelAdmin. | aruseni | |
| 2024-10-30 | Fixed #35864 -- Documented EmailMessage.connection is ignored when using ↵ | Mike Edmunds | |
| send_messages(). | |||
| 2024-10-30 | Fixed #35873 -- Corrected Form.as_table() call in form docs. | antoliny0919 | |
| 2024-10-29 | Refs #35844 -- Expanded compatibility for expected error messages in command ↵ | Tainara Palmeira | |
| tests on Python 3.12 and 3.13. Updated CommandTests.test_subparser_invalid_option and CommandDBOptionChoiceTests.test_invalid_choice_db_option to use assertRaisesRegex() for compatibility with modified error messages in Python 3.12, 3.13, and 3.14+.. | |||
| 2024-10-29 | Corrected note on importing fields in model field reference docs. | aruseni | |
| 2024-10-29 | Removed unneeded OS reference on running the test suite in contributing docs. | Maria Hynes | |
| This is not needed as the console snippet has buttons that allows the user to choose their OS. | |||
| 2024-10-29 | Fixed typo in ref/models/fields.txt. | Clifford Gama | |
| 2024-10-29 | Refs #35581 -- Reduced boilerplate in mail tests. | Mike Edmunds | |
| 2024-10-29 | Refs #35581 -- Identified mail tests that check for Python 2 behavior. | Mike Edmunds | |
| This also removed a duplicate CTE case (that used to be distinct in Python 2). | |||
| 2024-10-29 | Refs #35581 -- Verified attachments in the generated message in mail tests. | Mike Edmunds | |
| This also removed send() calls, as this doesn't check the serialized content, and the backend tests cover sending. | |||
| 2024-10-29 | Refs #35581 -- Clarified some test names and comments in mail tests. | Mike Edmunds | |
| 2024-10-29 | Fixed #35868 -- Removed unneeded AttributeError catching in collectstatic's ↵ | Peter Ruszel | |
| delete_file(). | |||
| 2024-10-29 | Fixed #35871 -- Corrected example on altering the base_fields attribute in ↵ | antoliny0919 | |
| forms docs. | |||
| 2024-10-28 | Refs #34900 -- Removed usage of deprecated glob.glob1(). | earthyoung | |
| 2024-10-26 | Refs #35742 -- Used curly quote in add user form message. | Claude Paroz | |
| 2024-10-25 | Improved the writing documentation contributing guide. | Paolo Melchiorre | |
| 2024-10-25 | Refs #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-25 | Made GitHub actions display all warnings in Python tests. | Mariusz Felisiak | |
| 2024-10-25 | Improved readability of triage workflow image by increasing its size and ↵ | mbcodes | |
| color contrast. | |||
| 2024-10-25 | Refs #35803 -- Added support for __covers GIS lookup on MySQL. | Mariusz Felisiak | |
| 2024-10-25 | Fixed #35803 -- Added support for Collect, GeoHash, and IsValid on MariaDB ↵ | Mariusz Felisiak | |
| 11.7+. | |||
| 2024-10-25 | Refs #35803 -- Added support for __coveredby GIS lookup on MySQL and MariaDB ↵ | Mariusz Felisiak | |
| 11.7+. | |||
| 2024-10-24 | Refs #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-24 | Refs #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-24 | Used webbroswer module in docs Makefile. | Paolo Melchiorre | |
| 2024-10-24 | Updated authentication solutions list on using REMOTE_USER how-to. | AfiMaameDufie | |
| 2024-10-24 | Fixed #22828 -- Warned that ModelAdmin get hooks return the property itself ↵ | koresi | |
| rather a copy. | |||
| 2024-10-24 | Refs #35803 -- Added more tests for __coveredby and __covers GIS lookups. | Mariusz Felisiak | |
| Co-authored-by: David Smith <smithdc@gmail.com> | |||
| 2024-10-23 | Doc'd that unusable passwords are defined by metadata in the password field. | David D Lowe | |
| 2024-10-23 | Fixed #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-23 | Refs #28999 -- Added tests for reversing a class-based view by instance. | Clifford Gama | |
| 2024-10-23 | Fixed #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-22 | Refs #34406 -- Added support for GDAL curved geometries. | David Smith | |
| Co-authored-by: Fabien Le Frapper <contact@fabienlefrapper.me> | |||
| 2024-10-22 | Restructured 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-22 | Added missing alt attribute to <img> tag in docs. | ssanger | |
| 2024-10-22 | Fixed example indentation in howto/overriding-templates.txt. | Mariusz Felisiak | |
| 2024-10-21 | Updated Hypercorn links in docs/howto/deployment/asgi/hypercorn.txt. | amirreza sohrabi far | |
| 2024-10-21 | Updated tutorial part count from 7 to 8 in docs/intro/reusable-apps.txt. | Mariusz Felisiak | |
| 2024-10-17 | Fixed #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-17 | Refs #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-17 | Refs #35841 -- Updated GeoIP2 test database files. | Nick Pope | |
| The mmdb files were taken from https://github.com/maxmind/MaxMind-DB/commit/679e37e18a4a3009949c2213ec2c0bb8090c10c7. | |||
| 2024-10-17 | Fixed #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. | |||
