summaryrefslogtreecommitdiff
path: root/django/utils/cache.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+1
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-181-1/+1
* Updated documentation and comments for RFC updates.Nick Pope2022-11-101-10/+11
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-69/+95
* Fixed #28401 -- Allowed hashlib.md5() calls to work with FIPS kernels.Ade Lee2021-10-121-5/+7
* Made small readability improvements.Martin Thoma2020-10-281-4/+7
* Removed unneeded calls to iri_to_uri() in cache key generation.Florian Apolloner2020-10-061-3/+2
* Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick2020-09-141-11/+11
* Refs #5691 -- Made cache keys independent of USE_L10N.Claude Paroz2020-06-221-6/+6
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-2/+2
* Fixed #23755 -- Added support for multiple field names in the no-cache Cache-...Flavio Curella2019-10-101-7/+27
* Fixed #30812 -- Made ConditionalGetMiddleware set ETag only for responses wit...Viktor Lomakin2019-10-101-1/+1
* Fixed #30701 -- Updated patch_vary_headers() to handle an asterisk according ...Adnan Umer2019-08-161-3/+8
* Fixed #30594 -- Added 'private' Cache-Control directive to never_cache() deco...nsasaki1282019-06-261-1/+1
* Refs #27795 -- Removed force_bytes() usage in django/utils/cache.py.Jon Dufresne2018-08-281-4/+4
* Fixed #26688 -- Fixed HTTP request logging inconsistencies.Samir Shah2018-05-041-9/+6
* Refs #17476 -- Removed obsolete simplification of timezone names in cache key...Sergey Fedoseev2018-03-031-7/+2
* Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов2018-01-121-3/+2
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-4/+2
* Simplified django.utils.cache.get_max_age().Jozef2017-12-041-5/+4
* Refs #26447 -- Removed the USE_ETAGS setting per deprecation timeline.Tim Graham2017-09-221-14/+0
* Removed unnecessary parens in various code.Mariusz Felisiak2017-09-131-2/+2
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-2/+2
* Refs #27656 -- Updated django.utils docstring verbs according to PEP 257.Anton Samarchyan2017-02-111-15/+15
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #19705 -- Set proper headers on conditional Not Modified responses.Kevin Christopher Henry2016-10-121-7/+14
* Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ConditionalGetMiddl...Denis Cornehl2016-10-101-0/+9
* Fixed #27226 -- Removed patch_response_headers()'s setting of the Last-Modifi...Rinat Khabibiev2016-09-281-4/+2
* Refs #27083 -- Updated conditional header comparison to match RFC 7232.Kevin Christopher Henry2016-09-161-57/+87
* Fixed #26567 -- Updated references to obsolete RFC2616.Vasiliy Faronov2016-05-031-1/+1
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-11/+9
* Fixed #6727 -- Made patch_cache_control() patch an empty Cache-Control header.Dwight Gunning2015-11-091-1/+1
* Fixed #24935 -- Refactored common conditional GET handling.Denis Cornehl2015-08-151-5/+101
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-2/+2
* Fixed #13008 -- Added more Cache-Control headers to never_cache() decorator.Markus Bertheau2015-04-281-0/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #20346 -- Made cache middleware vary on the full URL.ijl2013-12-281-10/+10
* Fixed #21012 -- New API to access cache backends.Curtis Maloney2013-11-231-3/+3
* Correct flake8 E302 violationsRay Ashman Jr2013-11-021-0/+12
* Correct flake8 violation E261Ray Ashman Jr2013-11-021-1/+1
* Fixed spelling ("dependant" -> "dependent")Tim Graham2013-11-011-1/+1
* Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor2013-10-261-1/+1
* Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette2013-08-301-5/+5
* Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()Tim Graham2013-08-291-1/+1
* [py3] Always fed hashlib with bytes.Łukasz Langa2013-02-271-1/+1
* Fixed #18191 -- Don't consider Accept-Language redundantly in cache key.Łukasz Langa2013-02-251-2/+12
* Fixed #7581 -- Added streaming responses.Aymeric Augustin2012-10-201-1/+2
* Replaced many smart_bytes by force_bytesClaude Paroz2012-08-291-3/+3
* [py3] Fixed admin_views testsClaude Paroz2012-08-141-1/+1
* [py3] Fixed encoding issues in cache key generationClaude Paroz2012-08-131-1/+2