Upload Tizen:Base source
[toolchains/python-lxml.git] / packaging / python-lxml.changes
1 * Wed Dec 23 2009 Anas Nashif <anas.nashif@intel.com> - 2.2.3
2 - Initial import into Moblin
3
4 * Thu Nov  5 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2.3-3
5 - F-13's python build chain must be a little different...
6
7 * Thu Nov  5 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2.3-2
8 - Add option to build a Python 3 subpackage, original patch by David Malcolm
9
10 * Fri Oct 30 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2.3-1
11 - 2.2.3 (2009-10-30)
12 - Bugs fixed
13
14 -    * The resolve_entities option did not work in the incremental feed
15 -      parser.
16 -    * Looking up and deleting attributes without a namespace could hit a
17 -      namespaced attribute of the same name instead.
18 -    * Late errors during calls to SubElement() (e.g. attribute related
19 -      ones) could leave a partially initialised element in the tree.
20 -    * Modifying trees that contain parsed entity references could result
21 -      in an infinite loop.
22 -    * ObjectifiedElement.__setattr__ created an empty-string child element
23 -      when the attribute value was rejected as a non-unicode/non-ascii
24 -      string
25 -    * Syntax errors in lxml.cssselect could result in misleading error
26 -      messages.
27 -    * Invalid syntax in CSS expressions could lead to an infinite loop in
28 -      the parser of lxml.cssselect.
29 -    * CSS special character escapes were not properly handled in
30 -      lxml.cssselect.
31 -    * CSS Unicode escapes were not properly decoded in lxml.cssselect.
32 -    * Select options in HTML forms that had no explicit value attribute
33 -      were not handled correctly. The HTML standard dictates that their
34 -      value is defined by their text content. This is now supported by
35 -      lxml.html.
36 -    * XPath raised a TypeError when finding CDATA sections. This is now
37 -      fully supported.
38 -    * Calling help(lxml.objectify) didn't work at the prompt.
39 -    * The ElementMaker in lxml.objectify no longer defines the default
40 -      namespaces when annotation is disabled.
41 -    * Feed parser failed to honour the 'recover' option on parse errors.
42 -    * Diverting the error logging to Python's logging system was broken.
43
44 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-2
45 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
46
47 * Sun Jun 21 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2.2-1
48 - 2.2.2 (2009-06-21)
49 - Features added
50
51 -    * New helper functions strip_attributes(), strip_elements(),
52 -      strip_tags() in lxml.etree to remove attributes/subtrees/tags
53 -      from a subtree.
54
55 - Bugs fixed
56
57 -    * Namespace cleanup on subtree insertions could result in missing
58 -      namespace declarations (and potentially crashes) if the element
59 -      defining a namespace was deleted and the namespace was not used
60 -      by the top element of the inserted subtree but only in deeper
61 -      subtrees.
62 -    * Raising an exception from a parser target callback didn't always
63 -      terminate the parser.
64 -    * Only {true, false, 1, 0} are accepted as the lexical representation
65 -      for BoolElement ({True, False, T, F, t, f} not any more), restoring
66 -      lxml <= 2.0 behaviour.
67
68 * Tue Jun  2 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2.1-1
69 - 2.2.1 (2009-06-02)
70 - Features added
71
72 -    * Injecting default attributes into a document during XML Schema
73 -      validation (also at parse time).
74 -    * Pass huge_tree parser option to disable parser security restrictions
75 -      imposed by libxml2 2.7.
76
77 - Bugs fixed
78
79 -    * The script for statically building libxml2 and libxslt didn't work
80 -      in Py3.
81 -    * XMLSchema() also passes invalid schema documents on to libxml2 for
82 -      parsing (which could lead to a crash before release 2.6.24).
83
84 * Tue Mar 24 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-1
85 - 2.2 (2009-03-21)
86 - Features added
87
88 -    * Support for standalone flag in XML declaration through
89 -      tree.docinfo.standalone and by passing standalone=True/False on
90 -      serialisation.
91
92 - Bugs fixed
93
94 -    * Crash when parsing an XML Schema with external imports from a
95 -      filename.
96
97 * Fri Feb 27 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.8.beta4
98 - 2.2beta4 (2009-02-27)
99 - Features added
100
101 -    * Support strings and instantiable Element classes as child arguments
102 -      to the constructor of custom Element classes.
103 -    * GZip compression support for serialisation to files and file-like
104 -      objects.
105
106 - Bugs fixed
107
108 -    * Deep-copying an ElementTree copied neither its sibling PIs and
109 -      comments nor its internal/external DTD subsets.
110 -    * Soupparser failed on broken attributes without values.
111 -    * Crash in XSLT when overwriting an already defined attribute using
112 -      xsl:attribute.
113 -    * Crash bug in exception handling code under Python 3. This was due to
114 -      a problem in Cython, not lxml itself.
115 -    * lxml.html.FormElement._name() failed for non top-level forms.
116 -    * TAG special attribute in constructor of custom Element classes was
117 -      evaluated incorrectly.
118
119 - Other changes
120
121 -    * Official support for Python 3.0.1.
122 -    * Element.findtext() now returns an empty string instead of None for
123 -      Elements without text content.
124
125 * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-0.7.beta3
126 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
127
128 * Tue Feb 17 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.6.beta3
129 - 2.2beta3 (2009-02-17)
130 - Features added
131
132 -    * XSLT.strparam() class method to wrap quoted string parameters that
133 -     require escaping.
134
135 - Bugs fixed
136
137 -    * Memory leak in XPath evaluators.
138 -    * Crash when parsing indented XML in one thread and merging it with
139 -      other documents parsed in another thread.
140 -    * Setting the base attribute in lxml.objectify from a unicode string
141 -      failed.
142 -    * Fixes following changes in Python 3.0.1.
143 -    * Minor fixes for Python 3.
144
145 - Other changes
146
147 -    * The global error log (which is copied into the exception log) is now
148 -      local to a thread, which fixes some race conditions.
149 -    * More robust error handling on serialisation.
150
151 * Sun Jan 25 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.5.beta2
152 - 2.2beta2 (2009-01-25)
153 - Bugs fixed
154
155 -    * Potential memory leak on exception handling. This was due to a
156 -      problem in Cython, not lxml itself.
157 -    * iter_links (and related link-rewriting functions) in lxml.html would
158 -      interpret CSS like url("link") incorrectly (treating the quotation
159 -      marks as part of the link).
160 -    * Failing import on systems that have an io module.
161
162 * Fri Dec 12 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.4.beta1
163 - 2.2beta1 (2008-12-12)
164 - Features added
165
166 -    * Allow lxml.html.diff.htmldiff to accept Element objects,
167 -      not just HTML strings.
168
169 - Bugs fixed
170
171 -    * Crash when using an XPath evaluator in multiple threads.
172 -    * Fixed missing whitespace before Link:... in lxml.html.diff.
173
174 - Other changes
175
176 -    * Export lxml.html.parse.
177
178 * Fri Nov 28 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.3.alpha1
179 - Rebuild for Python 2.6
180
181 * Mon Nov 24 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.2.alpha1
182 - Don't forget to upload the sources!
183
184 * Mon Nov 24 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.2-0.1.alpha1
185 - 2.2alpha1 (2008-11-23)
186 - Features added
187
188 -    * Support for XSLT result tree fragments in XPath/XSLT extension
189 -      functions.
190 -    * QName objects have new properties namespace and localname.
191 -    * New options for exclusive C14N and C14N without comments.
192 -    * Instantiating a custom Element classes creates a new Element.
193
194 - Bugs fixed
195
196 -    * XSLT didn't inherit the parse options of the input document.
197 -    * 0-bytes could slip through the API when used inside of Unicode
198 -      strings.
199 -    * With lxml.html.clean.autolink, links with balanced parenthesis, that
200 -      end in a parenthesis, will be linked in their entirety (typical with
201 -      Wikipedia links).
202
203 * Mon Nov 17 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.3-1
204 - 2.1.3 (2008-11-17)
205 - Bugs fixed
206
207 -    * Ref-count leaks when lxml enters a try-except statement while an
208 -      outside exception lives in sys.exc_*(). This was due to a problem
209 -      in Cython, not lxml itself.
210 -    * Parser Unicode decoding errors could get swallowed by other
211 -      exceptions.
212 -    * Name/import errors in some Python modules.
213 -    * Internal DTD subsets that did not specify a system or public ID
214 -      were not serialised and did not appear in the docinfo property
215 -      of ElementTrees.
216 -    * Fix a pre-Py3k warning when parsing from a gzip file in Py2.6.
217 -    * Test suite fixes for libxml2 2.7.
218 -    * Resolver.resolve_string() did not work for non-ASCII byte strings.
219 -    * Resolver.resolve_file() was broken.
220 -    * Overriding the parser encoding didn't work for many encodings.
221
222 * Fri Sep  5 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.2-1
223 - 2.1.2 (2008-09-05)
224 - Features added
225
226 -    * lxml.etree now tries to find the absolute path name of files when
227 -      parsing from a file-like object. This helps custom resolvers when
228 -      resolving relative URLs, as lixbml2 can prepend them with the path of
229 -      the source document.
230
231 - Bugs fixed
232
233 -    * Memory problem when passing documents between threads.
234 -    * Target parser did not honour the recover option and raised an exception
235 -      instead of calling .close() on the target.
236
237 * Fri Jul 25 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.1-1
238 - Update to 2.1.1
239
240 * Fri Jun 20 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.7-1
241 - Update to 2.0.7
242 - Update download URL
243
244 * Sat May 31 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.6-1
245 - Update to 2.0.6
246
247 * Thu May  8 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.5-1
248 - Update to 2.0.5
249
250 * Wed Mar 26 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.3-1
251 - Update to 2.0.3
252
253 * Sat Feb 23 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.2-1
254 - Update to 2.0.2
255
256 * Tue Feb 19 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.1-1
257 - Update to 2.0.1
258
259 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.6-2
260 - Autorebuild for GCC 4.3
261
262 * Mon Nov  4 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.6-1
263 - Update to 1.3.6.
264
265 * Mon Oct 22 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.5-1
266 - Update to 1.3.5.
267
268 * Thu Aug 30 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.4-1
269 - Update to 1.3.4.
270
271 * Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.3.3-3
272 - Rebuild for selinux ppc32 issue.
273
274 * Tue Aug 28 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.3-2
275 - BR python-setuptools-devel
276
277 * Mon Jul 30 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.3.3-1
278 - Update to 1.3.3
279
280 * Fri Jan 19 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.2-1
281 - Update to 1.1.2
282
283 * Thu Dec 14 2006 Jason L Tibbitts III <tibbs@math.uh.edu> - 1.0.3-3
284 - Rebuild for new Python
285
286 * Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 1.0.3-2
287 - Rebuild for FC6
288
289 * Thu Aug 17 2006 Shahms E. King <shahms@shahms.com> 1.0.3-1
290 - Update to new upstream version
291
292 * Fri Aug 11 2006 Shahms E. King <shahms@shahms.com> 1.0.2-2
293 - Include, don't ghost .pyo files per new guidelines
294
295 * Fri Jul 07 2006 Shahms E. King <shahms@shahms.com> 1.0.2-1
296 - Update to new upstream release
297
298 * Mon Jun 26 2006 Shahms E. King <shahms@shahms.com> 1.0.1-1
299 - Update to new upstream release
300
301 * Fri Jun 02 2006 Shahms E. King <shahms@shahms.com> 1.0-1
302 - Update to new upstream 1.0 release
303
304 * Wed Apr 26 2006 Shahms E. King <shahms@shahms.com> 0.9.1-3
305 - Add python-setuptools to BuildRequires
306 - Use dist tag
307
308 * Wed Apr 26 2006 Shahms E. King <shahms@shahms.com> 0.9.1-2
309 - Fix summary and description
310
311 * Tue Apr 18 2006 Shahms E. King <shahms@shahms.com> 0.9.1-1
312 - update the new upstream version
313 - remove Pyrex build req
314
315 * Tue Dec 13 2005 Shahms E. King <shahms@shahms.com> 0.8-1
316 - Initial package