| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-05-20 | [2.2.x] Changed IRC references to Libera.Chat. | Mariusz Felisiak | |
| Backport of 66491f08fe86629fa25977bb3dddda06959f65e7 from main. | |||
| 2019-11-26 | [2.2.x] Used :ticket: role in all tickets links. | Sergey Fedoseev | |
| Backport of abc51d44afcb8482c64c0bb8c1022f11e7eb2bbb from master. | |||
| 2019-11-20 | [2.2.x] Fixed #27164 -- Fixed an example of using routers in multiple ↵ | Caio Ariede | |
| databases docs. Make sure that AuthRouter includes ContentType in the same database. Backport of 608e06023e6eaf75f744134a0fd203853260e616 from master | |||
| 2019-11-12 | [2.2.x] Fixed #30828 -- Added how to remove/insert many-to-many relations in ↵ | David Foster | |
| bulk to the database optimization docs. Backport of 6a04e69e686cf417b469d7676f93c2e3a9c8d6a3 from master | |||
| 2019-11-07 | [2.2.x] Replaced 'n_' prefix with 'number_of_' in docs/topics/db/queries.txt. | René Fleschenberg | |
| Backport of 367634f976ab43db93321bf4eb898449b670e291 from master | |||
| 2019-11-05 | [2.2.x] Refs #30947 -- Changed tuples to lists in model Meta options ↵ | Mariusz Felisiak | |
| examples in docs. Follow up to 97d3321e89c8d4434927bdbc308db1ccffa99d3b. Backport of e5cacb1f47cb3a2943bbc7685a630c84503b0d1b from master | |||
| 2019-10-30 | [2.2.x] Corrected error message in Many-to-many relationships docs. | Mariusz Felisiak | |
| Backport of a370dbd9543703677697e80701b5dbec8c8e7da7 from master | |||
| 2019-10-14 | [2.2.x] Refs #26207 -- Removed obsolete note about slow constructing a model ↵ | Simon Charette | |
| with deferred fields. This is not true since 7f51876 removed the necessity of creating proxy model classes at runtime for each deferred field sets. Backport of 35396a7f243eceec42cc90725ab573a7d9ac3b4c from master | |||
| 2019-07-29 | [2.2.x] Fixed #30656 -- Added QuerySet.bulk_update() to the database ↵ | daniel a rios | |
| optimization docs. Backport of 68aeb9016084290aac4f82860e17a9f4e941676e from master | |||
| 2019-07-29 | [2.2.x] Refs #30656 -- Reorganized bulk methods in the database optimization ↵ | daniel a rios | |
| docs. Backport of fe33fdc049df75f9dd8e2eecc8c94aefc0132cb8 from master | |||
| 2019-06-24 | [2.2.x] Fixed typo in docs/topics/db/models.txt. | Meysam | |
| Backport of 833878411c35e1d47abfb77c23863a9dc9bb6d27 from master | |||
| 2019-06-04 | [2.2.x] Fixed #30505 -- Doc'd how changes in the order of Field.choices ↵ | Caio Ariede | |
| affect migrations. Backport of 5248abe9b0425c1fc989c60a55860cdb4d135bcf from master | |||
| 2019-05-22 | [2.2.x] Fixed #30419 -- Favored Meta.indexes over Meta.index_together in ↵ | Akshesh | |
| optimization docs. Backport of 888fdf182e164fa4b24aa82fa833c90a2b9bee7a from master | |||
| 2019-05-17 | [2.2.x] Changed docs to link to Python's description of iterable. | Jon Dufresne | |
| Backport of e86cc14bd36734d81c4e490a2453778e33b95a45 from master | |||
| 2019-05-15 | [2.2.x] Changed tuple choices to list in docs. | Jon Dufresne | |
| Backport of 97d3321e89c8d4434927bdbc308db1ccffa99d3b from master | |||
| 2019-04-13 | [2.2.x] Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt. | Daniel Musketa | |
| Backport of ba726067604ce5a8ca3919edf653496722b433ab from master | |||
| 2019-03-29 | [2.2.x] Removed unnecessary /static from links to PostgreSQL docs. | Nick Pope | |
| Backport of 198a2a9381a415f76c3170753270f5087ce4475a from master. | |||
| 2019-03-28 | [2.2.x] Used extlinks for Django's source code. | Tim Graham | |
| Backport of a68c029e224cebe540da7447dbbd27993b4aa793 from master. | |||
| 2019-02-25 | [2.2.x] Refs #29683 -- Updated multi-db docs for view permission. | Tim Graham | |
| Backport of 50f09264ae8ab04824fcc6554e8c184378ad2f81 from master | |||
| 2019-01-15 | Fixed #9475 -- Allowed RelatedManager.add(), create(), etc. for m2m with a ↵ | Collin Anderson | |
| through model. | |||
| 2018-12-27 | Followed style guide for model attribute ordering. | Matt Wiens | |
| 2018-11-15 | Used auto-numbered lists in documentation. | François Freitag | |
| 2018-11-13 | Fixed #29940 -- Recommended using the ORM rather than raw SQL. | Katie McLaughlin | |
| 2018-10-13 | Removed unused fields from aggregation docs. | Peter Inglesby | |
| 2018-09-25 | Normalized spelling of "lowercase" and "lowercased". | Jon Dufresne | |
| 2018-09-25 | Refs #29784 -- Normalized Python docs links to omit the version. | Jon Dufresne | |
| 2018-09-14 | Fixed #29756 -- Doc'd that model field names can't end with an underscore. | Tim Graham | |
| 2018-09-13 | Refs #14357 -- Deprecated Meta.ordering affecting GROUP BY queries. | Ramiro Morales | |
| Thanks Ramiro Morales for contributing to the patch. | |||
| 2018-09-10 | Refs #20910 -- Replaced snippet directive with code-block. | Curtis Maloney | |
| 2018-09-10 | Fixed #29573 -- Added links in aggregation topic guide. | Vishvajit Pathak | |
| 2018-08-18 | Fixed #29685 -- Added QuerySet.explain() to the database optimization docs. | Tom Forbes | |
| 2018-07-24 | Fixed #29591 -- Fixed numbering words in ↵ | Tim Graham | |
| docs/topics/db/examples/many_to_many.txt. | |||
| 2018-07-19 | Fixed IntegrityError in docs/topics/db/examples/many_to_one.txt. | Tim Graham | |
| 2018-06-28 | Refs #29513 -- Linked the testing docs from the multi-db topic guide. | Mattia Cattarinussi | |
| 2018-05-17 | Removed versionadded/changed annotations for 2.0. | Tim Graham | |
| 2018-05-12 | Alphabetized imports in various docs. | Mariusz Felisiak | |
| Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f. | |||
| 2018-04-23 | Fixed #29349 -- Doc'd the default behavior of router.allow_relation(). | Stefan R. Filipek | |
| 2018-04-19 | Fixed #29337 -- Added __len__() & __bool__() to RawQuerySet. | Adnan Umer | |
| 2018-04-19 | Fixed #29339 -- Added result caching to RawQuerySet. | Adnan Umer | |
| 2018-04-11 | Fixed typo in docs/topics/db/managers.txt. | Luoxzhg | |
| 2018-04-10 | Fixed mistakes in docs/topics/db/examples/many_to_one.txt. | Luoxzhg | |
| 2018-03-20 | Fixed #28514 -- Clarifed docs about idempotence of RelatedManager.add(). | Jezeniel Zapanta | |
| 2018-03-20 | Refs #11278 -- Clarified RelatedManager differences between reverse ↵ | Denis | |
| one-to-many and many-to-many relations. | |||
| 2018-03-13 | Fixed #29192 -- Corrected docs regarding overriding fields from abstract ↵ | ovalseven8 | |
| base classes. | |||
| 2018-01-07 | Updated various links in docs to use HTTPS. | Mariusz Felisiak | |
| 2017-11-28 | Fixed #28853 -- Updated connection.cursor() uses to use a context manager. | Jon Dufresne | |
| 2017-11-23 | Linked to prefetch_related_objects func in DB optimization docs. | Luke Plant | |
| 2017-11-07 | Fixed #28770 -- Warned that quoting a placeholder in a raw SQL string is unsafe. | Tim Graham | |
| Thanks Hynek Cernoch for the report and review. | |||
| 2017-11-07 | Fixed typo in docs/topics/db/aggregation.txt. | Tim Graham | |
| 2017-10-30 | Fixed 'a'/'an' mix-ups in docs. | Ville Skyttä | |
