From 9246cc680c1f092a743a2f1f0129e6a8d6907b1d Mon Sep 17 00:00:00 2001
From: Fredrik Jonsson <frjo@xdeb.org>
Date: Mon, 28 Sep 2020 12:53:37 +0200
Subject: [PATCH] Updated Wagtail to 2.10.2

---
 .../migrations/0003_formfield_clean_name.py    | 18 ++++++++++++++++++
 requirements.txt                               |  4 ++--
 2 files changed, 20 insertions(+), 2 deletions(-)
 create mode 100644 hypha/public/forms/migrations/0003_formfield_clean_name.py

diff --git a/hypha/public/forms/migrations/0003_formfield_clean_name.py b/hypha/public/forms/migrations/0003_formfield_clean_name.py
new file mode 100644
index 000000000..9dd32908a
--- /dev/null
+++ b/hypha/public/forms/migrations/0003_formfield_clean_name.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.16 on 2020-09-28 11:45
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('public_forms', '0002_add_document_choice'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='formfield',
+            name='clean_name',
+            field=models.CharField(blank=True, default='', help_text='Safe name of the form field, the label converted to ascii_snake_case', max_length=255, verbose_name='name'),
+        ),
+    ]
diff --git a/requirements.txt b/requirements.txt
index d2f4c1318..ca9a025aa 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -37,11 +37,11 @@ mistune==0.8.4
 more-itertools==8.4.0
 phonenumberslite==8.12.8
 Pillow==7.2.0
-psycopg2==2.8.5
+psycopg2==2.8.6
 reportlab==3.5.34
 social_auth_app_django==4.0.0
 tomd==0.1.3
-wagtail==2.9.3
+wagtail==2.10.2
 wagtail-cache==1.0.1
 whitenoise==5.2.0
 
-- 
GitLab