Skip to content

Commit b1c85af

Browse files
committed
Release v1.3.0
**Deprecation Warning**: The validation endpoint (using the URL ``forms/(?P<pk>\d+)/validate/``) was only accessible via the ``GET`` verb. It may have caused issues if we tried to validate very long forms, or forms with very large values, by hitting the querystring size limit. As a consequence, as of 1.3.0, the ``GET`` method is deprecated in favor of the ``POST`` method. - Allow POST method for form validation endpoint. - [Documentation] Fixed a missing ``cd`` in docs. You can't run pytest from project root (#293). - includes 7 more languages (not translated yet): Czech, Danish, Finnish, Canadian French, Hungarian, Japanese, Swedish.
1 parent 77ad92c commit b1c85af

File tree

21 files changed

+298
-18
lines changed

21 files changed

+298
-18
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
ChangeLog
33
=========
44

5-
master (unreleased)
6-
===================
5+
Release 1.3.0 (2018-02-14)
6+
==========================
7+
8+
**Deprecation Warning**: The validation endpoint (using the URL ``forms/(?P<pk>\d+)/validate/``) was only accessible via the ``GET`` verb. It may have caused issues if we tried to validate very long forms, or forms with very large values, by hitting the querystring size limit. As a consequence, as of 1.3.0, the ``GET`` method is deprecated in favor of the ``POST`` method.
79

8-
- Allow POST method for form validation endpoint. This version is the last to support the GET verb for the validation endpoint. We'll drop it in the next version.
10+
- Allow POST method for form validation endpoint.
911
- [Documentation] Fixed a missing ``cd`` in docs. You can't run pytest from project root (#293).
12+
- includes 7 more languages (not translated yet): Czech, Danish, Finnish, Canadian French, Hungarian, Japanese, Swedish.
1013

1114
Release 1.2.1 (2018-01-12)
1215
==========================

formidable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .json_migrations import latest_version
44

55
default_app_config = 'formidable.app.FormidableConfig'
6-
version = '1.3.0.dev0'
6+
version = '1.3.0'
77
json_version = latest_version
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
msgid ""
2+
msgstr ""
3+
"Project-Id-Version: django-formidable\n"
4+
"Report-Msgid-Bugs-To: \n"
5+
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6+
"PO-Revision-Date: 2018-02-06 06:52-0500\n"
7+
"Last-Translator: peopledoc <[email protected]>\n"
8+
"Language-Team: Czech\n"
9+
"Language: cs_CZ\n"
10+
"MIME-Version: 1.0\n"
11+
"Content-Type: text/plain; charset=UTF-8\n"
12+
"Content-Transfer-Encoding: 8bit\n"
13+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
14+
"X-Generator: crowdin.com\n"
15+
"X-Crowdin-Project: django-formidable\n"
16+
"X-Crowdin-Language: cs\n"
17+
"X-Crowdin-File: django.po\n"
18+
19+
#: validators.py:70
20+
#, python-format
21+
msgid "Ensure this field is greater than %(limit_value)s"
22+
msgstr ""
23+
24+
#: validators.py:82
25+
#, python-format
26+
msgid "Ensure this field is less than %(limit_value)s"
27+
msgstr ""
28+
29+
#: validators.py:94
30+
#, python-format
31+
msgid "Ensure this field is equal to %(limit_value)s"
32+
msgstr ""
33+
34+
#: validators.py:107
35+
#, python-format
36+
msgid "Ensure this field is not equal to %(limit_value)s"
37+
msgstr ""
38+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
msgid ""
2+
msgstr ""
3+
"Project-Id-Version: django-formidable\n"
4+
"Report-Msgid-Bugs-To: \n"
5+
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6+
"PO-Revision-Date: 2018-02-06 06:52-0500\n"
7+
"Last-Translator: peopledoc <[email protected]>\n"
8+
"Language-Team: Danish\n"
9+
"Language: da_DK\n"
10+
"MIME-Version: 1.0\n"
11+
"Content-Type: text/plain; charset=UTF-8\n"
12+
"Content-Transfer-Encoding: 8bit\n"
13+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
14+
"X-Generator: crowdin.com\n"
15+
"X-Crowdin-Project: django-formidable\n"
16+
"X-Crowdin-Language: da\n"
17+
"X-Crowdin-File: django.po\n"
18+
19+
#: validators.py:70
20+
#, python-format
21+
msgid "Ensure this field is greater than %(limit_value)s"
22+
msgstr ""
23+
24+
#: validators.py:82
25+
#, python-format
26+
msgid "Ensure this field is less than %(limit_value)s"
27+
msgstr ""
28+
29+
#: validators.py:94
30+
#, python-format
31+
msgid "Ensure this field is equal to %(limit_value)s"
32+
msgstr ""
33+
34+
#: validators.py:107
35+
#, python-format
36+
msgid "Ensure this field is not equal to %(limit_value)s"
37+
msgstr ""
38+

formidable/locale/de/LC_MESSAGES/django.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: django-formidable\n"
44
"Report-Msgid-Bugs-To: \n"
55
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6-
"PO-Revision-Date: 2017-08-23 06:42-0400\n"
6+
"PO-Revision-Date: 2017-10-04 03:30-0400\n"
77
"Last-Translator: peopledoc <[email protected]>\n"
88
"Language-Team: German\n"
99
"Language: de_DE\n"
@@ -35,3 +35,4 @@ msgstr ""
3535
#, python-format
3636
msgid "Ensure this field is not equal to %(limit_value)s"
3737
msgstr ""
38+

formidable/locale/en_GB/LC_MESSAGES/django.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: django-formidable\n"
44
"Report-Msgid-Bugs-To: \n"
55
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6-
"PO-Revision-Date: 2017-05-19 10:04-0400\n"
6+
"PO-Revision-Date: 2017-10-04 03:30-0400\n"
77
"Last-Translator: peopledoc <[email protected]>\n"
88
"Language-Team: English, United Kingdom\n"
99
"Language: en_GB\n"
@@ -35,3 +35,4 @@ msgstr ""
3535
#, python-format
3636
msgid "Ensure this field is not equal to %(limit_value)s"
3737
msgstr ""
38+

formidable/locale/en_US/LC_MESSAGES/django.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: django-formidable\n"
44
"Report-Msgid-Bugs-To: \n"
55
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6-
"PO-Revision-Date: 2017-05-19 10:04-0400\n"
6+
"PO-Revision-Date: 2017-10-04 03:30-0400\n"
77
"Last-Translator: peopledoc <[email protected]>\n"
88
"Language-Team: English, United States\n"
99
"Language: en_US\n"
@@ -35,3 +35,4 @@ msgstr ""
3535
#, python-format
3636
msgid "Ensure this field is not equal to %(limit_value)s"
3737
msgstr ""
38+

formidable/locale/es/LC_MESSAGES/django.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: django-formidable\n"
44
"Report-Msgid-Bugs-To: \n"
55
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6-
"PO-Revision-Date: 2017-05-19 10:04-0400\n"
6+
"PO-Revision-Date: 2017-10-04 03:30-0400\n"
77
"Last-Translator: peopledoc <[email protected]>\n"
88
"Language-Team: Spanish\n"
99
"Language: es_ES\n"
@@ -35,3 +35,4 @@ msgstr ""
3535
#, python-format
3636
msgid "Ensure this field is not equal to %(limit_value)s"
3737
msgstr ""
38+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
msgid ""
2+
msgstr ""
3+
"Project-Id-Version: django-formidable\n"
4+
"Report-Msgid-Bugs-To: \n"
5+
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6+
"PO-Revision-Date: 2018-02-06 06:52-0500\n"
7+
"Last-Translator: peopledoc <[email protected]>\n"
8+
"Language-Team: Finnish\n"
9+
"Language: fi_FI\n"
10+
"MIME-Version: 1.0\n"
11+
"Content-Type: text/plain; charset=UTF-8\n"
12+
"Content-Transfer-Encoding: 8bit\n"
13+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
14+
"X-Generator: crowdin.com\n"
15+
"X-Crowdin-Project: django-formidable\n"
16+
"X-Crowdin-Language: fi\n"
17+
"X-Crowdin-File: django.po\n"
18+
19+
#: validators.py:70
20+
#, python-format
21+
msgid "Ensure this field is greater than %(limit_value)s"
22+
msgstr ""
23+
24+
#: validators.py:82
25+
#, python-format
26+
msgid "Ensure this field is less than %(limit_value)s"
27+
msgstr ""
28+
29+
#: validators.py:94
30+
#, python-format
31+
msgid "Ensure this field is equal to %(limit_value)s"
32+
msgstr ""
33+
34+
#: validators.py:107
35+
#, python-format
36+
msgid "Ensure this field is not equal to %(limit_value)s"
37+
msgstr ""
38+

formidable/locale/fr/LC_MESSAGES/django.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgstr ""
33
"Project-Id-Version: django-formidable\n"
44
"Report-Msgid-Bugs-To: \n"
55
"POT-Creation-Date: 2017-10-04 09:25+0200\n"
6-
"PO-Revision-Date: 2017-07-05 03:04-0400\n"
6+
"PO-Revision-Date: 2017-10-04 03:30-0400\n"
77
"Last-Translator: peopledoc <[email protected]>\n"
88
"Language-Team: French\n"
99
"Language: fr_FR\n"
@@ -35,3 +35,4 @@ msgstr "Vérifiez que ce champ est égal à %(limit_value)s"
3535
#, python-format
3636
msgid "Ensure this field is not equal to %(limit_value)s"
3737
msgstr "Vérifiez que ce champ est différent de %(limit_value)s"
38+

0 commit comments

Comments
 (0)