| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 example | Adam 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-14 | Fixed #31358 -- Increased salt entropy of password hashers. | Jon Moroney | |
| Co-authored-by: Florian Apolloner <florian@apolloner.eu> | |||
| 2021-01-14 | Fixed cross-link in CBV topic documentation. | Carles Pina Estany | |
| 2021-01-13 | Fixed #16117 -- Added decorators for admin action and display functions. | Nick Pope | |
| Refs #25134, #32099. | |||
| 2021-01-06 | Refs #32191 -- Added Signer.sign_object()/unsign_object(). | Florian Apolloner | |
| Co-authored-by: Craig Smith <hello@craigiansmith.com.au> | |||
| 2021-01-05 | Fixed #32231 -- Allowed passing None params to QuerySet.raw(). | Alexander Lyabah | |
| 2020-12-23 | Removed forms-MAX_NUM_FORMS POST data in docs | Jon 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-17 | Refs #30181 -- Corrected note about storing None in the cache. | Nick Pope | |
| 2020-12-15 | Fixed #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-15 | Added backticks to code literals in various docs. | Jon Dufresne | |
| 2020-12-09 | Fixed #32193 -- Deprecated MemcachedCache. | Mariusz Felisiak | |
| 2020-12-08 | Adjusted formatting of ngettext docs code examples. | Matthias Kestenholz | |
| 2020-12-08 | Fixed #32233 -- Cleaned-up duplicate connection functionality. | Florian Apolloner | |
| 2020-12-03 | Fixed #32235 -- Made ReadOnlyPasswordHashField disabled by default. | Timo Ludwig | |
| 2020-11-27 | Fixed #32220 -- Added durable argument to transaction.atomic(). | Ian Foote | |
| 2020-11-27 | Fixed #25534, Fixed #31639 -- Added support for transform references in ↵ | Ian Foote | |
| expressions. Thanks Mariusz Felisiak and Simon Charette for reviews. | |||
| 2020-11-17 | Fixed #32199 -- Doc'd JSONField in ModelForm field mapping. | sage | |
| 2020-11-13 | Changed docs and a code comment to use gender-neutral pronouns. | Nick Pope | |
| Follow up to e1b77238171cc96f4451a06fb4682e2378896238. | |||
| 2020-11-12 | Fixed #32187 -- Removed unnecessary select_related in queries doc. | Hasan Ramezani | |
| 2020-11-10 | Fixed #32176 -- Clarified filesystem cache docs. | Carles Pina Estany | |
| 2020-11-06 | Fixed #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-05 | Fixed #22276 -- Fixed crash when formset management form is invalid. | Jon Dufresne | |
| Co-authored-by: Patryk Zawadzki <patrys@room-303.com> | |||
| 2020-11-04 | Fixed #31983 -- Added system check for file system caches location. | christa | |
| Thanks Johannes Maron and Nick Pope for reviews. | |||
| 2020-11-04 | Fixed #32159 -- Ensured AsyncRequestFactory correctly sets headers. | Carlton Gibson | |
| 2020-10-29 | Fixed #26962 -- Doc'd running migrations in transactions. | Caio Ariede | |
| 2020-10-27 | Fixed #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-26 | Corrected output of rendered formset example in model formsets docs. | Jon Dufresne | |
| 2020-10-22 | Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior. | Carlton Gibson | |
| 2020-10-22 | Refs #9475 -- Linked through_default docs to related managers methods. | Simon Charette | |
| 2020-10-18 | Fixed typo in docs/topics/testing/tools.txt. | Jacob Walls | |
| 2020-10-13 | Fixed typo in docs/topics/i18n/translation.txt. | shivam sharma | |
| 2020-10-08 | Fixed #32083 -- Added link back to migrating section in multi-db docs example. | Carlton Gibson | |
| 2020-10-07 | Fixed #32002 -- Added headers parameter to HttpResponse and subclasses. | Tom Carrick | |
| 2020-09-28 | Fixed #32042 -- Improved error messages for the number of submitted forms in ↵ | meghanabhange | |
| formsets. | |||
| 2020-09-22 | Fixed #32016 -- Clarified manual logging config docs. | Carlton Gibson | |
| 2020-09-22 | Fixed #32004 -- Clarified docs for when request.FILES is set. | János Roden | |
| Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> | |||
| 2020-09-17 | Doc'd that UpdateCacheMiddleware and cache_page affect downstream caches. | David D Lowe | |
| Thanks to Nick Pope for review. | |||
| 2020-09-16 | Fixed #29887 -- Added a cache backend for pymemcache. | Nick Pope | |
| 2020-09-14 | Fixed #31789 -- Added a new headers interface to HttpResponse. | Tom Carrick | |
| 2020-09-04 | Fixed #31894 -- Added note about using JSONField key lookups with ↵ | jpribyl | |
| QuerySet.exclude() in docs. | |||
| 2020-09-03 | Refs #31224 -- Made sync_to_async() examples use thread sensitive with ORM ↵ | Mariusz Felisiak | |
| calls. | |||
| 2020-09-03 | Fixed #31979 -- Made django.test.utils.setup_databases()'s time_keeper ↵ | Jon Dufresne | |
| argument optional. | |||
| 2020-09-02 | Refs #29887, Refs #24212 -- Added servers configuration hook for memcached ↵ | Nick Pope | |
| backends. The servers property can be overridden to allow memcached backends to alter the server configuration prior to it being passed to instantiate the client. This allows avoidance of documentation for per-backend differences, e.g. stripping the 'unix:' prefix for pylibmc. | |||
| 2020-08-31 | Corrected note about long names in search docs. | Abdullah Dursun | |
| 2020-08-20 | Improved wording in async views docs. | Juan Pedro Fisanotti | |
