summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-20Fixed #35913 -- Prevented formset name suffix 'FormFormSet'.antoliny0919
2024-11-19Fixed #35535 -- Added template tag decorator simple_block_tag().Jake Howard
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-11-19Fixed #35775 -- Confirmed support for GEOS 3.13.David Smith
2024-11-19Updated maintainers of Django Debug Toolbar to Django Commons.Tim Schilling
2024-11-18Refs #32339 -- Updated formset docs to reflect default rendering as as_div.antoliny0919
2024-11-18Refs #35844 -- Fixed copying BaseContext and its subclasses on Python 3.14+.Mariusz Felisiak
super objects are copyable on Python 3.14+: https://github.com/python/cpython/commit/5ca4e34bc1aab8321911aac6d5b2b9e75ff764d8 and can no longer be used in BaseContext.__copy__().
2024-11-18Fixed #35882 -- Made migration questioner loop on all errors.Adam Johnson
2024-11-18Refs #35882 -- Added test for migration questioner KeyboardInterrupt.Adam Johnson
2024-11-18Fixed typo in docs/topics/performance.txt.Caitlin Hogan
2024-11-18Fixed #18392 -- Changed default mysql encoding to "utf8mb4".Ben Cail
2024-11-15Made cosmetic edits to 5.2 release notes, including line wrapping at 79 cols.nessita
2024-11-15Refs #28215 -- Marked auth form passwords as sensitive variables.GappleBee
2024-11-14Fixed #35784 -- Added support for preserving the HTTP request method in ↵Lorenzo Peña
HttpResponseRedirectBase. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-11-14Fixed #35887 -- Added imports and admin.site.register to non-partial admin ↵Alexander Lazarević
inline doc examples.
2024-11-14Removed misleading list of tested OS in GEOS API docs.Anthony Joseph
2024-11-14Replaced message suggestions from IRC to Discord in contributing docs.AfiMaameDufie
2024-11-14Fixed #17430 -- Documented access to the Django admin when using a custom ↵Maria Hynes
auth backend.
2024-11-14Fixed a typo in docs/howto/static-files/deployment.txt.Laurence Mercer
2024-11-13Fixed #35843 -- Clarified formset docs about reordering forms.Clifford Gama
2024-11-12Refs #21286 -- Fixed YAML serialization of TimeField primary key.Adam Zapletal
Handling for PyYAML not being able to serialize `datetime.time` values is moved from `handle_field` to `_value_from_field` as only non-primary key, non-relation fields are passed into `handle_field`.
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