| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-03-18 | Refs #35980 -- Updated internal docs for artifact upload and release via ↵ | Baptiste Mispelon | |
| admin site. Recent updates to djangoproject.com extended the `Release` model to support uploading and storing artifacts and checksum files. This branch updates the "How to release Django" docs to match the new release flow. | |||
| 2025-03-18 | Fixed #33497 -- Doc'd that persistent DB connections should be disabled in ↵ | Carlton Gibson | |
| ASGI and async modes. | |||
| 2025-03-18 | Fixed #36202 -- Added examples of JSONField __contains and __contained_by ↵ | Clifford Gama | |
| lookups with nested arrays to docs. | |||
| 2025-03-18 | Fixed #36078 -- Doc'd that Postgres normalizes a range field with no points ↵ | Clifford Gama | |
| to empty. Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-03-18 | Configured GitHub to highlight HTML files as Django templates. | Adam Johnson | |
| 2025-03-18 | Handled WebDriverException from Chrome driver version 113+. | Sarah Boyce | |
| 2025-03-18 | Made selenium tests less flaky by waiting until popups are closed and page ↵ | Sarah Boyce | |
| is loaded. | |||
| 2025-03-18 | Refs #36138 -- Cleaned up duplicate code in mail_admins()/mail_managers(). | Mike Edmunds | |
| 2025-03-18 | Refs #36138 -- Improved tests for mail_admins() and mail_managers(). | Mike Edmunds | |
| - Separated MailTests.test_connection_arg test cases. - Expanded test cases for incorrect values of ADMINS/MANAGERS settings. - Added test case verifying correct values of ADMINS/MANAGERS settings. | |||
| 2025-03-17 | Fixed #34865 -- Released memory earlier than garbage collection on database ↵ | fowczrek | |
| wrapping layers. Thank you Florian Apolloner, Jake Howard and Patryk Zawadzki for the clarifying comments and reviews. | |||
| 2025-03-17 | Fixed #36252 -- Handled duplicate automatic imports in the shell command. | hesham942 | |
| 2025-03-17 | Fixed #33537 -- Made test database cloning on MySQL reraise unexpected errors. | Mariusz Felisiak | |
| Thanks Faakhir Zahid and Stephen Finucane for the initial patch. Thanks Simon Charette for the review. | |||
| 2025-03-17 | Fixed #36254 -- Fixed template dictionary unpacking in ↵ | YQ | |
| docs/topics/i18n/timezones.txt. | |||
| 2025-03-14 | Fixed pronoun disagreement in docs/ref/models/querysets.txt. | Clifford Gama | |
| 2025-03-14 | Corrected aggregation example in docs/ref/models/querysets.txt. | Clifford Gama | |
| 2025-03-13 | Fixed incorrect formatting for inline pluralized code references in docs. | Clifford Gama | |
| 2025-03-13 | Refs #35945 -- Fixed ↵ | Mariusz Felisiak | |
| test_paginating_unordered_queryset_raises_warning_async() test on byte-compiled Django. | |||
| 2025-03-12 | Fixed #36249 -- Fixed typo in docs/topics/db/queries.txt. | hesham hatem | |
| 2025-03-12 | Fixed #36234 -- Restored single_object argument to ↵ | Adam Johnson | |
| LogEntry.objects.log_actions(). Thank you Adam Johnson for the report and fix. Thank you Sarah Boyce for your spot on analysis. Regression in c09bceef68e5abb79accedd12dade16aa6577a09, which is partially reverted in this branch. Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-03-12 | Refs #34380 -- Fixed the documented URLField default scheme to https. | Sarah Boyce | |
| Missed in 9a3f86e96009c1137b286f6d579b9d812a0dee69. | |||
| 2025-03-12 | Refs #25582 -- Doc'd query and fragment arguments for reverse_lazy(). | Adam Johnson | |
| 2025-03-12 | Removed duplicate entries in docs/releases/5.2.txt. | Hisham Mahmood | |
| 2025-03-12 | Fixed #35945 -- Added async interface to Paginator. | wookkl | |
| 2025-03-12 | Fixed #35676 -- Made BaseModelForm validate constraints that reference an ↵ | Clifford Gama | |
| InlineForeignKeyField. Co-authored-by: Simon Charette <charette.s@gmail.com> | |||
| 2025-03-11 | Fixed #35816 -- Handled parsing of scientific notation in DTL. (#19213) | haileyajohnson | |
| * Refs #35816 -- Improved test coverage of FilterExpression. * Fixed #35816 -- Made FilterExpression parse scientific numbers. --------- Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-03-11 | Fixed #36177 -- Added a trailing newline to JSON serializer. (#19232) | Tom Carrick | |
| 2025-03-10 | Fixed #33579 -- Specialized exception raised on forced update failures. | Simon Charette | |
| Raising DatabaseError directly made it harder than it should to differentiate between IntegrityError when a forced update resulted in no affected rows. Introducing a specialized exception allows for callers to more easily silence, log, or turn them update failures into user facing exceptions (e.g. 404s). Thanks Mariusz for the review. | |||
| 2025-03-10 | Fixed #36222 -- Fixed ExclusionConstraint validation crash on excluded ↵ | saJaeHyukc | |
| fields in condition. Signed-off-by: saJaeHyukc <wogur981208@gmail.com> | |||
| 2025-03-10 | Used _expression_refs_exclude() hook in ↵ | Mariusz Felisiak | |
| CheckConstraint/UniqueConstraint.validate(). | |||
| 2025-03-10 | Fixed #36201 -- Caught ValidationError in ↵ | saJaeHyukc | |
| ModelChoiceField/ModelMultipleChoiceField.clean(). Signed-off-by: saJaeHyukc <wogur981208@gmail.com> | |||
| 2025-03-10 | Fixed #36066 -- Documented that Q objects can be used directly in annotations. | samruddhiDharankar | |
| 2025-03-09 | Fixed #35487 -- Removed CASCADE from RemoveField() on PostgreSQL. | petr.prikryl | |
| Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Adam Johnson <me@adamj.eu> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-03-07 | Fixed #36224 -- Fixed shell imports when settings not configured. | Sarah Boyce | |
| Thank you Raffaella for the report. Thank you Tim Schilling and Natalia Bidart for the reviews. | |||
| 2025-03-07 | Corrected test case in ExclusionConstraintTests.test_invalid_expressions(). | Sarah Boyce | |
| 2025-03-06 | Added CVE-2025-26699 to security archive. | Sarah Boyce | |
| 2025-03-06 | Added stub release notes for 5.1.8. | Sarah Boyce | |
| 2025-03-06 | Fixed CVE-2025-26699 -- Mitigated potential DoS in wordwrap template filter. | Sarah Boyce | |
| Thanks sw0rd1ight for the report. | |||
| 2025-03-05 | Clarified cryptic comment in django/core/cache/backends/redis.py. | Tim Graham | |
| 2025-03-05 | Fixed typo in docs/ref/checks.txt. | hesham942 | |
| 2025-03-05 | Fixed #36227 -- Fixed outdated PostgreSQL documentation links. | hesham942 | |
| 2025-03-05 | Fixed typo in django/db/backends/postgresql/psycopg_any.py comment. | Jacob Walls | |
| 2025-03-04 | Fixed #36128 -- Clarified auto-generated unique constraint on m2m through ↵ | Clifford Gama | |
| models. | |||
| 2025-03-04 | Fixed #36217 -- Restored pre_save/post_save signal emission via ↵ | antoliny0919 | |
| LogEntry.save() for single-object deletion in the admin. Regression in 40b3975e7d3e1464a733c69171ad7d38f8814280. Thanks smiling-watermelon for the report. Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | |||
| 2025-03-03 | Refs #35444 -- Deprecated contrib.postgres.OrderableAggMixin. | Chris Muthig | |
| This commit does not create any functional changes, but marks the existing `OrderableAggMixin` class as deprecated so that developers using it directly can be made aware of its future removal. | |||
| 2025-03-03 | Fixed #35444 -- Added generic support for Aggregate.order_by. | Chris Muthig | |
| This moves the behaviors of `order_by` used in Postgres aggregates into the `Aggregate` class. This allows for creating aggregate functions that support this behavior across all database engines. This is shown by moving the `StringAgg` class into the shared `aggregates` module and adding support for all databases. The Postgres `StringAgg` class is now a thin wrapper on the new shared `StringAgg` class. Thank you Simon Charette for the review. | |||
| 2025-03-02 | Added some heading labels to to docs/topics/cache.txt. | Tim Graham | |
| 2025-03-01 | Fixed #36198 -- Implemented unresolved transform expression replacement. | Simon Charette | |
| This allows the proper resolving of F("field__transform") when performing constraint validation. Thanks Tom Hall for the report and Sarah for the test. | |||
| 2025-03-01 | Applied Black's 2025 stable style. | Mariusz Felisiak | |
| https://github.com/psf/black/releases/tag/25.1.0 | |||
| 2025-02-27 | Added stub release notes and release date for 5.1.7, 5.0.13, and 4.2.20. | Sarah Boyce | |
| 2025-02-27 | Refs #35617 -- Removed hardcoded pk in test_bulk_update_custom_get_prep_value(). | Jacob Walls | |
