summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2020-03-25[3.0.x] Added additional note that tests use locmem email backend.Adam Johnson
Backport of f344c75fb09f75879334740f1f8a09c176d93c12 from master
2020-03-25[3.0.x] Improved docs on migration reversibility.Adam Johnson
- Clarify reversibility for RunSQL and RunPython operations. - Add example for migrate with irreversible migration. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Backport of b15b3706fec8ef59577ac47118ee0c62132a03a6 from master
2020-03-25[3.0.x] Improved sessions notes in deployment checklist.Adam Johnson
- Added note to clear old sessions when using database-backend. - Made note to consider the cache backend more generic. Backport of 66b06822d05ca1cf897745e7cb3c89adc53363ba from master
2020-03-17[3.0.x] Fixed typo in docs/topics/async.txt.Carlton Gibson
Backport of f622b490106289e78c727c464d001e01a4f71d8b from master
2020-03-17[3.0.x] Made logging config examples more accessible.Ben Li-Sauerwine
- Show an initial example configuring the root logger to output to the console. - Then add more logging from the `django` named logger. - Then show the file and more complex examples. Adjusted surrounding text for reading flow. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Backport of fc84848cd9509409e420b21b6db697f22f2c82a4 from master
2020-03-17[3.0.x] Corrected outdated sentence in One-to-one relationships docs.Philipp Bosch
Backport of f75af5b67bac58d6c6d043d5e9e14bd0908505dd from master
2020-03-13[3.0.x] Refs #31224 -- Doc'd async adapter functions.Andrew Godwin
Backport of 40a64dd1e24d45f8e00a55b22a5174b8f1359b5c from master
2020-03-10[3.0.x] Fixed #30439 -- Added support for different plural forms for a language.Claude Paroz
Thanks to Michal Čihař for review. Backport of e3e48b00127c09eafe6439d980a82fc5c591b673 from master
2020-03-10[3.0.x] Fixed #27865 -- Adjusted docs example to avoid confusion with ↵Adam Radwon
models.BaseManager. Backport of a2f554249ec07d4643643773a995579f98564ac1 from master
2020-03-09[3.0.x] Fixed #31350 -- Fixed typo in docs/topics/db/optimization.txt.Shrikrishna Singh
Backport of 370628673b98ada302c3930865c4bfde2d8ed5a1 from master
2020-03-06[3.0.x] Added missing backticks in various docs.Mariusz Felisiak
Backport of 30ca66eadd1135d220ae1f0570bb0244c26b9d29 from master
2020-03-06[3.0.x] Fixed #31342 -- Clarified docs about using base managers for related ↵Carlton Gibson
objects. Backport of 08a6215d334f88f16707278e6003af59d13345b4 from master
2020-03-05[3.0.x] Fixed #31341 -- Doc'd minimal gettext version with ES6 template ↵Claude Paroz
strings support. Backport of 2f53d324debee680658aed7f22f1aaf81385b1f2 from master
2020-02-24[3.0.x] Fixed #31303 -- Removed outdated note about symmetrical intermediate ↵Matheus Cunha Motta
table for self-referential ManyToManyField. Follow up to 87b1ad6e7351464c60e751b483d9dfce3a2d3382. Backport of 0352a44dd61c19bebf0c0b305dbbc3f710ff9945 from master
2020-02-19[3.0.x] Fixed #30040 -- Used default permission name in docs examples to ↵Hasan Ramezani
avoid confusion. Backport of b7795d7673f51daf288ac80616ef69b05918ca6b from master
2020-01-29[3.0.x] Fixed #31212 -- Updated psycopg links to HTTPS and new location.Jon Dufresne
Backport of 958977f662d878c299b3599282f005c3469dbef9 from master
2020-01-24[3.0.x] Fixed #31184 -- Clarified URL matching behavior in URL dispatcher docs.Roy Smith
Backport of cf493e5c819f5ee49b96954f026bec722e19d9c3 from master
2020-01-15[3.0.x] Refs #29998 -- Corrected auto-created OneToOneField parent_link in ↵Mariusz Felisiak
MTI docs. Backport of d202846ced2f58d7a34ad80bfe2bde8a542a70b9 from master
2020-01-09[3.0.x] More accurate terminology ("logger" instead of "logging handler") in ↵Kal Sze
logging documentation. Backport of aa6c620249bc8c2a6245c8d7b928b05e7e5e78fc from master
2020-01-08[3.0.x] Clarified that ValueError raised by converter.to_python() means no ↵Jack Cushman
match unless another URL pattern matches. Backport of 196009c72c7144f25bc5e4029ef519db0190bb89 from master
2020-01-07[3.0.x] Fixed #31103 -- Improved pagination topic documentation.Mark Bailey
Backport of 0f0abc20be55d796ecfc3e7698e7ecfd9e9cdf88 from master
2019-12-23[3.0.x] Removed unnecessary code-block directives in various docs.Jon Dufresne
Backport of 5e00bd1f7717149573df9607b848297a520881d3 from master
2019-12-20[3.0.x] Added example of assertNumQueries() with "using" kwarg in testing ↵Garry Polley
topics docs. Backport of 0b698eaea611d3bafa86d6d81d9203b482600ccb from master
2019-12-19[3.0.x] Refs #28954 -- Remove remaining Jython documentation.Nick Pope
There is still no further progress on Jython 3 since support for Jython was stripped in Django 2.0. The developers experimenting with Jython 3 have stated that they would need to start from scratch, so it doesn't look as though it will materialize for years to come. Python 2 and Django 1.11, the last version to support Python 2.7, will both be end-of-life before Django 3.1 is released. We should no longer instruct users to use an unsupported version of Django. Backport of d8b6a76bc745b21c6cf2b29c220a91bcae7fd3d7 from master
2019-12-18[3.0.x] Corrected some typos in documentation.Hasan Ramezani
Backport of 70d95682b1be6a85abdeaea0205a897f7530f8bc from master
2019-12-12[3.0.x] Fixed #31069, Refs #26431 -- Doc'd RegexPattern behavior change in ↵Hasan Ramezani
passing optional named groups in Django 3.0. Backport of 9736137cdc4b7528a0aca17415dc9798660eed81 from master
2019-12-06[3.0.x] Fixed #31061 -- Ignored positional args in django.urls.resolve() ↵Mariusz Felisiak
when all optional named parameters are missing. Regression in 76b993a117b61c41584e95149a67d8a1e9f49dd1. Thanks Claude Paroz for the report and Carlton Gibson for reviews. Backport of 82a88d2f48e13ef5d472741d5ed1c183230cfe4c from master
2019-12-04[3.0.x] Fixed #20456 -- Added example of directly testing CBVs in topics docs.Felipe Lee
Backport of a2e96f7969059fb4e621a1cd591fbdd0d4deae2e from master
2019-12-04[3.0.x] Removed leftover word in CBV mixins docs.Claude Paroz
Backport of d83b585e5cc2b6dec49982670b86d6b4dd339342 from master
2019-12-03[3.0.x] Fixed #31056 -- Allowed disabling async-unsafe check with an ↵Andrew Godwin
environment variable. Backport of c90ab30fa1305481024b9c3c50b5a6ed6cd9a2f5 from master
2019-12-03[3.0.x] Refs #30451 -- Doc'd asynchronous support and async-safety.Andrew Godwin
Backport of 635a3f8e6e0303e8a87586ef6be4ab0cc01d7c0d from master
2019-12-03[stable/3.0.x] Fixed typo in topics docsClaude Paroz
Backport of b92d101bd868aa460d16d1196a798df7e5c1ea33 from master.
2019-11-26[3.0.x] Used :ticket: role in all tickets links.Sergey Fedoseev
Backport of abc51d44afcb8482c64c0bb8c1022f11e7eb2bbb from master
2019-11-20[3.0.x] Fixed #31008 -- Fixed typos in docs/topics/logging.txt.Mariusz Felisiak
Backport of 3e5b349535f011a51dc308898924786143000631 from master
2019-11-20[3.0.x] Fixed #27164 -- Fixed an example of using routers in multiple ↵Caio Ariede
databases docs. Make sure that AuthRouter includes ContentType in the same database. Backport of 608e06023e6eaf75f744134a0fd203853260e616 from master
2019-11-12[3.0.x] Fixed #30828 -- Added how to remove/insert many-to-many relations in ↵David Foster
bulk to the database optimization docs. Backport of 6a04e69e686cf417b469d7676f93c2e3a9c8d6a3 from master
2019-11-11[3.0.x] Fixed typo in docs/topics/files.txt.Mariusz Felisiak
Backport of 08c0d8b16bb7e79074bc9c8ab4f0db97a94d336a from master
2019-11-08[3.0.x] Fixed #30955 -- Doc'd that only concrete base models are stored in ↵Shipeng Feng
historical models bases. Abstract models are removed from bases when generating historical model state since 6436f1fad9ce51f18735106ac75aeea3d6d1f310. Backport of 8058d9d7adb189fec75a4b57565f225996c7b22c from master
2019-11-07[3.0.x] Replaced 'n_' prefix with 'number_of_' in docs/topics/db/queries.txt.René Fleschenberg
Backport of 367634f976ab43db93321bf4eb898449b670e291 from master
2019-11-05[3.0.x] Refs #30947 -- Changed tuples to lists in model Meta options ↵Mariusz Felisiak
examples in docs. Follow up to 97d3321e89c8d4434927bdbc308db1ccffa99d3b. Backport of e5cacb1f47cb3a2943bbc7685a630c84503b0d1b from master
2019-11-04[3.0.x] Updated list of field types conversions in ModelForm docs.Adam Johnson
Backport of 5a856669bf0574f612eea89e72a6b0a3d2cb80d9 from master
2019-10-30[3.0.x] Corrected error message in Many-to-many relationships docs.Mariusz Felisiak
Backport of a370dbd9543703677697e80701b5dbec8c8e7da7 from master
2019-10-30[3.0.x] Fixed #30917 -- Clarified formsets topic documentation.Ken Whitesell
Backport of 4c762588ff6748a9a9bad111894fd418c43b74a9 from master
2019-10-29[3.0.x] Fixed #13750 -- Clarified need to reopen models.ImageField.image ↵Hasan Ramezani
file to access raw image data. Backport of f57e174fa61e4c31213f6d0033fb9d647b463626 from master
2019-10-29[3.0.x] Fixed typo in docs/topics/files.txt.Mariusz Felisiak
Backport of bf7b3e2750e3392d112b34e076ee1a77c8adbe77 from master
2019-10-28[3.0.x] Documented the order in which signal receivers are called.Adam Johnson
Backport of ab0fd3f58f751859cc7c5260decf0acca26513bf from master
2019-10-14[3.0.x] Refs #26207 -- Removed obsolete note about slow constructing a model ↵Simon Charette
with deferred fields. This is not true since 7f51876 removed the necessity of creating proxy model classes at runtime for each deferred field sets. Backport of 35396a7f243eceec42cc90725ab573a7d9ac3b4c from master
2019-10-09[3.0.x] Fixed #11097 -- Added note about parent link fields in formsets for ↵Mac Chapman
multi-table inheritance models. Backport of 0b7378db1fdd7bfc7b78089811b3abb722c4ba95 from master
2019-10-08[3.0.x] Fixed #28790 -- Doc'd how to avoid running certain test classes in ↵Caio Ariede
parallel. Backport of dafdfd6a60638c4edcca7c4e65d11c0af654d759 from master
2019-09-27[3.0.x] Fixed #30597 -- Clarified how to unapply migrations.David Vaz
Backport of 45554fd5c5c6a536db3ce70d78646d3dc398cf08 from master