| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-31 | [3.2.x] Refs #32105 -- Moved ExceptionReporter template paths to properties. | William Schwartz | |
| Refs #32316. Backport of 7248afe12f40361870388ecdd7e0038eb0d58e47 from main | |||
| 2021-02-25 | [3.2.x] Updated links to DEPs. | Markus Holtermann | |
| Backport of 7cc6899d4176539e5d59a2e921b938904d3a8944 from master | |||
| 2021-02-05 | [3.2.x] Fixed #32419 -- Clarified URLconf in example of serving media files. | Amankumar Singh | |
| Backport of 51637222b6eeed81d9ce6f5d24e22e249c605ba3 from master | |||
| 2021-01-19 | [3.2.x] Corrected versionadded annotations. | Mariusz Felisiak | |
| Backport of 73ffc73b68d3c1fc1e51f13963718492303a2941 from master | |||
| 2020-11-11 | Fixed #31216 -- Added support for colorama terminal colors on Windows. | MinchinWeb | |
| Modern setups on Windows support terminal colors. The colorama library may also be used, as an alternative to the ANSICON library. | |||
| 2020-11-02 | Updated {% static %} tag examples in docs to use single quotes where ↵ | Nikita Sobolev | |
| appropriate. | |||
| 2020-10-15 | Fixed #32105 -- Added template paths as ExceptionReporter class attributes. | Aarni Koskela | |
| This allows replacement of the debugging templates without having to copy-paste the `get_traceback_html` and `get_traceback_text` functions into a subclass. Thanks to Nick Pope for review. | |||
| 2020-10-07 | Fixed #32002 -- Added headers parameter to HttpResponse and subclasses. | Tom Carrick | |
| 2020-09-29 | Updated ASGI uvicorn deployment docs. | Thomas Grainger | |
| 2020-09-14 | Fixed #31789 -- Added a new headers interface to HttpResponse. | Tom Carrick | |
| 2020-08-28 | Fixed #31912 -- Removed strict=True in Path.resolve() in project template ↵ | Mariusz Felisiak | |
| and CommonPasswordValidator. This caused permission errors when user didn't have permissions to all intermediate directories in a Django installation path. Thanks tytusd and leonyxz for reports. Regression in edeec1247e52de6fc32cee93e96d4ce36003ea4b and 26554cf5d1e96db10d0d5f4b69683a22fb82fdf8. | |||
| 2020-08-05 | Added Hypercorn to ASGI deployment guide. | Phil Jones | |
| 2020-08-05 | Fixed #29336 -- Doc'd circular template inheritance | David Smith | |
| 2020-07-10 | Corrected custom model fields how-to. | Ramiro Morales | |
| get_prep_value() method is complementary of from_db_value(). Follow up to e9103402c0fa873aea58a6a11dba510cd308cb84. | |||
| 2020-06-03 | Preferred usage of among/while to amongst/whilst. | David Smith | |
| 2020-06-03 | Updated How to install Django on Windows guide. | David Smith | |
| 2020-06-02 | Fixed #31643 -- Changed virtualenv doc references to Python 3 venv. | Jon Dufresne | |
| 2020-06-01 | Reverted "Refs #23919 -- Removed obsolete __init__.py files in management ↵ | René Fleschenberg | |
| command directories." This reverts commit ccc25bfe4f0964a00df3af6f91c2d9e20159a0c2. https://groups.google.com/d/topic/django-developers/GVHMH2ciAnk/discussion | |||
| 2020-05-29 | Changed some doc links to use intersphinx. | Jon Dufresne | |
| 2020-05-27 | Fixed #31628 -- Updated Windows install guide to recommend venv. | David Smith | |
| 2020-05-25 | Removed instructions for unsupported Apache versions. | Claude Paroz | |
| 2020-05-21 | Fixed #31546 -- Allowed specifying list of tags in ↵ | Hasan Ramezani | |
| Command.requires_system_checks. | |||
| 2020-05-13 | Used :envvar: role and .. envvar:: directive in various docs. | Nick Pope | |
| 2020-05-13 | Used :pep: role in various docs. | Nick Pope | |
| 2020-05-13 | Removed versionadded/changed annotations for 3.0. | Mariusz Felisiak | |
| 2020-05-04 | Refs #30573 -- Rephrased "Of Course" and "Obvious(ly)" in documentation and ↵ | Adam Johnson | |
| comments. | |||
| 2020-04-30 | Fixed #25712 -- Reorganized templates docs. | David Smith | |
| 2020-04-14 | Refs #29501 -- Allowed customizing exit status for management commands. | Adam Johnson | |
| 2020-04-01 | Prevented (and corrected) single backtick usage in docs. | Adam Johnson | |
| 2020-03-25 | 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. | |||
| 2020-03-21 | Updated settings example in overriding templates docs. | Mariusz Felisiak | |
| Follow up to ba4389a36b5fb1afce0cddb4e28233138b6612b7. | |||
| 2020-03-10 | Clarified SeparateDatabaseAndState docs and added example of changing ↵ | Adam Johnson | |
| ManyToManyField. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-Authored-By: Carlton Gibson <carlton.gibson@noumenal.es> Co-Authored-By: René Fleschenberg <rene@fleschenberg.net> | |||
| 2020-03-06 | Added missing backticks in various docs. | Mariusz Felisiak | |
| 2020-02-04 | Simplified imports from django.db and django.contrib.gis.db. | Nick Pope | |
| 2020-01-29 | Fixed #31126 -- Doc'd STATICFILES_DIRS namespacing in static files how-to. | Abhijeet | |
| 2020-01-21 | Made examples concrete in upgrade documentation. | Adam Johnson | |
| 2020-01-17 | Fixed #31171 -- Fixed wording in auto-escaping section of custom template ↵ | Takayuki Hirayama | |
| tags docs. | |||
| 2020-01-16 | Fixed #30752 -- Allowed using ExceptionReporter subclasses in error reports. | Pavel Lysak | |
| 2020-01-10 | Fixed #23004 -- Added request.META filtering to SafeExceptionReporterFilter. | Carlton Gibson | |
| Co-authored-by: Ryan Castner <castner.rr@gmail.com> | |||
| 2020-01-10 | Refs #23004 -- Allowed exception reporter filters to customize settings ↵ | Carlton Gibson | |
| filtering. Thanks to Tim Graham for the original implementation idea. Co-authored-by: Daniel Maxson <dmaxson@ccpgames.com> | |||
| 2019-12-20 | Refs #30767 -- Improved deployment documentation. | Katie McLaughlin | |
| 2019-12-19 | 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. | |||
| 2019-12-18 | Updated Pytest example in upgrade documentation. | Adam Johnson | |
| Pytest changed their recommended entrypoint to 'pytest' in version 3.0.0 in 2016 : https://docs.pytest.org/en/latest/changelog.html#id1009. Also link the name since this is the only reference in the Django documentation at current. | |||
| 2019-12-04 | Refs #20935 -- Removed duplicate ToC references. | Fredrik | |
| These sections are being referred to already from other locations. Having multiple references to the same location from the ToC is ambiguous, and causes errors in the EPUB build. | |||
| 2019-11-19 | Fixed #30999 -- Fixed typo in docs/howto/custom-template-tags.txt. | Hasan Ramezani | |
| 2019-11-07 | Fixed #29983 -- Replaced os.path() with pathlib.Path in project template and ↵ | Jon Dufresne | |
| docs. Thanks Curtis Maloney for the original patch. | |||
| 2019-10-25 | Fixed #30906 -- Fixed an example of using the template system to generate CSV. | Hasan Ramezani | |
| 2019-10-09 | Fixed #30858 -- Clarified that AdminEmailHandler processes all 5xx responses. | Carlton Gibson | |
| 2019-10-02 | Fixed some typos in comments and docs. | Min ho Kim | |
| Thanks to Mads Jenson for review. | |||
| 2019-09-10 | Removed versionadded/changed annotations for 2.2. | Mariusz Felisiak | |
