summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_http.py
Commit message (Expand)AuthorAgeFilesLines
* [3.2.x] Fixed CVE-2021-23336 -- Fixed web cache poisoning via django.utils.ht...Nick Pope2021-02-191-14/+29
* Refs #21231 -- Backport urllib.parse.parse_qsl() from Python 3.8.Nick Pope2020-09-031-3/+69
* Fixed #31521 -- Skipped test_parsing_rfc850 test on 32-bit systems.Hasan Ramezani2020-04-301-0/+2
* Fixed #28690 -- Fixed handling of two-digit years in parse_http_date().Ad Timmering2019-09-301-8/+17
* Refs #28690 -- Added more tests for parse_http_date().Ad Timmering2019-09-301-2/+12
* Fixed #30747 -- Renamed is_safe_url() to url_has_allowed_host_and_scheme().Carlton Gibson2019-09-021-12/+35
* Fixed #30677 -- Improved error message for urlencode() and Client when None i...swatantra2019-08-111-2/+2
* Refs #30485 -- Removed non-representative test that emitted a warning.Jon Dufresne2019-06-191-1/+0
* Fixed #30485 -- Adjusted django.utils.http.urlencode for doseq=False case.Johan Lübcke2019-05-241-7/+17
* Fixed #30264 -- Fixed crash of test_parsing_year_less_than_70() on 32-bit sys...Mariusz Felisiak2019-03-201-2/+2
* Refs #27753 -- Deprecated django.utils.http urllib aliases.Tim Graham2019-02-041-1/+3
* Refs #28965 -- Removed utils.http.cookie_date() per deprecation timeline.Tim Graham2019-01-171-10/+4
* Fixed #30024 -- Made urlencode() and Client raise TypeError when None is pass...Jon Dufresne2018-12-271-1/+20
* Increased test coverage of django.utils.http.Hasan Ramezani2018-11-031-0/+5
* Fixed CVE-2018-14574 -- Fixed open redirect possibility in CommonMiddleware.Andreas Hug2018-08-011-4/+15
* Fixed #29525 -- Allowed is_safe_url()'s allowed_hosts arg to be a string.Przemysław Suliga2018-06-291-0/+4
* Fixed #28638 -- Made allowed_hosts a required argument of is_safe_url().Jon Dufresne2018-01-111-2/+2
* Refs #28965 -- Deprecated unused django.utils.http.cookie_date().Tim Graham2018-01-021-1/+3
* Fixed #28679 -- Fixed urlencode()'s handling of bytes.François Freitag2017-10-121-0/+17
* Split django.utils.http tests into separate test classes.François Freitag2017-10-101-95/+121
* Refs #26956 -- Removed the host parameter of django.utils.http.is_safe_url().Tim Graham2017-09-221-6/+0
* Added test for too large input to django.utils.http.base36_to_int().Mads Jensen2017-09-211-0/+3
* Fixed #28142 -- Fixed is_safe_url() crash on invalid IPv6 URLs.UmanShahzad2017-05-101-0/+2
* Fixed #27912, CVE-2017-7233 -- Fixed is_safe_url() with numeric URLs.Tim Graham2017-04-041-0/+3
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-17/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-3/+3
* Fixed #27083 -- Added support for weak ETags.Kevin Christopher Henry2016-09-101-6/+11
* Refs #26956 -- Allowed is_safe_url() to validate against multiple hostsJon Dufresne2016-09-071-9/+21
* Fixed #26902 -- Allowed is_safe_url() to require an https URL.Przemysław Suliga2016-08-191-0/+18
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-61/+53
* Added safety to URL decoding in is_safe_url() on Python 2Claude Paroz2016-03-041-1/+1
* Fixed #26308 -- Prevented crash with binary URLs in is_safe_url()Claude Paroz2016-03-041-0/+12
* Fixed CVE-2016-2512 -- Prevented spoofing is_safe_url() with basic auth.Mark Striemer2016-03-011-0/+12
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-5/+10
* Fixed #26024 -- Fixed regression in ConditionalGetMiddleware ETag support.Denis Cornehl2016-01-051-1/+3
* Fixed many spelling mistakes in code, comments, and docs.Josh Soref2015-12-031-2/+2
* Fixed #24496 -- Added CSRF Referer checking against CSRF_COOKIE_DOMAIN.Matt Robenolt2015-09-161-25/+19
* Made is_safe_url() reject URLs that start with control characters.Tim Graham2015-03-181-1/+3
* Fixed #24321 -- Improved `utils.http.same_origin` compliance with RFC6454Lukas Klein2015-02-121-0/+6
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+2
* Fixed is_safe_url() to handle leading whitespace.Tim Graham2015-01-131-1/+2
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-2/+2
* Consolidated some text utils into the utils_tests test package.Loic Bistuer2014-09-231-0/+32
* Fixed #23333 -- Made urlsafe_base64_decode() return proper type on Python 3.Ian Foote2014-08-221-0/+6
* Fixed #22909 -- Removed camelCasing in some tests.Tim Graham2014-07-071-5/+5
* Added additional checks in is_safe_url to account for flexible parsing.Erik Romijn2014-05-141-0/+30
* Dropped fix_IE_for_vary/attach.Aymeric Augustin2014-05-141-46/+0
* Fixed #21266 -- Fixed E201,E202 pep8 warnings.Larry O'Neill2013-10-141-1/+1
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-2/+2