| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-26 | Fixed typos in assertQuerysetEqual() docs and 1.6 release notes. | Jacob Walls | |
| 2021-02-25 | Fixed indentation in docs/topics/i18n/translation.txt. | Camilo Nova | |
| 2021-02-24 | Fixed #32446 -- Deprecated SERIALIZE test database setting. | Simon Charette | |
| Whether or not the state of a test database should be serialized can be inferred from the set of databases allowed to be access from discovered TestCase/TransactionTestCase enabling the serialized_rollback feature which makes this setting unnecessary. This should make a significant test suite bootstraping time difference on large projects that didn't explicitly disable test database serialization. | |||
| 2021-02-24 | Refs #31811 -- Corrected DiscoverRunner.setup_databases() signature. | Mariusz Felisiak | |
| Accidentally changed in 61a0ba43cfd4ff66f51a9d73dcd8ed6f6a6d9915. | |||
| 2021-02-23 | Fixed #32471 -- Doc'd the return value of EmailMessage.send(). | Hasan Ramezani | |
| 2021-02-22 | Refs #4027 -- Added Model._state.adding to docs about copying model instances. | Johannes Wilm | |
| 2021-02-12 | Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt. | David Smith | |
| 2021-02-08 | Fixed #28216 -- Added next_page/get_default_redirect_url() to LoginView. | ThinkChaos | |
| 2021-02-08 | Used .. attribute:: directive in authentication views docs. | Mariusz Felisiak | |
| 2021-02-08 | Fixed #32408 -- Doc'd django.views.generic.detail.BaseDetailView. | Anil Khatri | |
| 2021-01-28 | 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. | |||
| 2021-01-27 | Changed "Don't overuse count() or exists()" example to Python. | Adam Johnson | |
| 2021-01-19 | Refs #32365 -- Allowed use of non-pytz timezone implementations. | Paul Ganssle | |
| 2021-01-19 | Corrected versionadded annotations. | Mariusz Felisiak | |
| 2021-01-14 | Refs #31369 -- Removed models.NullBooleanField per deprecation timeline. | Mariusz Felisiak | |
| 2021-01-14 | Removed versionadded/changed annotations for 3.1. | Mariusz Felisiak | |
| 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 | |
