summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2023-03-22[4.2.x] Fixed #34409 -- Doc'd limitation of dictfetchall() and ↵Jesper Olsson
namedtuplefetchall() examples. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Backport of 216eb63883050f6a3bf5d306e42972e7a6b6dff5 from main
2023-03-22[4.2.x] Doc'd use of asgiref.sync adapters with sensitive variables.Carlton Gibson
Backport of 6087bc4e15e89d968396807f8485f4b5624c4f03 from main.
2023-03-22[4.2.x] Fixed typo in docs/topics/class-based-views/mixins.txt.amirsoroush
Backport of 6087bc4e15e89d968396807f8485f4b5624c4f03 from main
2023-03-08[4.2.x] Fixed #34384 -- Fixed session validation when rotation secret keys.David Wobrock
Bug in 0dcd549bbe36c060f536ec270d34d9e7d4b8e6c7. Thanks Eric Zarowny for the report. Backport of 2396933ca99c6bfb53bda9e53968760316646e01 from main
2023-03-01[4.2.x] Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-03-01[4.2.x] Refs #34140 -- Made minor edits to rst code-blocks.Mariusz Felisiak
Backport of 9cf2a5df70051dffcefe21c6b27203e2d5804922 from main
2023-02-28[4.2.x] Refs #34140 -- Corrected rst code-block and various formatting ↵Joseph Victor Zammit
issues in docs. Backport of ba755ca13123d2691a0926ddb64e5d0a2906a880 from main
2023-02-15[4.2.x] Refs #32339 -- Doc'd BaseFormSet.as_div()David Smith
Backport of 4038a8df0b8c20624ba826cf9af8f532e5a51aaa from main
2023-02-14[4.2.x] Fixed #34328 -- Added async-only class-based middleware example.Carlton Gibson
Backport of ce8189eea007882bbe6db22f86b0965e718bd341 from main
2023-02-13[4.2.x] Fixed #29994 -- Added warning about performance of FileBasedCache ↵Sarah Boyce
with a large number of files. Co-authored-by: sheenarbw <699166+sheenarbw@users.noreply.github.com> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Backport of 1eb94bc8dab46dfa117d21ef4f3b52aebb593615 from main
2023-02-10[4.2.x] Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson
Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews. Backport of 534ac4829764f317cf2fbc4a18354fcc998c1425 from main.
2023-02-09[4.2.x] Fixed #34311 -- Updated serialization docs from unique_together to ↵Willem Van Onsem
UniqueConstraint. Backport of 292aacaf6c3d6956ca2c51c41e36dbf425389346 from main
2023-02-07[4.2.x] Fixed #34310 -- Added deletion example to one-to-one topic.Marcelo Galigniana
Backport of 7c6195ef81075b03a704431b5d08ec597e8573f7 from main
2023-01-31[4.2.x] Fixed #34180 -- Added note about resetting language in test tear-downs.Durval Carvalho
Co-authored-by: Faris Naimi <farisfaris66@gmail.com> Backport of 40217d1a82b0c16cddba377325d12b2c253f402a from main
2023-01-30[4.2.x] Fixed typo in docs/topics/auth/passwords.txt.fschwebel
Wrapped hashing is only possible if the inner wrapped function is the same as the previous hasher. Backport of 0265b1b49ba10f957abfd1311d0bae0ecefc3111 from main
2023-01-16Fixed #23718 -- Doc'd that test mirrors require TransactionTestCase.sarahboyce
Co-authored-by: Christian Bundy <me@christianbundy.com>
2023-01-12Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda
2023-01-12Fixed #26029 -- Allowed configuring custom file storage backends.Jarosław Wygoda
2023-01-10Fixed #34110 -- Added in-memory file storage.Francesco Panico
Thanks Paolo Melchiorre, Carlton Gibson, and Mariusz Felisiak for reviews.
2023-01-04Refs #34074 -- Used headers argument for RequestFactory and Client in docs ↵David Wobrock
and tests.
2022-12-29Fixed #25617 -- Added case-insensitive unique username validation in ↵Paul Schilling
UserCreationForm. Co-Authored-By: Neven Mundar <nmundar@gmail.com>
2022-12-22Fixed #33735 -- Added async support to StreamingHttpResponse.Carlton Gibson
Thanks to Florian Vazelle for initial exploratory work, and to Nick Pope and Mariusz Felisiak for review.
2022-12-20Refs #34118 -- Adopted asgiref coroutine detection shims.Carlton Gibson
Thanks to Mariusz Felisiak for review.
2022-12-19Fixed typo in docs/topics/async.txt.Mariusz Felisiak
2022-12-16Fixed typo in docs/topics/http/sessions.txt.TAKAHASHI Shuuji
2022-12-15Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo
Thanks Simon Charette, Tim Graham, and Adam Johnson for reviews. Co-authored-by: Florian Apolloner <florian@apolloner.eu> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2022-12-09Fixed #33199 -- Deprecated passing positional arguments to ↵SirAbhi13
Signer/TimestampSigner. Thanks Jacob Walls for the implementation idea.
2022-12-01Refs #33308 -- Deprecated support for passing encoded JSON string literals ↵Simon Charette
to JSONField & co. JSON should be provided as literal Python objects an not in their encoded string literal forms.
2022-11-29Fixed #34187 -- Made UserCreationForm save many-to-many fields.sdolemelipone
2022-11-28Doc's check_password()'s setter and preferred arguments.Mariusz Felisiak
Follow up to 90e05aaeac612a4251640564aa65f103ac635e12.
2022-11-24Adjusted BaseFormSet.get_form_kwargs example in docs.Riccardo Magliocchetti
2022-11-23Fixed typo in settings topic doc.KrishnaKumar Thanki
2022-11-23Refs #32873 -- Adjusted formatting note on USE_L10N default.Anders Hovmöller
2022-11-14Refs #34099 -- Doc'd that custom Model.save() should update update_fields kwarg.sarahboyce
2022-11-14Fixed #34074 -- Added headers argument to RequestFactory and Client classes.David Wobrock
2022-11-14Fixed #34154 -- Made mixin headers consistent in auth docs.Tony Lechner
2022-11-10Updated documentation and comments for RFC updates.Nick Pope
- Updated references to RFC 1123 to RFC 5322 - Only partial as RFC 5322 sort of sub-references RFC 1123. - Updated references to RFC 2388 to RFC 7578 - Except RFC 2388 Section 5.3 which has no equivalent. - Updated references to RFC 2396 to RFC 3986 - Updated references to RFC 2616 to RFC 9110 - Updated references to RFC 3066 to RFC 5646 - Updated references to RFC 7230 to RFC 9112 - Updated references to RFC 7231 to RFC 9110 - Updated references to RFC 7232 to RFC 9110 - Updated references to RFC 7234 to RFC 9111 - Tidied up style of text when referring to RFC documents
2022-11-10Improved readability of string interpolation in frequently used examples in ↵Trey Hunner
docs.
2022-11-10Improved async request factory and client docs.David Wobrock
2022-11-09Fixed #34135 -- Added async-compatible interface to related managers.Jon Janzen
2022-11-04Refs #33939 -- Improved transaction.on_commit() docs.Adam Johnson
2022-11-02Fixed #30801 -- Improved guidance for making good use of signals.Joseph Victor Zammit
2022-11-02Fixed #34112 -- Added async-compatible interface to Model methods.DevilsAutumn
Thanks Adam Johnson for the review.
2022-11-02Fixed #34054 -- Created a new fixtures topic.Filip Lajszczak
Moved material from django-admin document into a new document, and added new material. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2022-10-29Removed obsolete doc reference to asyncio.iscoroutinefunction.Nick Pope
2022-10-10Fixed #25996 -- Revised performance section in URLs topic docs.Ralph Reid
2022-10-08Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to ↵Gregor Gärtner
assertQuerySetEqual(). Co-Authored-By: Michael Howitz <mh@gocept.com>
2022-10-07Refs #33990 -- Renamed SimpleTestCase.assertFormsetError() to ↵Gregor Gärtner
assertFormSetError(). Co-Authored-By: Michael Howitz <mh@gocept.com>
2022-10-07Fixed #33797 -- Prioritized cached database backend for cached sessions in docs.J.V. Zammit
Co-authored-by: Adam Johnson <me@adamj.eu>
2022-09-29Fixed #33026 -- Mentioned RequestFactory in testing tools docs.Chris Wedgwood