| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-03-27 | Fixed #35233 -- Moved template engine system checks to backend methods. | Giannis Terzopoulos | |
| Thanks Adam Johnson for reviews. | |||
| 2024-03-26 | Fixed #35329 -- Fixed migrations crash when adding partial unique ↵ | Mariusz Felisiak | |
| constraints with nulls_distinct. Bug in 595a2abb58e04caa4d55fb2589bb80fb2a8fdfa1. Thanks Lucas Lemke Saunitti for the report. | |||
| 2024-03-21 | Added RowNumber() link in Rank() docs. | Adam Zapletal | |
| 2024-03-18 | Refs #34059, Refs #34060 -- Removed outdated warning about validation of ↵ | Mariusz Felisiak | |
| JSONField constraints. Known issues have been fixed in: - 0d8fbe2ade29f1b7bd9e6ba7a0281f5478603a43, - c991602ce5798385261381025c06698d7fd30dc5, and - 26aae5614487f58ddb1df5726224393887373ecd. | |||
| 2024-03-18 | Refs #31014 -- Added srid argument to FromWKB/FromWKT() GIS functions. | Claude Paroz | |
| 2024-03-15 | Refs #33996 -- Updated CheckConstraint validation on NULL values on Oracle 23c+. | Mariusz Felisiak | |
| Oracle 23c supports comparing boolean expressions. | |||
| 2024-03-14 | Fixed #35273 -- Fixed rendering AdminFileWidget's attributes. | Johannes Maron | |
| Regression in 8a6c0203c4e92908c2b26ba54feba4ce7e76d081. | |||
| 2024-03-13 | Fixed #34901 -- Added async-compatible interface to session engines. | Jon Janzen | |
| Thanks Andrew-Chen-Wang for the initial implementation which was posted to the Django forum thread about asyncifying contrib modules. | |||
| 2024-03-11 | Fixed #14831 -- Extended template style guide in docs. | Ryan Cheley | |
| 2024-03-11 | Fixed #25595 -- Doc'd that URLValidator rejects file:// URIs without a host. | Adam Zapletal | |
| 2024-03-10 | Fixed #35280 -- Improved iriencode filter example in docs. | canhuynh1998 | |
| 2024-03-08 | Corrected code-block directives in topics/forms/formsets.txt. | Mitchina | |
| 2024-03-08 | Fixed #35223 -- Made Model.full_clean() ignore fields with db_default when ↵ | Ben Cail | |
| validating empty values. Thanks Brian Ibbotson for the report. Regression in 7414704e88d73dafbcfbb85f9bc54cb6111439d3. | |||
| 2024-03-07 | Fixed #35030 -- Made django.contrib.auth decorators to work with async ↵ | Dingning | |
| functions. | |||
| 2024-03-07 | Fixed typos in docstrings and docs. | cuinix | |
| Signed-off-by: cuinix <915115094@qq.com> | |||
| 2024-03-06 | Fixed broken links and redirects in docs. | Mariusz Felisiak | |
| 2024-03-06 | Updated broken links in docs/ref/contrib/gis/tutorial.txt. | Mohammad Alsakhawy | |
| 2024-03-05 | Fixed #35252 -- Optimized _route_to_regex(). | Adam Johnson | |
| co-authored-by: Nick Pope <nick@nickpope.me.uk> | |||
| 2024-03-05 | Fixed #35267 -- Clarified time zone topic for PostgreSQL in docs. | Josh Smeaton | |
| The timezone documentation for Postgres mentions the behavior of time zone conversion, but links to the wrong setting that controls the behavior. Postgres will not return datetimes in the time zone set by the TIME_ZONE setting, but rather the time zone of the database connection, which is defined by DATABASES.TIME_ZONE setting falling back to UTC. This corrects the link in the documentation and adds note that there are two distinct TIME_ZONE settings and the one most are familiar with is not considered for PostgreSQL time zone conversion. | |||
| 2024-03-04 | Fixed #35261 -- Corrected Media JS example of object-based paths in docs. | Leandro de Souza | |
| `rel` attribute is not valid on `<link>` tags. | |||
| 2024-03-04 | Added stub release notes for 5.0.4. | Mariusz Felisiak | |
| 2024-03-04 | Added CVE-2024-27351 to security archive. | Mariusz Felisiak | |
| 2024-03-04 | Refs CVE-2024-27351 -- Forwardported release notes and tests. | Shai Berger | |
| Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2024-03-01 | Refs #33497 -- Added connection pool support for PostgreSQL. | Sarah Boyce | |
| Co-authored-by: Florian Apolloner <florian@apolloner.eu> Co-authored-by: Ran Benita <ran@unusedvar.com> | |||
| 2024-03-01 | Refs #35234 -- Deprecated CheckConstraint.check in favor of .condition. | Simon Charette | |
| Once the deprecation period ends CheckConstraint.check() can become the documented method that performs system checks for BaseConstraint subclasses. | |||
| 2024-02-29 | Fixed #35198 -- Fixed facet filters crash on querysets with no primary key. | Shafiya Adzhani | |
| Thanks Simon Alef for the report. Regression in 868e2fcddae6720d5713924a785339d1665f1bb9. | |||
| 2024-02-29 | Fixed typo in docs/ref/contrib/admin/index.txt. | kbehlers | |
| 2024-02-28 | Removed #django-geo IRC channel in docs. | Mariusz Felisiak | |
| It's been inactive for several years. | |||
| 2024-02-28 | Refs #34964 -- Doc'd that Q expression order is preserved. | David Sanders | |
| 2024-02-26 | Added release date for 5.0.3, 4.2.11, and 3.2.25. | Mariusz Felisiak | |
| 2024-02-23 | Fixed #35090 -- Deprecated registering URL converters with the same name. | Salvo Polizzi | |
| 2024-02-21 | Fixed #34806 -- Made cached_db session backend resilient to cache write errors. | Sulabh Katila | |
| Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2024-02-21 | Removed distracting note from tutorial 4. | Carlton Gibson | |
| The note on a possible race condition is inappropriate in this tutorial setting. To quote Diátaxis: > Your job is to guide the learner to a successful conclusion. There > may be many interesting diversions along the way … - ignore them. Co-Authored-By: Ryan Hiebert <ryan@ryanhiebert.com> | |||
| 2024-02-20 | Fixed #35238 -- Fixed database serialization crash when base managers use ↵ | AlexCLeduc | |
| prefetch_related(). Regression in 139135627650ed6aaaf4c755b82c3bd43f2b8f51 following deprecation in eedbf930287cb72e9afab1f7208c24b1146b0c4ec. | |||
| 2024-02-20 | Fixed #34429 -- Allowed setting unusable passwords for users in the auth forms. | Fabian Braun | |
| Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> | |||
| 2024-02-20 | Fixed #35153 -- Added note about locale name notation to FORMAT_MODULE_PATH ↵ | sandjio | |
| docs. Co-authored-by: Paul Hermans <paul.hermans@benemtech.com> | |||
| 2024-02-17 | Fixed #28011 -- Corrected Field.hidden docs. | Adam Johnson | |
| 2024-02-17 | Fixed #35187 -- Fixed @sensitive_variables/sensitive_post_parameters ↵ | Mariusz Felisiak | |
| decorators crash with .pyc-only builds. Thanks Jon Janzen for the implementation idea. Thanks Marcus Hoffmann for the report. Regression in 38e391e95fe5258bc6d2467332dc9cd44ce6ba52. | |||
| 2024-02-16 | Fixed #24018 -- Allowed setting pragma options on SQLite. | Aaron Linville | |
| 2024-02-14 | Fixed #35173 -- Fixed ModelAdmin.lookup_allowed() for lookups on foreign ↵ | Hisham Mahmood | |
| keys when not included in ModelAdmin.list_filter. Regression in f80669d2f5a5f1db9e9b73ca893fefba34f955e7. Thanks Sarah Boyce for the review. | |||
| 2024-02-12 | Refs #35058 -- Added support for measured geometries to GDAL ↵ | David Smith | |
| GeometryCollection and subclasses. | |||
| 2024-02-08 | Fixed #35174 -- Fixed Signal.asend()/asend_robust() crash when all receivers ↵ | Vašek Dohnal | |
| are asynchronous. Regression in e83a88566a71a2353cebc35992c110be0f8628af. | |||
| 2024-02-08 | Fixed #35172 -- Fixed intcomma for string floats. | Mariusz Felisiak | |
| Thanks Warwick Brown for the report. Regression in 55519d6cf8998fe4c8f5c8abffc2b10a7c3d14e9. | |||
| 2024-02-08 | Fixed typo in docs/internals/contributing/writing-code/coding-style.txt. | Koo | |
| 2024-02-07 | Fixed #30686 -- Used Python HTMLParser in utils.text.Truncator. | David Smith | |
| 2024-02-06 | Added CVE-2024-24680 to security archive. | Natalia | |
| 2024-02-06 | Added stub release notes for 5.0.3. | Natalia | |
| 2024-02-06 | Fixed CVE-2024-24680 -- Mitigated potential DoS in intcomma template filter. | Adam Johnson | |
| Thanks Seokchan Yoon for the report. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Shai Berger <shai@platonix.com> | |||
| 2024-02-05 | Fixed #10743 -- Allowed lookups for related fields in ModelAdmin.list_display. | Tom Carrick | |
| Co-authored-by: Alex Garcia <me@alexoteiza.com> Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Nina Menezes <https://github.com/nmenezes0> | |||
| 2024-02-05 | Replaced "Django test runner" with DiscoverRunner in release notes. | Tim Graham | |
| Removed mention of options supported only by runtests.py. | |||
