summaryrefslogtreecommitdiff
path: root/django/utils
AgeCommit message (Expand)Author
2024-08-06[5.1.x] Fixed CVE-2024-41991 -- Prevented potential ReDoS in django.utils.htm...Mariusz Felisiak
2024-08-06[5.1.x] Fixed CVE-2024-41990 -- Mitigated potential DoS in urlize and urlizet...Sarah Boyce
2024-07-25[5.1.x] Fixed #35627 -- Raised a LookupError rather than an unhandled ValueEr...Lorenzo Peña
2024-07-09[5.1.x] Fixed CVE-2024-39614 -- Mitigated potential DoS in get_supported_lang...Sarah Boyce
2024-07-09[5.1.x] Fixed CVE-2024-38875 -- Mitigated potential DoS in urlize and urlizet...Adam Johnson
2024-05-16Removed PY36 and PY37 version constants.Sarah Boyce
2024-04-12Fixed #35364 -- Stopped AdminEmailHandler rendering email unnecessarily.Adam Johnson
2024-03-14Refs #30686 -- Made django.utils.html.VOID_ELEMENTS a frozenset.Nick Pope
2024-02-20Refs #34900 -- Fixed CommandTypes.test_help_default_options_with_custom_argum...Mariusz Felisiak
2024-02-15Refs #30686 -- Removed unused regexes in django.utils.text.Mariusz Felisiak
2024-02-14Fixed #35179 -- Made admindocs detect positional/keyword-only arguments.Salvo Polizzi
2024-02-09Fixed #35175 -- Made migraton writer preserve keyword-only arguments.David Sanders
2024-02-07Fixed #30686 -- Used Python HTMLParser in utils.text.Truncator.David Smith
2024-02-07Refs #30686 -- Fixed text truncation for negative or zero lengths.David Smith
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
2023-11-28Refs #34986 -- Added PyPy support to django.utils.autoreload.get_child_argume...Nick Pope
2023-11-28Refs #34986 -- Fixed mocking in utils_tests.test_http.HttpDateProcessingTests...Nick Pope
2023-11-27Refs #34986 -- Added django.utils.version.PYPY.Nick Pope
2023-11-27Refs #34986 -- Avoided pickling error in DjangoUnicodeDecodeError.Nick Pope
2023-11-24Fixed #34983 -- Deprecated django.utils.itercompat.is_iterable().Nick Pope
2023-11-24Fixed #34818 -- Prevented GenericIPAddressField from mutating error messages.Parth Verma
2023-10-23Fixed #34899 -- Added blank choice to forms' callable choices lazily.Nick Pope
2023-10-23Refs #34899 -- Extracted Field.flatchoices to flatten_choices helper function.Nick Pope
2023-10-23Refs #31262 -- Added __eq__() and __getitem__() to BaseChoiceIterator.Nick Pope
2023-10-23Refs #34118 -- Avoided repeat coroutine checks in MiddlewareMixin.Adam Johnson
2023-10-04Fixed CVE-2023-43665 -- Mitigated potential DoS in django.utils.text.Truncato...Natalia
2023-09-18Advanced deprecation warnings for Django 5.1.Mariusz Felisiak
2023-09-13Refs #31949 -- Made make_middleware_decorator to work with async functions.Ben Lomax
2023-09-12Renamed ChoicesMeta to ChoicesType.Nick Pope
2023-09-04Refs #31262 -- Renamed ChoiceIterator to BaseChoiceIterator.Nick Pope
2023-09-04Fixed CVE-2023-41164 -- Fixed potential DoS in django.utils.encoding.uri_to_i...Mariusz Felisiak
2023-09-01Fixed #34807 -- Avoided circular import between forms, models, and utils' cho...nessita
2023-08-30 Fixed #31262 -- Added support for mappings on model fields and ChoiceField's...Nick Pope
2023-08-28Fixed #34787 -- Fixed autoreloader crash when run from installed script on Wi...sarahboyce
2023-08-02Removed unneeded escapes in regexes.Mariusz Felisiak
2023-07-14Refs #30686 -- Moved Parser.SELF_CLOSING_TAGS to django.utils.html.VOID_ELEMENTSDavid Smith
2023-07-14Refs #30686 -- Moved add_truncation_text() helper to a module level.David Smith
2023-06-12Allowed custom formatting of lazy() objects.Nick Pope
2023-06-12Allowed multiplication of lazy() objects with int return type.Nick Pope
2023-06-12Removed function call overhead when preparing proxy class for lazy().Nick Pope
2023-06-12Made proxy class in lazy() prepare eagerly.Ran Benita
2023-06-12Improved order of methods in proxy class in lazy().Ran Benita
2023-06-08Optimized lazy() by removing use of @total_ordering.Ran Benita
2023-06-08Made bytes and str return types no longer mutually exclusive in lazy().Ran Benita
2023-06-08Removed unnecessary wrapping of __bytes__ in proxy class in lazy().Ran Benita
2023-06-08Removed unnecessary branch in __mod__() from proxy class in lazy().Ran Benita
2023-06-08Refs #34445 -- Fixed string-casting of non-string lazy objects when value may...Ran Benita
2023-06-06Fixed #34609 -- Deprecated calling format_html() without arguments.devilsautumn
2023-05-02Fixed #34515 -- Made LocaleMiddleware prefer language from paths when i18n pa...Mariusz Felisiak
2023-04-20Corrected exception type in safe_join()'s docstring.David Sanders