summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-11Fixed #17905 -- Restricted access to model pages in admindocs.sai-ganesh-03
Only users with view or change model permissions can access. Thank you to Sarah Boyce for the review.
2024-11-11Fixed #35903 -- Made admin's "view on site" URL accept non-integer ↵Tim Graham
ContentType pks.
2024-11-11Fixed #35815 -- Made system check accept db_default literals when ↵Tim Graham
DatabaseFeatures.supports_expression_defaults = False.
2024-11-11Updated validate_slug regular expression in form validation docs.antoliny0919
Outdated since 014247ad1922931a2f17beaf6249247298e9dc44.
2024-11-11Updated BRIN index links in contrib.postgres indexes docs.Adam Zapletal
2024-11-11Fixed a typo in some tests.yatami38
2024-11-11Removed redundant RemoteTestResultTest._test_error_exc_info() test hook.Mariusz Felisiak
2024-11-11Refs #35849 -- Skipped ↵Mariusz Felisiak
ParallelTestSuiteTest.test_handle_add_error_before_first_test() without tblib. Follow up to 661dfdd59809f4abd5077f7a2529735d07b98ba4.
2024-11-11Refs #32365 -- Removed pytz from list of test dependencies in unit test docs.Mariusz Felisiak
Follow up to e6f82438d4e3750e8d299bfd79dac98eebe9f1e0.
2024-11-11Fixed typo in django/db/backends/sqlite3/features.py.Mariusz Felisiak
2024-11-08Fixed #35011, Refs #28900 -- Added tests for QuerySet.union() with multiple ↵Jacob Rief
models and DateTimeField annotations. Ticket was resolved by 65ad4ade74dc9208b9d686a451cd6045df0c9c3a as part of #28900.
2024-11-07Refs #23968 -- Removed unnecessary list comprehension in contrib.admin.helpers.John Parton
2024-11-06Fixed #35849 -- Made ParallelTestSuite report correct error location.David Winiecki
2024-11-06Refs #35849 -- Added a handle_event hook to ParallelTestSuite.David Winiecki
2024-11-06Fixed #35863 -- Replaced bold text with heading level 3 in new contributors ↵ssanger
docs. This improves accessibility for screen reader users, see WCAG SC 1.3.1 Info and Relationships: https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html
2024-11-06Fixed #27409 -- Made admindocs support custom link text in docstrings.sai-ganesh-03
2024-11-06Fixed #35778 -- Used JSON_OBJECT database function on PostgreSQL 16+ with ↵John Parton
server-side bindings.
2024-11-06Fixed #35889 -- Corrected reference of default widgets in "Styling widget ↵antoliny0919
instance" docs.
2024-11-06Removed definition of JSONObject ArgJoiner class in as_native function.Sarah Boyce
2024-11-05Clarified instructions on how to claim a ticket.Maria Hynes
2024-11-05Fixed typo in docs/internals/howto-release-django.txt.Mariusz Felisiak
2024-11-05Fixed #35880 -- Removed invalid example in form Field.required docs due to ↵antoliny0919
CharField.strip. CharField.strip was introduced in 11cac1bd8ef7546ca32d9969d4348bf412dc6664, and is True by default, meaning the previous example of " " raised a ValidationError.
2024-11-05Refs #26001 -- Handled relationship exact lookups in ModelAdmin.search_fields.Sarah Boyce
2024-11-05Added stub release notes for 5.1.4.Mariusz Felisiak
2024-11-05Added release date for 5.1.3.Mariusz Felisiak
2024-11-04Fixed #35867, Refs #2411 -- Allowed links in admindocs view details summary.sai-ganesh-03
2024-11-04Made minor edits to form fields docs.antoliny0919
2024-11-04Fixed #26001 -- Fixed non-string field exact lookups in ↵0saurabh0
ModelAdmin.search_fields.
2024-11-04Fixed #35883 -- Confirmed support for GDAL 3.9.David Smith
Updated test for change to exportToXML() which now errors out on unsupported projection methods. See https://github.com/OSGeo/gdal/issues/9223. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2024-11-04Refs #373 -- Added TupleIn subqueries.Bendeguz Csirmaz
2024-11-01Fixed #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-01Refs #373 -- Used a feature flag to disable composite subquery test on MySQL.Simon Charette
2024-10-31Updated the "Built-in Field classes" section reference to a link.antoliny0919
2024-10-31Fixed #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-31Fixed #35180 -- Recreated PostgreSQL _like indexes when changing between ↵Ben Cail
TextField and CharField field types.
2024-10-30Fixed #35866 -- Clarified the positioning Python magic methods on models in ↵maddrum
the internal style guide.
2024-10-30Fixed #35856 -- Added QuerySet.explain() support for MEMORY/SERIALIZE option ↵Anthony Joseph
on PostgreSQL 17+.
2024-10-30Added missing lang attributes to html elements in docs.Johanan-Ayadata
2024-10-30Clarified default behavior when fields and fieldsets are not set on ModelAdmin.aruseni
2024-10-30Fixed #35864 -- Documented EmailMessage.connection is ignored when using ↵Mike Edmunds
send_messages().
2024-10-30Fixed #35873 -- Corrected Form.as_table() call in form docs.antoliny0919
2024-10-29Refs #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-29Corrected note on importing fields in model field reference docs.aruseni
2024-10-29Removed 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-29Fixed typo in ref/models/fields.txt.Clifford Gama
2024-10-29Refs #35581 -- Reduced boilerplate in mail tests.Mike Edmunds
2024-10-29Refs #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-29Refs #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-29Refs #35581 -- Clarified some test names and comments in mail tests.Mike Edmunds
2024-10-29Fixed #35868 -- Removed unneeded AttributeError catching in collectstatic's ↵Peter Ruszel
delete_file().