summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-05-04 12:14:53 +0200
committerMichał Górny <mgorny@gentoo.org>2021-05-04 14:41:08 +0200
commit3703aa37836173cc49f115e982bb26c118511ddd (patch)
treedc5b02f33925857e37ebb47df40f6a2c03b98128 /dev-python/django/files
parentdev-python/exdown: Bump to 0.8.9 (diff)
downloadgentoo-3703aa37836173cc49f115e982bb26c118511ddd.tar.gz
gentoo-3703aa37836173cc49f115e982bb26c118511ddd.tar.bz2
gentoo-3703aa37836173cc49f115e982bb26c118511ddd.zip
dev-python/django: Bump to 3.2.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django/files')
-rw-r--r--dev-python/django/files/django-2.2.21-fix-bpo43882.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/django/files/django-2.2.21-fix-bpo43882.patch b/dev-python/django/files/django-2.2.21-fix-bpo43882.patch
new file mode 100644
index 000000000000..dc5d333be940
--- /dev/null
+++ b/dev-python/django/files/django-2.2.21-fix-bpo43882.patch
@@ -0,0 +1,25 @@
+From bf04b74b155f91b47ca986543348bdf644f2ffb0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
+Date: Tue, 4 May 2021 13:10:50 +0200
+Subject: [PATCH] Reject URLs containing LF, CR or HT to workaround bpo43882
+
+---
+ django/core/validators.py | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/django/core/validators.py b/django/core/validators.py
+index a385819510..bab034912a 100644
+--- a/django/core/validators.py
++++ b/django/core/validators.py
+@@ -110,6 +110,8 @@ class URLValidator(RegexValidator):
+ try:
+ super().__call__(value)
+ except ValidationError as e:
++ if '\r' in value or '\n' in value or '\t' in value:
++ raise e
+ # Trivial case failed. Try for possible IDN domain
+ if value:
+ try:
+--
+2.31.1
+