| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-01 | [4.2.x] Fixed #34140 -- Reformatted code blocks in docs with blacken-docs. | django-bot | |
| 2023-02-28 | [4.2.x] Refs #34140 -- Corrected rst code-block and various formatting ↵ | Joseph Victor Zammit | |
| issues in docs. Backport of ba755ca13123d2691a0926ddb64e5d0a2906a880 from main | |||
| 2023-02-24 | [4.2.x] Doc'd that Meta.indexes is preferred to Field.db_index. | Adam Johnson | |
| Backport of f9fe062de5fc0896d6bbbf3f260b5c44473b3c77 from main | |||
| 2023-02-10 | [4.2.x] Refs #34140 -- Applied rst code-block to non-Python examples. | Carlton Gibson | |
| Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews. Backport of 534ac4829764f317cf2fbc4a18354fcc998c1425 from main. | |||
| 2023-02-10 | [4.2.x] Fixed #34325 -- Corrected wording in PercentRank() docs. | dennisvang | |
| This is consistent with the terminology used for the percent_rank() function in SQLite docs and PostgreSQL docs. Backport of 7bb741d787ba360a9f0d490db92e22e0d28204ed from main | |||
| 2023-01-20 | [4.2.x] Fixed #34242 -- Doc'd that primary key is set to None when deleting ↵ | noFFENSE | |
| objects. Backport of 5cd1385356d4b275133ddb0f8c78b2f37c5901eb from main | |||
| 2022-12-28 | Fixed #14094 -- Added support for unlimited CharField on PostgreSQL. | Adrian Torres | |
| Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2022-12-28 | Fixed #18468 -- Added support for comments on columns and tables. | kimsoungryoul | |
| Thanks Jared Chung, Tom Carrick, David Smith, Nick Pope, and Mariusz Felisiak for reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Nick Pope <nick@nickpope.me.uk> | |||
| 2022-12-06 | Fixed #24048 -- Corrected QuerySet.only() docs about interaction with defer(). | Ryan Cheley | |
| 2022-11-14 | Fixed #34099 -- Added release notes for QuerySet.update_or_create() changes. | sarahboyce | |
| Follow up to 6cc0f22a73970dd7c0d29d4d8d2ff9e1cc862b30. Thanks Phil Gyford for the report. | |||
| 2022-11-10 | Updated documentation and comments for RFC updates. | Nick Pope | |
| - Updated references to RFC 1123 to RFC 5322 - Only partial as RFC 5322 sort of sub-references RFC 1123. - Updated references to RFC 2388 to RFC 7578 - Except RFC 2388 Section 5.3 which has no equivalent. - Updated references to RFC 2396 to RFC 3986 - Updated references to RFC 2616 to RFC 9110 - Updated references to RFC 3066 to RFC 5646 - Updated references to RFC 7230 to RFC 9112 - Updated references to RFC 7231 to RFC 9110 - Updated references to RFC 7232 to RFC 9110 - Updated references to RFC 7234 to RFC 9111 - Tidied up style of text when referring to RFC documents | |||
| 2022-11-10 | Improved readability of string interpolation in frequently used examples in ↵ | Trey Hunner | |
| docs. | |||
| 2022-11-09 | Fixed #34135 -- Added async-compatible interface to related managers. | Jon Janzen | |
| 2022-11-08 | Fixed #34139 -- Fixed acreate(), aget_or_create(), and aupdate_or_create() ↵ | Jon Janzen | |
| methods for related managers. Bug in 58b27e0dbb3d31ca1438790870b2b51ecdb10500. | |||
| 2022-11-02 | Fixed #34112 -- Added async-compatible interface to Model methods. | DevilsAutumn | |
| Thanks Adam Johnson for the review. | |||
| 2022-10-31 | Fixed #16211 -- Added logical NOT support to F expressions. | David Wobrock | |
| 2022-10-21 | Fixed typo in docs/ref/models/querysets.txt. | Ryan Cheley | |
| 2022-10-20 | Updated UTC uses to datetime.timezone.utc in docs. | Diane DeMers Chen | |
| 2022-10-12 | Refs #34059 -- Doc'd lack of support for validation of constraints with ↵ | Mariusz Felisiak | |
| JSONFields. Thanks Dan LaManna for the report. | |||
| 2022-10-06 | Refs #30158 -- Removed alias argument for Expression.get_group_by_cols(). | Simon Charette | |
| Recent refactors allowed GROUP BY aliasing allowed for aliasing to be entirely handled by the sql.Query.set_group_by and compiler layers. | |||
| 2022-10-03 | Fixed #34070 -- Added subsecond support to Now() on SQLite and MySQL. | Lily Foote | |
| 2022-10-01 | Clarified how to reference RelatedObjectDoesNotExist exceptions. | David Sanders | |
| 2022-09-28 | Changed note about update_fields and pre_save() to admonition. | Mariusz Felisiak | |
| Follow up to bf47c719719d0e190a99fa2e7f959d5bbb7caf8a. | |||
| 2022-09-27 | Doc'd when pre_save() is called with Model.save()'s update_fields. | sarahboyce | |
| 2022-09-13 | Fixed #33996 -- Fixed CheckConstraint validation on NULL values. | David Sanders | |
| Bug in 667105877e6723c6985399803a364848891513cc. Thanks James Beith for the report. | |||
| 2022-09-04 | Corrected heading level of "Registering and fetching lookups" section in docs. | Mariusz Felisiak | |
| 2022-09-02 | Fixed #29799 -- Allowed registering lookups per field instances. | Allen Jonathan David | |
| Thanks Simon Charette and Mariusz Felisiak for reviews and mentoring this Google Summer of Code 2022 project. | |||
| 2022-08-30 | Refs #30947 -- Changed tuples to lists where appropriate. | Alex Morega | |
| 2022-08-15 | Refs #28333 -- Added partial support for filtering against window functions. | Simon Charette | |
| Adds support for joint predicates against window annotations through subquery wrapping while maintaining errors for disjointed filter attempts. The "qualify" wording was used to refer to predicates against window annotations as it's the name of a specialized Snowflake extension to SQL that is to window functions what HAVING is to aggregates. While not complete the implementation should cover most of the common use cases for filtering against window functions without requiring the complex subquery pushdown and predicate re-aliasing machinery to deal with disjointed predicates against columns, aggregates, and window functions. A complete disjointed filtering implementation should likely be deferred until proper QUALIFY support lands or the ORM gains a proper subquery pushdown interface. | |||
| 2022-08-02 | Doc'd TextField.db_collation as optional. | Carlton Gibson | |
| Matches CharField.db_collation docs. Thanks to Paolo Melchiorre for the report. | |||
| 2022-07-26 | Fixed #33820 -- Doc'd "true"/"false"/"null" caveat for JSONField key ↵ | Mariusz Felisiak | |
| transforms on SQLite. Thanks Johnny Metz for the report. Regression in 71ec102b01fcc85acae3819426a4e02ef423b0fa. | |||
| 2022-07-12 | Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes. | David Wobrock | |
| This also deprecates AlterIndexTogether migration operation. | |||
| 2022-07-08 | Fixed #33718 -- Dropped support for MySQL 5.7. | Mariusz Felisiak | |
| 2022-05-31 | Fixed docs build with sphinxcontrib-spelling 7.5.0+. | Mariusz Felisiak | |
| sphinxcontrib-spelling 7.5.0+ includes captions of figures in the set of nodes for which the text is checked. | |||
| 2022-05-24 | Fixed #33724 -- Doc'd exclude argument changes in model validation. | Mariusz Felisiak | |
| Thanks אורי for the report. Follow up to 1ea7e3157d1f9b4db71e768d75ea57e47dbd49f9. | |||
| 2022-05-19 | Fixed #33717 -- Dropped support for PostgreSQL 11. | Mariusz Felisiak | |
| 2022-05-18 | Refs #30581 -- Updated count of steps in model validation docs. | Joachim Jablon | |
| Follow-up to 667105877e6723c6985399803a364848891513cc. | |||
| 2022-05-17 | Removed versionadded/changed annotations for 4.0. | Carlton Gibson | |
| 2022-05-12 | Fixed #33543 -- Deprecated passing nulls_first/nulls_last=False to OrderBy ↵ | Mariusz Felisiak | |
| and Expression.asc()/desc(). Thanks Allen Jonathan David for the initial patch. | |||
| 2022-05-10 | Fixed #30581 -- Added support for Meta.constraints validation. | Gagaro | |
| Thanks Simon Charette, Keryn Knight, and Mariusz Felisiak for reviews. | |||
| 2022-05-06 | Fixed #33680 -- Corrected example of customizing model loading in docs. | Ali Toosi | |
| 2022-05-04 | Fixed #33675 -- Dropped support for PostgreSQL 10 and PostGIS 2.4. | Mariusz Felisiak | |
| 2022-04-28 | Removed hyphen from pre-/re- prefixes. | David | |
| "prepopulate", "preload", and "preprocessing" are already in the spelling_wordlist. This also removes hyphen from double "e" combinations with "pre" and "re", e.g. preexisting, preempt, reestablish, or reenter. See also: - https://ahdictionary.com/word/search.html?q=rerun - https://ahdictionary.com/word/search.html?q=recreate - https://ahdictionary.com/word/search.html?q=predetermined - https://ahdictionary.com/word/search.html?q=reuse - https://ahdictionary.com/word/search.html?q=reopening | |||
| 2022-04-26 | Fixed #33646 -- Added async-compatible interface to QuerySet. | Andrew Godwin | |
| Thanks Simon Charette for reviews. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2022-04-20 | Refs #33508 -- Corrected note about MySQL/MariaDB support of index ordering. | Hannes Ljungberg | |
| 2022-03-28 | Corrected models.FileField signature in docs. | Sih Sîng-hông薛丞宏 | |
| 2022-03-24 | Refs #32365 -- Removed internal uses of utils.timezone.utc alias. | Carlton Gibson | |
| Remaining test case ensures that uses of the alias are mapped canonically by the migration writer. | |||
| 2022-03-17 | Added missing backticks to function names. | Mariusz Felisiak | |
| 2022-03-16 | Doc'd BaseConstraint. | Gagaro | |
| 2022-03-10 | Changed some words to use inline markup. | David Smith | |
