summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2021-03-30[3.2.x] Removed dead link in docs/topics/http/sessions.txt.arcanemachine
Backport of 4a80d0f22021bb0af842f038eba45958e9576bec from main
2021-03-26[3.2.x] Added missing mode="rb" argument to open() call in Client.post() ↵John
example in docs. Backport of 509d266c6aae5e4d5738fe2a2cba0bde581aac2b from main
2021-03-19[3.2.x] Refs #25735 -- Added tags/exclude_tags arguments to DiscoverRunner docs.Mariusz Felisiak
Backport of 37044817f9a57126d655f216019e8c8cca7c151b from main
2021-03-19[3.2.x] Added parallel argument to DiscoverRunner docs.Mariusz Felisiak
Follow up to cd9fcd4e8073490a52c9e79133ada4661cb7db38. Backport of f099ef3ef53f88160d04d7dcc73859801b05a83e from main
2021-03-19[3.2.x] Corrected DiscoverRunner.build_suite() signature.Mariusz Felisiak
Follow up to 9012833af857e081b515ce760685b157638efcef. Backport of fc6fba0aa9e4575c9a1c23ad7031eebb1c112868 from main
2021-03-18[3.2.x] Fixed #32547 -- Corrected notes about validation in HTML assertions ↵Hasan Ramezani
docs. Backport of ceb4b9ee68dffc6ab0398886f1758f15f037c472 from main
2021-03-17[3.2.x] Fixed typo in docs/topics/testing/advanced.txt.Jozef
Backport of 6993e1bf6dff04b6e3ab284b154397b341463b50 from main
2021-03-05[3.2.x] Fixed #32507 -- Added link to assertHTMLEqual() in assertInHTML() docs.Jacob Walls
Backport of 286fb73b6962d197ed0cf041755fb724cfe08600 from master
2021-03-02[3.2.x] Fixed #32271 -- Improved consistency of docs CBV examples.Jack Aitken
Co-Authored-By: Carles Pina i Estany <carles@pina.cat> Backport of 5fd4f22d196fbe9913884259ddedad10e6156a44 from master
2021-02-26[3.2.x] Fixed typos in assertQuerysetEqual() docs and 1.6 release notes.Jacob Walls
Backport of 0c7e880e13b837dd76276c04ebdc338bb76d1379 from master
2021-02-25[3.2.x] Fixed indentation in docs/topics/i18n/translation.txt.Camilo Nova
Backport of f6f430d3ff9ca254826e9fcaa968ba02018c6c83 from master
2021-02-24[3.2.x] Refs #31811 -- Corrected DiscoverRunner.setup_databases() signature.Mariusz Felisiak
Accidentally changed in 61a0ba43cfd4ff66f51a9d73dcd8ed6f6a6d9915. Backport of af685b5f00a2a38ec596ff905d5f70455185b6d7 from master
2021-02-23[3.2.x] Fixed #32471 -- Doc'd the return value of EmailMessage.send().Hasan Ramezani
Backport of b1af2cca3aba4cefc69c986d4de6cab6db524bf3 from master
2021-02-22[3.2.x] Refs #4027 -- Added Model._state.adding to docs about copying model ↵Johannes Wilm
instances. Backport of 0fd05df7b5690fb1b675e1b4d9c92bb22ff74360 from master
2021-02-12[3.2.x] Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt.David Smith
Backport of e412b288455dd3ea6f1d65c8ec5d01751e489976 from master
2021-02-08[3.2.x] Fixed #32408 -- Doc'd django.views.generic.detail.BaseDetailView.Anil Khatri
Backport of de4492fbb1e48f8b258baa182220d4247f345177 from master
2021-01-28[3.2.x] Modernized custom manager exampleAdam Johnson
Since this example was added 15 years ago in a8ccdd0fcd631e8e928ef20547e1fe3e313dc607, the ORM has gained the ability to do the `COUNT(*)` related query, so do it with the ORM to avoid misleading users that raw SQL is only supported from manager methods. Backport of 59e503b6708d41a44f2aa320272de3e2ecb5d65c from master
2021-01-27[3.2.x] Changed "Don't overuse count() or exists()" example to Python.Adam Johnson
Backport of 8a642b88c31787fde612ba72d4b282e1c2444035 from master
2021-01-19[3.2.x] Refs #32365 -- Allowed use of non-pytz timezone implementations.Paul Ganssle
Backport of 10d126198434810529e0220b0c6896ed64ca0e88 from master
2021-01-19[3.2.x] Corrected versionadded annotations.Mariusz Felisiak
Backport of 73ffc73b68d3c1fc1e51f13963718492303a2941 from master
2021-01-14Fixed #31358 -- Increased salt entropy of password hashers.Jon Moroney
Co-authored-by: Florian Apolloner <florian@apolloner.eu>
2021-01-14Fixed cross-link in CBV topic documentation.Carles Pina Estany
2021-01-13Fixed #16117 -- Added decorators for admin action and display functions.Nick Pope
Refs #25134, #32099.
2021-01-06Refs #32191 -- Added Signer.sign_object()/unsign_object().Florian Apolloner
Co-authored-by: Craig Smith <hello@craigiansmith.com.au>
2021-01-05Fixed #32231 -- Allowed passing None params to QuerySet.raw().Alexander Lyabah
2020-12-23Removed forms-MAX_NUM_FORMS POST data in docsJon Dufresne
The field is ignored server-side and only exists as a client-side convenience. Removing it slightly simplifies the documentation and avoids some distractions. Added note:: for MIN_NUM_FORMS/MAX_NUM_FORMS in Understanding the management form section. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-12-17Refs #30181 -- Corrected note about storing None in the cache.Nick Pope
2020-12-15Fixed #31007 -- Allowed specifying type of auto-created primary keys.Tom Forbes
This also changes the default type of auto-created primary keys for new apps and projects to BigAutoField.
2020-12-15Added backticks to code literals in various docs.Jon Dufresne
2020-12-09Fixed #32193 -- Deprecated MemcachedCache.Mariusz Felisiak
2020-12-08Adjusted formatting of ngettext docs code examples.Matthias Kestenholz
2020-12-08Fixed #32233 -- Cleaned-up duplicate connection functionality.Florian Apolloner
2020-12-03Fixed #32235 -- Made ReadOnlyPasswordHashField disabled by default.Timo Ludwig
2020-11-27Fixed #32220 -- Added durable argument to transaction.atomic().Ian Foote
2020-11-27Fixed #25534, Fixed #31639 -- Added support for transform references in ↵Ian Foote
expressions. Thanks Mariusz Felisiak and Simon Charette for reviews.
2020-11-17Fixed #32199 -- Doc'd JSONField in ModelForm field mapping.sage
2020-11-13Changed docs and a code comment to use gender-neutral pronouns.Nick Pope
Follow up to e1b77238171cc96f4451a06fb4682e2378896238.
2020-11-12Fixed #32187 -- Removed unnecessary select_related in queries doc.Hasan Ramezani
2020-11-10Fixed #32176 -- Clarified filesystem cache docs.Carles Pina Estany
2020-11-06Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani
This also replaces assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() where appropriate. Co-authored-by: Peter Inglesby <peter.inglesby@gmail.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-11-05Fixed #22276 -- Fixed crash when formset management form is invalid.Jon Dufresne
Co-authored-by: Patryk Zawadzki <patrys@room-303.com>
2020-11-04Fixed #31983 -- Added system check for file system caches location.christa
Thanks Johannes Maron and Nick Pope for reviews.
2020-11-04Fixed #32159 -- Ensured AsyncRequestFactory correctly sets headers.Carlton Gibson
2020-10-29Fixed #26962 -- Doc'd running migrations in transactions.Caio Ariede
2020-10-27Fixed #32128 -- Added asgiref 3.3 compatibility.Carlton Gibson
Thread sensitive parameter is True by default from asgiref v3.3.0. Added an explicit thread_sensitive=False to previously implicit uses.
2020-10-26Corrected output of rendered formset example in model formsets docs.Jon Dufresne
2020-10-22Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior.Carlton Gibson
2020-10-22Refs #9475 -- Linked through_default docs to related managers methods.Simon Charette
2020-10-18Fixed typo in docs/topics/testing/tools.txt.Jacob Walls
2020-10-13Fixed typo in docs/topics/i18n/translation.txt.shivam sharma