| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-01-16 | Used more specific link to email backends in EMAIL_BACKEND docs. | Baptiste Mispelon | |
| 2024-01-15 | Fixed #34949 -- Clarified when UniqueConstraints with include/nulls_distinct ↵ | jordanbae | |
| are not created. | |||
| 2024-01-15 | Fixed #28344 -- Allowed customizing queryset in ↵ | Aivars Kalvans | |
| Model.refresh_from_db()/arefresh_from_db(). The from_queryset parameter can be used to: - use a custom Manager - lock the row until the end of transaction - select additional related objects | |||
| 2024-01-10 | Fixed #35092 -- Exposed extra fields for GeoIP2.country() and GeoIP2.city() ↵ | Nick Pope | |
| responses. | |||
| 2024-01-07 | Fixed #35091 -- Allowed GeoIP2 querying using IPv4Address/IPv6Address. | Nick Pope | |
| 2024-01-06 | Fixed #35088 -- Added support for Collect on MySQL 8.0.24+. | Nick Pope | |
| 2024-01-05 | Fixed #35086 -- Added support for BoundedCircle on Spatialite 5.1+. | David Smith | |
| Spatialite 5.1 added support for BoundingCircle (GEOSMinimumBoundingCircle). GEOS 3.7 is required which is lower than Django's currently supported minmum of 3.8. https://groups.google.com/g/spatialite-users/c/hAJ2SgitN4M https://www.gaia-gis.it/gaia-sins/spatialite-sql-5.1.0.html | |||
| 2024-01-02 | Fixed #35075 -- Added deduplicate_items parameter to BTreeIndex. | Nick Pope | |
| 2024-01-02 | Fixed #35060 -- Deprecated passing positional arguments to Model.save()/asave(). | Salvo Polizzi | |
| 2023-12-30 | Fixed #35069 -- Fixed typo in docs/ref/forms/api.txt. | Salvo Polizzi | |
| 2023-12-30 | Fixed #29049 -- Added slicing notation to F expressions. | Nick Pope | |
| Co-authored-by: Priyansh Saxena <askpriyansh@gmail.com> Co-authored-by: Niclas Olofsson <n@niclasolofsson.se> Co-authored-by: David Smith <smithdc@gmail.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Abhinav Yadav <abhinav.sny.2002@gmail.com> | |||
| 2023-12-28 | Corrected code-block directives in docs. | Mariusz Felisiak | |
| 2023-12-28 | Improved DEFAULT_FROM_EMAIL/SERVER_EMAIL docs. | David D Lowe | |
| Co-authored-by: nessita <124304+nessita@users.noreply.github.com> | |||
| 2023-12-21 | Fixed #35005 -- Confirmed support for GDAL 3.8. | David Smith | |
| 2023-12-20 | Fixed #35049 -- Dropped support for GDAL 2.4. | David Smith | |
| 2023-12-20 | Fixed #35048 -- Dropped support for PROJ 5.x. | David Smith | |
| 2023-12-19 | Doc'd that users with unusable passwords cannot request a password reset. | Amin Shah Gilani | |
| 2023-12-15 | Added missing import in docs/ref/models/expressions.txt. | Viicos | |
| 2023-12-14 | Added clarifications about the DATABASES.TIME_ZONE setting in docs. | David Sanders | |
| These include: - Doc'd which is the default used when DATABASES.TIME_ZONE is None. - Doc'd that the database connection's time zone setting is set for PostgreSQL and clarified that it may be necessary to set it to the same value as TIME_ZONE. Co-authored-by: David Smith <39445562+smithdc1@users.noreply.github.com> Co-authored-by: Natalia Bidart <124304+nessita@users.noreply.github.com> | |||
| 2023-12-08 | Fixed #35016 -- Doc'd that DATABASES["OPTIONS"] are passed to new PostgreSQL ↵ | Yashas | |
| connections. | |||
| 2023-12-05 | Deprecated django.contrib.gis.geoip2.GeoIP2.open(). | Nick Pope | |
| 2023-12-01 | Improved wording in auth.models.User field docs. | Adrien | |
| Co-authored-by: Lily Foote <code@lilyf.org> | |||
| 2023-12-01 | Deprecated django.contrib.gis.geoip2.GeoIP2.coords(). | Nick Pope | |
| The `ordering` argument is undocumented and of limited use, so this is effectively the same as `GeoIP2.lon_lat()`. | |||
| 2023-11-29 | Updated conditions to retrieve primary keys in bulk_create() docs. | KimSia Sim | |
| 2023-11-29 | Refs #25778 -- Updated some links and references to HTTPS. | Adam Johnson | |
| 2023-11-28 | Removed link to lawrence.com in contrib.sites docs. | Adam Johnson | |
| lawrence.com has since become a redirect to LJWorld.com, making the link pointless. | |||
| 2023-11-28 | Refs #34380 -- Added FORMS_URLFIELD_ASSUME_HTTPS transitional setting. | Mariusz Felisiak | |
| This allows early adoption of the new default "https". | |||
| 2023-11-28 | Fixed #34633 -- Made create() method of reverse many-to-one managers clear ↵ | Aman Pandey | |
| prefetch_related() cache. | |||
| 2023-11-25 | Refs #34380 -- Improved docs for forms.URLField.assume_scheme. | Adam Johnson | |
| 2023-11-23 | Fixed #34990 -- Changed link to OWASP in CSRF docs. | Tim Schilling | |
| The OWASP site is the standard resource for web application security information. | |||
| 2023-11-17 | Refs #32819 -- Established relationship between form fieldsets and their ↵ | David Smith | |
| help text. This adds aria-describedby for widgets rendered in a fieldset such as radios. aria-describedby for these widgets is added to the <fieldset> element rather than each <input>. | |||
| 2023-11-16 | Refs #32819 -- Used auto_id instead of id_for_label as unique identifier for ↵ | David Smith | |
| the field. `id_for_label` is blank for widgets with multiple inputs such as radios and multiple checkboxes. Therefore , `help_text` for fields using these widgets cannot currently be associated using `aria-describedby`. `id_for_label` is being used as a guard to avoid incorrectly adding `aria-describedby` to those widgets. This change uses `auto_id` as the unique identified for the fields `help_text`. A guard is added to avoid incorrectly adding `aria-describedby` to inputs by checking the widget's `use_fieldset` attribute. Fields rendered in a `<fieldset>` should have `aria-describedby` added to the `<fieldset>` and not every `<input>`. | |||
| 2023-11-15 | Refs #33690 -- Added missing data-theme selector to example in theming ↵ | William Hayes | |
| support docs. | |||
| 2023-11-14 | Refs #34944 -- Propagated system checks for GeneratedField.output_field. | Mariusz Felisiak | |
| 2023-11-14 | Fixed #34944 -- Made GeneratedField.output_field required. | Mariusz Felisiak | |
| Regression in f333e3513e8bdf5ffeb6eeb63021c230082e6f95. | |||
| 2023-11-09 | Fixed #34457 -- Restored output for makemigrations --check. | Adam Johnson | |
| Co-authored-by: David Sanders <shang.xiao.sanders@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2023-11-09 | Fixed typos in docs/ref/models/fields.txt. | Jacob Walls | |
| 2023-11-02 | Fixed #34813 -- Doc'd usage of integrity HTML attribute with ↵ | Patrick Rauscher | |
| ManifestStaticFilesStorage. | |||
| 2023-10-30 | Refs #29850 -- Added exclusion support to window frames. | Sarah Boyce | |
| 2023-10-28 | Refs #29850 -- Added RowRange support for positive integer start and ↵ | Sarah Boyce | |
| negative integer end. | |||
| 2023-10-28 | Fixed typos in docs/ref/models/expressions.txt. | Sarah Boyce | |
| 2023-10-27 | Doc'd writing integration tests for the system check framework. | Marc Gibbons | |
| 2023-10-27 | Fixed typo in docs/ref/contrib/gis/geos.txt. | Izzy Hyman | |
| 2023-10-26 | Fixed #10941 -- Added {% query_string %} template tag. | Tom Carrick | |
| 2023-10-25 | Added missing pycon directives in various docs. | Mariusz Felisiak | |
| 2023-10-25 | Fixed #27403 -- Doc'd that QuerySet.prefetch_related() doesn't guarantee ↵ | Tim Bell | |
| transactional consistency. Added a note about the potential race condition in prefetch_related() that could produce an inconsistent result, one that does not correspond to any point in the database history. | |||
| 2023-10-11 | Fixed #34808 -- Doc'd aggregate function's default argument. | lufafajoshua | |
| 2023-10-07 | Added missing import in docs/ref/contrib/contenttypes.txt. | sage | |
| 2023-10-06 | Refs #32275 -- Added scrypt password hasher to PASSWORD_HASHERS setting docs. | ume | |
| 2023-10-05 | Refs #31435 -- Doc'd potential infinite recursion when accessing model ↵ | David Sanders | |
| fields in __init__. | |||
