django1/django
Mariusz Felisiak 0c06819caa [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists with inline comments.
Lists with multiple values and comments per-line are reformatted
by Black to multiple lines with a single comment. For example:

DATE_INPUT_FORMATS =
    "%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

is reformatted to the:

DATE_INPUT_FORMATS =
    "%Y-%m-%d",
    "%m/%d/%Y",
    "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

This reformats affected entries to multiple lines with corresponding
comments.

Backport of ca88caa103 from main
2022-02-01 15:14:17 +01:00
..
apps [4.0.x] Fixed #33366 -- Fixed case handling with swappable setting detection in migrations autodetector. 2021-12-17 10:00:33 +01:00
conf [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:14:17 +01:00
contrib [4.0.x] Updated translations from Transifex. 2022-01-29 18:59:17 +01:00
core [4.0.x] Fixed CVE-2021-45452 -- Fixed potential path traversal in storage subsystem. 2022-01-04 10:10:14 +01:00
db [4.0.x] Fixed #33480 -- Fixed makemigrations crash when renaming field of renamed model. 2022-02-01 07:33:22 +01:00
dispatch Refs #32508 -- Raised ImproperlyConfigured/TypeError instead of using "assert" in various code. 2021-06-25 06:55:47 +02:00
forms [4.0.x] Fixed #33419 -- Restored marking forms.Field.help_text as HTML safe. 2022-01-07 16:12:15 +01:00
http [4.0.x] Fixed CVE-2022-23833 -- Fixed DoS possiblity in file uploads. 2022-02-01 07:44:49 +01:00
middleware Fixed #32768 -- Added Vary header when redirecting to prefixed i18n pattern. 2021-09-01 14:02:37 +02:00
template [4.0.x] Fixed CVE-2022-22818 -- Fixed possible XSS via {% debug %} template tag. 2022-02-01 07:43:45 +01:00
templatetags Fixed #32365 -- Made zoneinfo the default timezone implementation. 2021-09-16 12:11:05 +02:00
test [4.0.x] Fixed #33410 -- Fixed recursive capturing of callbacks by TestCase.captureOnCommitCallbacks(). 2022-01-07 16:12:01 +01:00
urls [4.0.x] Fixed #33426 -- Fixed ResolverMatch.__repr_() for class-based views. 2022-01-10 18:39:59 +01:00
utils [4.0.x] Fixed #33043 -- Made method_decorator() preserve wrapper assignments. 2021-10-20 18:52:10 +02:00
views [4.0.x] Fixed #33425 -- Fixed view name for CBVs on technical 404 debug page. 2022-01-08 14:54:10 +01:00
__init__.py [4.0.x] Post-release version bump. 2022-02-01 08:02:32 +01:00
__main__.py
shortcuts.py [4.0.x] Refs #32956 -- Changed docs to treat the acronym HTTP phonetically. 2021-10-19 06:33:00 +02:00