~ubuntu-branches/ubuntu/trusty/zope.app.form/trusty

« back to all changes in this revision

Viewing changes to CHANGES.txt

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2010-12-02 01:37:03 UTC
  • Revision ID: james.westby@ubuntu.com-20101202013703-fvbpiae1ok9v73we
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=======
 
2
CHANGES
 
3
=======
 
4
 
 
5
4.0.2 (2010-01-22)
 
6
==================
 
7
 
 
8
- Seems like 4.0.1 was released already. Brown bag.
 
9
 
 
10
4.0.1 (2010-01-08)
 
11
==================
 
12
 
 
13
- Import 'escape' for backwards compatibility as packages turn out to be
 
14
  importing this too, even though it's actually from the Python standard
 
15
  library.
 
16
 
 
17
- Widget documentation is now on PyPI too.
 
18
 
 
19
4.0 (2010-01-08)
 
20
================
 
21
 
 
22
- The widget implementations have been moved to zope.formlib. This
 
23
  makes this package depend on zope.formlib. The dependency of zope.formlib
 
24
  on this package has been broken.
 
25
 
 
26
3.12.1 (2009-12-22)
 
27
===================
 
28
 
 
29
- Added missing zope.datetime dependency.
 
30
 
 
31
3.12.0 (2009-12-22)
 
32
===================
 
33
 
 
34
- Use zope.browserpage in favor of zope.app.pagetemplate.
 
35
 
 
36
3.11.1 (2009-12-22)
 
37
===================
 
38
 
 
39
- Prefer zope.testing.doctest over doctestunit and adjust test output to newer
 
40
  zope.schema release.
 
41
 
 
42
3.11.0 (2009-12-18)
 
43
===================
 
44
 
 
45
- Use zope.component.testing in favor of zope.app.testing where possible.
 
46
 
 
47
- Define dummy standard_macros for test purposes. This reduces the test
 
48
  dependencies by zope.app.basicskin and zope.browserresource.
 
49
 
 
50
- Removed the zope.app.container and zope.app.publisher testing dependencies.
 
51
 
 
52
- Refactored code to remove zope.app.component dependency.
 
53
 
 
54
- Made the tests independent of zope.app.locales.
 
55
 
 
56
- Reduce zope.app test dependencies by avoiding zope.app.securitypolicy and
 
57
  zope.app.zcmlfiles.
 
58
 
 
59
3.10.0 (2009-12-17)
 
60
===================
 
61
 
 
62
- Avoid the ``zope.app.basicskin`` dependency, by defining our own FormMacros.
 
63
 
 
64
3.9.0 (2009-10-08)
 
65
==================
 
66
 
 
67
- Internationalized 'Invalid value' used with ConversionError
 
68
- Added dependency on transaction and test dependency on zope.app.component.
 
69
- Moved dependencies on ZODB3 and zope.location to the test extra.
 
70
- Reduced the dependency on zope.app.publisher to a dependency on
 
71
  zope.browsermenu plus a test dependency on zope.browserpage.
 
72
 
 
73
3.8.1 (2009-07-23)
 
74
==================
 
75
 
 
76
- Fix unittest failure due to translation update.
 
77
 
 
78
3.8.0 (2009-05-24)
 
79
==================
 
80
 
 
81
- Use standard properties instead of `zope.cachedescriptors`.
 
82
 
 
83
- Require `zope.browser` 1.1 instead of `zope.app.container` for IAdding.
 
84
 
 
85
3.7.3 (2009-05-11)
 
86
==================
 
87
 
 
88
- Fixed invalid markup.
 
89
 
 
90
3.7.2 (2009-03-12)
 
91
==================
 
92
 
 
93
- Fixed bug where OrderedMultiSelectWidget did not respect the widgets
 
94
  size attribute.
 
95
 
 
96
- Fixed bug in SequenceWidget where it crashed while trying to iterate
 
97
  a missing_value (None in most of cases) on _getRenderedValue.
 
98
 
 
99
- Adapt to removal of deprecated interfaces from zope.component.interfaces.
 
100
  The IView was moved to zope.publisher and we use our custom IWidgetFactory
 
101
  interface instead of removed zope.component.interfaces.IViewFactory.
 
102
 
 
103
- Fix tests to work on Python 2.6.
 
104
 
 
105
3.7.1 (2009-01-31)
 
106
==================
 
107
 
 
108
- Adapt to the upcoming zope.schema release 3.5.1 which will also silence the
 
109
  spurious `set` failures.
 
110
 
 
111
3.7.0 (2008-12-11)
 
112
==================
 
113
 
 
114
- use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
 
115
 
 
116
- Depending on zope.schema>=3.5a1 which uses the builtin ``set`` instead of the
 
117
  ``sets`` module.
 
118
 
 
119
 
 
120
3.6.4 (2008-11-26)
 
121
==================
 
122
 
 
123
- The URIDisplayWidget doesn't render an anchor for empty/None values.
 
124
 
 
125
 
 
126
3.6.3 (2008-10-15)
 
127
==================
 
128
 
 
129
- Get rid of deprecated usage of LayerField from
 
130
  zope.app.component.back35, replaced by
 
131
  zope.configuration.fields.GlobalInterface.
 
132
 
 
133
3.6.2 (2008-09-08)
 
134
==================
 
135
 
 
136
 
 
137
- Fixed restructured text in doc tests to unbreak the PyPI page.
 
138
 
 
139
(3.6.1 skipped due to a typo)
 
140
 
 
141
 
 
142
3.6.0 (2008-08-22)
 
143
==================
 
144
 
 
145
- Dropdown widgets display an item for the missing value even if the field is
 
146
  required when no value is selected. See zope/app/form/browser/README.txt on
 
147
  how to switch this off for BBB.
 
148
 
 
149
- Source select widgets for required fields are now required as well. They
 
150
  used not to be required on the assumption that some value would be selected
 
151
  by the browser, which had always been wrong except for dropdown widgets.
 
152
 
 
153
 
 
154
3.5.0 (2008-06-05)
 
155
==================
 
156
 
 
157
- Translate the title on SequenceWidget's "Add <title>" button.
 
158
 
 
159
- No longer uses zapi.
 
160
 
 
161
 
 
162
3.4.2 (2008-02-07)
 
163
==================
 
164
 
 
165
- Made display widgets for sources translate message IDs correctly.
 
166
 
 
167
 
 
168
3.4.1 (2007-10-31)
 
169
==================
 
170
 
 
171
- Resolve ``ZopeSecurityPolicy`` deprecation warning.
 
172
 
 
173
 
 
174
3.4.0 (2007-10-24)
 
175
==================
 
176
 
 
177
- ``zope.app.form`` now supports Python2.5
 
178
 
 
179
- Initial release independent of the main Zope tree.
 
180
 
 
181
 
 
182
Before 3.4
 
183
==========
 
184
 
 
185
This package was part of the Zope 3 distribution and did not have its own
 
186
CHANGES.txt. For earlier changes please refer to either our subversion log or
 
187
the CHANGES.txt of earlier Zope 3 releases.