summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2020-09-22Fixed #32004 -- Clarified docs for when request.FILES is set.János Roden
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-09-17Doc'd that UpdateCacheMiddleware and cache_page affect downstream caches.David D Lowe
Thanks to Nick Pope for review.
2020-09-16Fixed #29887 -- Added a cache backend for pymemcache.Nick Pope
2020-09-14Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick
2020-09-04Fixed #31894 -- Added note about using JSONField key lookups with ↵jpribyl
QuerySet.exclude() in docs.
2020-09-03Refs #31224 -- Made sync_to_async() examples use thread sensitive with ORM ↵Mariusz Felisiak
calls.
2020-09-03Fixed #31979 -- Made django.test.utils.setup_databases()'s time_keeper ↵Jon Dufresne
argument optional.
2020-09-02Refs #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-31Corrected note about long names in search docs.Abdullah Dursun
2020-08-20Improved wording in async views docs.Juan Pedro Fisanotti
2020-08-18Fixed #27679 -- Doc'd that empty formsets display extra + min_num forms.David Smith
2020-08-13Refs #31811 -- Added optional timing outputs to the test runner.Ahmad A. Hussein
2020-08-11Added note about password updates on argon2 attributes change.Roy Zheng
2020-08-04Fixed #31842 -- Added DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak
It's a transitional setting helpful in migrating multiple instance of the same project to Django 3.1+. Thanks Markus Holtermann for the report and review, Florian Apolloner for the implementation idea and review, and Carlton Gibson for the review.
2020-07-31Refs #27468 -- Added tests and release notes for signing.dumps()/loads() ↵Mariusz Felisiak
changes. Follow up to 71c4fb7beb8e3293243140e4bd74e53989196440.
2020-07-31Corrected signing.dumps()/loads() signatures in docs.Mariusz Felisiak
2020-07-28Fixed #31829 -- Used JSONField __contains lookup on key transforms.sage
2020-07-28Fixed #31836 -- Dropped support for JSONField __contains and __contained_by ↵Mariusz Felisiak
lookups on SQLite. The current implementation works only for basic examples without supporting nested structures and doesn't follow "the general principle that the contained object must match the containing object as to structure and data contents, possibly after discarding some non-matching array elements or object key/value pairs from the containing object".
2020-07-28Refs #30165 -- Removed leftover 'u' prefix.Claude Paroz
2020-07-28Fixed #31835 -- Dropped support for JSONField __contains lookup on Oracle.Mariusz Felisiak
The current implementation works only for basic examples without supporting nested structures and doesn't follow "the general principle that the contained object must match the containing object as to structure and data contents, possibly after discarding some non-matching array elements or object key/value pairs from the containing object".
2020-07-16Refs #31502 -- Made minor edits to Model._state docs.Adam Johnson
2020-07-13Fixed #30457 -- Added TestCase.captureOnCommitCallbacks().Adam Johnson
2020-07-10Fixed #31509 -- Made DiscoverRunner enable faulthandler by default.ovkulkarni
2020-07-10Refs #27430 -- Added buffer argument to DiscoverRunner docs.Mariusz Felisiak
2020-07-10Refs #30676 -- Added pdb argument to DiscoverRunner docs.Mariusz Felisiak
2020-07-08Fixed #24816 -- Clarified docs about preventing duplicate signals.Jason Held
2020-07-04Fixed #29308 -- Clarified how assertQuerysetEqual()'s transform works.Jacob Walls
2020-07-03Adjusted multi-db example to avoid confusion with DATABASES keys.MansurAliKoroglu
2020-06-24Refs #31493 -- Replaced var with const/let in documentation JS.Adam Johnson
2020-06-24Fixed #31529 -- Added support for serialization of pathlib.Path/PurePath and ↵Nick Pope
os.PathLike in migrations.
2020-06-24Fixed #9061 -- Allowed FormSets to disable deleting extra forms.David Smith
Thanks to Dan Ward for the initial patch.
2020-06-22Refs #5691 -- Made cache keys independent of USE_L10N.Claude Paroz
This mostly reverts af1893c4ff8fdbf227a43a559d90bb1c1238b01a.
2020-06-17Refs #31670 -- Removed whitelist/blacklist terminology in docs and comments.David Smith
2020-06-17Refs #30190 -- Minor edits to JSONL serializer.Mariusz Felisiak
Follow up to e29637681be07606674cdccb47d1e53acb930f5b.
2020-06-16Fixed #30190 -- Added JSONL serializer.Ali Vakilzade
2020-06-15Fixed #31696 -- Updated OWASP links in docs.Hasan Ramezani
2020-06-15Fixed #31690 -- Added note about fuzzy entries in translation docs.sebashwa
2020-06-05Fixed #20347 -- Allowed customizing the maximum number of instantiated forms ↵David Smith
in formsets. Co-authored-by: ethurgood <ethurgood@gmail.com>
2020-06-04Fixed #30134 -- Ensured unlocalized numbers are string representation in ↵Claude Paroz
templates.
2020-06-03Preferred usage of among/while to amongst/whilst.David Smith
2020-06-02Updated link to Celery.David Smith
2020-06-02Fixed #31643 -- Changed virtualenv doc references to Python 3 venv.Jon Dufresne
2020-06-01Made small improvement to docs/topics/db/multi-db.txt.Nikita Sobolev
2020-05-29Changed some doc links to use intersphinx.Jon Dufresne
2020-05-27Fixed some formatting issues in docs.Mariusz Felisiak
2020-05-19Fixed #31591 -- Clarified "reverse" lookup name in making queries docs.Carlton Gibson
2020-05-15Fixed #31395 -- Made setUpTestData enforce in-memory data isolation.Simon Charette
Since it's introduction in Django 1.8 setUpTestData has been suffering from a documented but confusing caveat due to its sharing of attributes assigned during its execution with all test instances. By keeping track of class attributes assigned during the setUpTestData phase its possible to ensure only deep copies are provided to test instances on attribute retreival and prevent manual setUp gymnastic to work around the previous lack of in-memory data isolation. Thanks Adam Johnson for the extensive review.
2020-05-13Used :envvar: role and .. envvar:: directive in various docs.Nick Pope
2020-05-13Used :mimetype: role in various docs.Nick Pope
2020-05-13Used :pep: role in various docs.Nick Pope