django1/django
Mariusz Felisiak ca88caa103 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.
2022-02-01 15:11:35 +01:00
..
apps Fixed #33366 -- Fixed case handling with swappable setting detection in migrations autodetector. 2021-12-17 07:46:58 +01:00
conf Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:11:35 +01:00
contrib Fixed #30360 -- Added support for secret key rotation. 2022-02-01 11:12:24 +01:00
core Fixed #30360 -- Added support for secret key rotation. 2022-02-01 11:12:24 +01:00
db Fixed #33480 -- Fixed makemigrations crash when renaming field of renamed model. 2022-02-01 07:01:41 +01:00
dispatch Refs #32508 -- Raised ImproperlyConfigured/TypeError instead of using "assert" in various code. 2021-06-25 06:55:47 +02:00
forms Fixed #26142 -- Allowed model formsets to prevent new object creation. 2022-01-27 20:45:21 +01:00
http Fixed CVE-2022-23833 -- Fixed DoS possiblity in file uploads. 2022-02-01 07:41:40 +01:00
middleware Refs #32800 -- Renamed _sanitize_token() to _check_token_format(). 2021-11-29 10:48:31 +01:00
template Fixed CVE-2022-22818 -- Fixed possible XSS via {% debug %} template tag. 2022-02-01 07:40:51 +01:00
templatetags Avoided isinstance(…, Variable) calls in FilterExpression.resolve(). 2022-01-07 10:29:22 +01:00
test Refs #20349 -- Avoided loading testing libraries when not needed. 2022-01-25 11:41:01 +01:00
urls Fixed #33426 -- Fixed ResolverMatch.__repr_() for class-based views. 2022-01-10 17:30:41 +01:00
utils Fixed #33465 -- Added empty __slots__ to SafeString and SafeData. 2022-01-29 13:50:34 +01:00
views Fixed #33461 -- Escaped template errors in the technical 500 debug page. 2022-01-28 07:07:12 +01:00
__init__.py Bumped version; main is now 4.1 pre-alpha. 2021-09-20 21:23:01 +02:00
__main__.py Fixed #24857 -- Added "python -m django" entry point. 2015-09-07 19:54:32 -04:00
shortcuts.py Refs #32956 -- Changed docs to treat the acronym HTTP phonetically. 2021-10-18 21:00:28 +02:00