-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGES.txt
85 lines (51 loc) · 1.6 KB
/
CHANGES.txt
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
80
81
82
83
84
85
Changelog
*********
0.3.2 (unreleased)
==================
- Nothing changed yet.
0.3.1 (2017-10-24)
==================
- Added a ``raw_dump`` method to get all the fields serialized.
0.3.0 (2017-10-10)
==================
- Added a ``dump`` method to get all the fields in bulk.
0.2.3 (2017-09-14)
==================
- Now you can override automatically generated methods and
invoke ``super`` inside them
0.2.2 (2017-07-03)
==================
- Moved ``test_fields.py`` to right location.
- Don't override ``update`` and ``raw_update`` methods on pages and
regions if already exist.
0.2.1 (2017-06-01)
==================
- Update email project
0.2.0 (2017-01-24)
==================
Features
--------
- Added ``serialize`` and ``deserialize`` methods on widgets base
implementation for advanced usage.
This way you can implement complex/composed widgets more easily
just overriding the above methods (eg: perform an intermediate
conversion from page model data to browser or widget internal
representation data)
- Added an ``ObjectType`` field for advanced usage when you
have to implement complex or composed widgets
- Added support for ``readonly`` fields. If a field is marked as
read only, no browser interaction will be performed
0.1.0 (2017-01-03)
==================
Features
--------
- Added widget reference to the widget region so you can
navigate to the widget from the widget region and access
to widget options specified on the schema
- Added TextAreaWidget
Documentation
-------------
- Improved documentation
0.0.1 (2016-12-22)
==================
- Initial release