forked from spanner28/django-betterforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
79 lines (50 loc) · 1.76 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
1.1.5 (unreleased)
------------------
- Nothing changed yet.
1.1.4 (2016-01-15)
------------------
- Bugfix for nested multiforms
1.1.3 (2016-01-11)
------------------
- (Bugfix) Help text is not HTML-escaped anymore in Django 1.8
- <https://docs.djangoproject.com/en/1.8/ref/models/fields/#django.db.models.Field.help_text>
- Remove support for Django 1.5 and 1.6.
- Add support for Multiform crossform validation [Julian Andrews, #35].
1.1.2 (2015-09-21)
------------------
- (Bugfix) Mark the output of MultiForm as safe HTML. [Frankie Robertson]
1.1.1 (2014-08-22)
------------------
- (Bugfix) Output both the prefixed and non-prefixed name when the Form is prefixed. [Rocky Meza, #17]
1.1.0 (2014-08-04)
------------------
- Output required for fields even on forms that don't define required_css_class [#16]
1.0.1 (2014-07-07)
------------------
- (Bugfix) Handle None initial values more robustly in MultiForm
1.0.0 (2014-07-04)
------------------
Backwards-incompatible changes:
- Moved all the partials to live the betterforms directory
- Dropped support for Django 1.3
New Features and Bugfixes:
- Support Python 3
- Support Django 1.6
- Add MultiForm and MultiModelForm
- Make NonBraindamagedErrorMixin use error_class
- Use NON_FIELD_ERRORS constant instead of hardcoded value
- Add csrf_exempt argument for form_as_fieldsets
- Add legend attribute to Fieldset
0.1.3 (2013-10-17)
------------------
- Add ``betterforms.changelist`` module with form classes that assist in
listing, searching and filtering querysets.
0.1.2 (2013-07-25)
------------------
* actually update the package.
0.1.1 (2013-07-25)
------------------
* fix form rendering for forms with no fieldsets
0.1.0 (2013-07-25)
------------------
Initial Release