summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2021-03-29Fixed #31487 -- Added precision argument to Round().Nick Pope
2021-03-26Fixed #32591 -- Made DiscoverRunner order _FailedTest objects first.Chris Jerdonek
Failures detected when loading tests are ordered before all of the above for quicker feedback. This includes things like test modules that couldn't be found or that couldn't be loaded due to syntax errors.
2021-03-26Added missing mode="rb" argument to open() call in Client.post() example in ↵John
docs.
2021-03-26Fixed #32580 -- Doc'd that HttpRequest.get_host() may raise DisallowedHost.sreehari1997
2021-03-25Refs #31003 -- Moved note about return value of QuerySet.bulk_create() to ↵Claude Paroz
the first paragraph.
2021-03-25Doc'd that RawSQL can be used with __in.Simon Willison
2021-03-24Refs #32460 -- Doc'd and tested that property names of model choice enums ↵Nick Pope
cannot be used as members.
2021-03-24Fixed page numbers in Paginator.get_elided_page_range() example in docs.Jannis Vajen
2021-03-23Fixed #32573 -- Fixed bounds in __iso_year lookup optimization.Florian Demmer
2021-03-23Fixed #32483 -- Fixed QuerySet.values()/values_list() on JSONField key ↵Mariusz Felisiak
transforms with booleans on SQLite. Thanks Matthew Cornell for the report.
2021-03-22Fixed #32576 -- Corrected dumpdata docs for passing model names to the ↵tim-mccurrach
--exclude option.
2021-03-19Fixed #32556 -- Fixed handling empty string as non-boolean attributes value ↵Baptiste Mispelon
by assertHTMLEqual().
2021-03-19Fixed #32570 -- Removed unnecessary default_auto_field in app config example.kshitijraghav
2021-03-19Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.core.Daniyal
2021-03-19Refs #25735 -- Added tags/exclude_tags arguments to DiscoverRunner docs.Mariusz Felisiak
2021-03-19Added parallel argument to DiscoverRunner docs.Mariusz Felisiak
Follow up to cd9fcd4e8073490a52c9e79133ada4661cb7db38.
2021-03-19Corrected DiscoverRunner.build_suite() signature.Mariusz Felisiak
Follow up to 9012833af857e081b515ce760685b157638efcef.
2021-03-18Fixed #16010 -- Added Origin header checking to CSRF middleware.Tim Graham
Thanks David Benjamin for the original patch, and Florian Apolloner, Chris Jerdonek, and Adam Johnson for reviews.
2021-03-18Refs #16010 -- Required CSRF_TRUSTED_ORIGINS setting to include the scheme.Tim Graham
2021-03-18Fixed #31370 -- Added support for parallel tests with --buffer.Adam Johnson
2021-03-18Fixed #32547 -- Corrected notes about validation in HTML assertions docs.Hasan Ramezani
2021-03-17Fixed #32560 -- Fixed test runner with --pdb and --buffer on fail/error.Adam Johnson
2021-03-17Fixed typo in docs/topics/testing/advanced.txt.Jozef
2021-03-16Fixed #32353 -- Confirmed support for PROJ 7.X.Mariusz Felisiak
2021-03-16Fixed #32536 -- Added links to BaseDetailView/BaseListView.get() methods in ↵Hasan Ramezani
CBV docs.
2021-03-15Fixed typo in docs/ref/checks.txt.Hasan Ramezani
2021-03-15Updated datum directory for PROJ 6 in GIS install instructions.Mariusz Felisiak
2021-03-11Fixed #32529 -- Delayed creating a test suite in build_suite().Chris Jerdonek
2021-03-10Refs #32508 -- Raised TypeError instead of using "assert" on unsupported ↵Mariusz Felisiak
operations for sliced querysets.
2021-03-09Updated link to Selenium webdrivers.Mariusz Felisiak
2021-03-09Updated Git branch "master" to "main".Markus Holtermann
This change follows a long discussion on django-develops: https://groups.google.com/g/django-developers/c/tctDuKUGosc/
2021-03-06Fixed #24141 -- Added QuerySet.contains().Johan Schiff
2021-03-05Fixed #32507 -- Added link to assertHTMLEqual() in assertInHTML() docs.Jacob Walls
2021-03-04Refs #32483 -- Doc'd caveat about using JSONField key transforms to booleans ↵Mariusz Felisiak
with QuerySet.values()/values_list() on SQLite.
2021-03-04Fixed typo in docs/ref/contrib/postgres/fields.txt.Mariusz Felisiak
2021-03-04Corrected messages of admin checks for invalid model field names.Hasan Ramezani
2021-03-04Corrected admin.E023 message in docs.Hasan Ramezani
2021-03-03Refs #32412 -- Adjusted Contributing Guide start page.GabbyPrecious
* Added headers emphasising Work on the framework vs Join the community sections, to raise the visibility of the community section. * Added callouts to three main code/docs/translations areas, linking to respective start pages. * Moved some Writing code specific content from the start page to the Writing code index. This clarifies the start page and adds content to the previously empty Writing code index. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2021-03-03Fixed #27854 -- Added system check for nonexistent directories in ↵Jacob Walls
STATICFILES_DIRS setting.
2021-03-03Fixed #32493 -- Removed redundant never_cache uses from admin views.tim-mccurrach
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2021-03-03Updated links to djangoproject.com/code.djangoproject.com repositories.Mariusz Felisiak
2021-03-02Fixed #32271 -- Improved consistency of docs CBV examples.Jack Aitken
Co-Authored-By: Carles Pina i Estany <carles@pina.cat>
2021-03-01Fixed #32456 -- Added dbshell support for specifying a password file on ↵Hasan Ramezani
PostgreSQL.
2021-02-26Used GitHub actions for docs tests.Mariusz Felisiak
Co-Authored-By: Tom Forbes <tom@tomforb.es>
2021-02-26Fixed #20423 -- Doc'd that DTL variable names may not be a number.tim-mccurrach
2021-02-26Fixed typos in assertQuerysetEqual() docs and 1.6 release notes.Jacob Walls
2021-02-25Fixed indentation in docs/topics/i18n/translation.txt.Camilo Nova
2021-02-25Added stub release notes for 3.1.8.Mariusz Felisiak
2021-02-25Updated links to DEPs.Markus Holtermann
2021-02-24Fixed #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.