| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-01-15 | Fixed #35521 -- Allowed overriding BoundField class on fields, forms and ↵ | Matthias Kestenholz | |
| renderers. Thank you Sarah Boyce, Carlton Gibson, Tim Schilling and Adam Johnson for reviews. Co-authored-by: Christophe Henry <contact@c-henry.fr> Co-authored-by: David Smith <smithdc@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Matthias Kestenholz <mk@feinheit.ch> | |||
| 2025-01-15 | Refs #36070 -- Referred to pk as an attribute when a composite primary key ↵ | Jacob Walls | |
| is defined. This is to avoid confusion that a field is often associated with having a single associated database column. | |||
| 2025-01-14 | Fixed #36051 -- Declared arity on aggregate functions. | Jacob Walls | |
| Follow-up to 4a66a69239c493c05b322815b18c605cd4c96e7c. | |||
| 2025-01-14 | Fixed #36075 -- Documented how to introspect composite primary keys. | Simon Charette | |
| Document _meta.pk_fields and interactions between Field.primary_key and CompositePrimaryKey. Thanks Mariusz for the review. | |||
| 2025-01-14 | Fixed CVE-2024-56374 -- Mitigated potential DoS in IPv6 validation. | Michael Manfre | |
| Thanks Saravana Kumar for the report, and Sarah Boyce and Mariusz Felisiak for the reviews. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2025-01-13 | Fixed #36077 -- Corrected docs on pk value where Model.save() executes an ↵ | Jacob Walls | |
| UPDATE. The empty string is no longer special-cased since c2ba59fc1da5287d6286e2c2aca4083d5bafe056. | |||
| 2025-01-09 | Fixed #35515 -- Added automatic model imports to shell management command. | Salvo Polizzi | |
| Thanks to Bhuvnesh Sharma and Adam Johnson for mentoring this Google Summer of Code 2024 project. Thanks to Sarah Boyce, David Smith, Jacob Walls and Natalia Bidart for reviews. | |||
| 2025-01-07 | Refs #36042 -- Raised ValueError when providing composite expressions to ↵ | Jacob Walls | |
| aggregates. | |||
| 2025-01-06 | Fixed #35718 -- Add JSONArray to django.db.models.functions. | John Parton | |
| Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2025-01-06 | Refs #35444 -- Deprecated contrib.postgres aggregates ordering for order_by. | Chris Muthig | |
| Aligns the argument with SQL standards already used in Window.order_by and sets up for adding support to Aggregate. | |||
| 2025-01-03 | Fixed #36026 -- Clarified that View.setup() sets the request, args, kwargs ↵ | Chaitanya Rahalkar | |
| attributes. | |||
| 2025-01-02 | Fixed #32819 -- Added aria-describedby to fields with errors. | David Smith | |
| 2025-01-02 | Fixed #36037 -- Fixed default primary key type in docs. | Ari Pollak | |
| BigAutoField is the default type for primary keys. In models.txt, the linked anchor shows that the default primary key is a BigAutoField, so it now defers to that section instead of duplicating an (incorrect) type. | |||
| 2025-01-02 | Fixed #36034 -- Added system check for ↵ | Mariusz Felisiak | |
| ForeignKey/ForeignObject/ManyToManyField to CompositePrimaryKeys. | |||
| 2024-12-27 | Fixed #35891 -- Confirmed support for GDAL 3.10. | David Smith | |
| 2024-12-18 | Fixed #26007 -- Clarified ↵ | Andrew Miller | |
| SingleObjectTemplateResponseMixin.get_template_names() docs. | |||
| 2024-12-17 | Refs #32819 -- Added aria-describedby property to BoundField. | David Smith | |
| 2024-12-17 | Fixed #7732 -- Added support for connection pools on Oracle. | suraj | |
| 2024-12-17 | Fixed #35992, Fixed #35997 -- Added system check for CompositePrimaryKeys in ↵ | Mariusz Felisiak | |
| Meta.indexes/constraints/unique_together. CompositePrimaryKeys are not supported in any of these options. | |||
| 2024-12-16 | Refs #35718, Refs #32179 -- Moved JSONObject to django.db.models.functions.json. | Sage Abdullah | |
| 2024-12-11 | Fixed #25582 -- Added support for query and fragment to django.urls.reverse(). | Ben Cardy | |
| 2024-12-11 | Fixed #35989 -- Removed crs from GeoJSON serializer. | Jeremy Thompson | |
| Specification of coordinate reference systems (crs) was removed from the GeoJSON spec in 2016. https://datatracker.ietf.org/doc/html/rfc7946#appendix-B.1 | |||
| 2024-12-09 | Added GeometryDistance to the GIS available functions table. | Francisco Couzo | |
| 2024-12-05 | Refs #32819 -- Added id to ErrorList class and template. | David Smith | |
| 2024-12-02 | Updated docs example to clear cached_property without raising AttributeError. | SaJH | |
| Signed-off-by: SaJH <wogur981208@gmail.com> | |||
| 2024-12-02 | Fixed #35915 -- Clarified the empty list case in QueryDict.__getitem__() docs. | jburns6789 | |
| 2024-11-29 | Fixed #373 -- Added CompositePrimaryKey. | Bendeguz Csirmaz | |
| Thanks Lily Foote and Simon Charette for reviews and mentoring this Google Summer of Code 2024 project. Co-authored-by: Simon Charette <charette.s@gmail.com> Co-authored-by: Lily Foote <code@lilyf.org> | |||
| 2024-11-28 | Fixed #35038 -- Created AlterConstraint operation. | Salvo Polizzi | |
| 2024-11-27 | Made reverse() docs more self-contained. | Clifford Gama | |
| 2024-11-27 | Removed trailing whitespace in docs. | Adam Zapletal | |
| 2024-11-27 | Fixed #35939 -- Linked documentation of Permission.content_type to the ↵ | Brock | |
| ContentType model. | |||
| 2024-11-19 | Fixed #35775 -- Confirmed support for GEOS 3.13. | David Smith | |
| 2024-11-18 | Fixed #18392 -- Changed default mysql encoding to "utf8mb4". | Ben Cail | |
| 2024-11-14 | Fixed #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-14 | Fixed #35887 -- Added imports and admin.site.register to non-partial admin ↵ | Alexander Lazarević | |
| inline doc examples. | |||
| 2024-11-14 | Removed misleading list of tested OS in GEOS API docs. | Anthony Joseph | |
| 2024-11-11 | Fixed #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-11 | Updated validate_slug regular expression in form validation docs. | antoliny0919 | |
| Outdated since 014247ad1922931a2f17beaf6249247298e9dc44. | |||
| 2024-11-11 | Updated BRIN index links in contrib.postgres indexes docs. | Adam Zapletal | |
| 2024-11-06 | Fixed #27409 -- Made admindocs support custom link text in docstrings. | sai-ganesh-03 | |
| 2024-11-06 | Fixed #35889 -- Corrected reference of default widgets in "Styling widget ↵ | antoliny0919 | |
| instance" docs. | |||
| 2024-11-05 | Fixed #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-04 | Made minor edits to form fields docs. | antoliny0919 | |
| 2024-11-04 | Fixed #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-10-31 | Updated the "Built-in Field classes" section reference to a link. | antoliny0919 | |
| 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 #35873 -- Corrected Form.as_table() call in form docs. | antoliny0919 | |
| 2024-10-29 | Corrected note on importing fields in model field reference docs. | aruseni | |
