Version 0.009006
[catagits/HTML-Zoom.git] / Changes
1 0.009006 2011-05-20
2   - Add DESTROY method to fix test failures / warnings in perl >= 5.13.1
3
4 0.009005 2011-05-12
5
6   - Perforce escaping of meta-characters in selectors and test (rafl)
7   - New Feature:  HTML::Zoom will autoload FilterBuilder functions so that
8     you can avoid a bit of boilerplate in method calls.  Now you can replace:
9
10         $z->select('div')->replace_content("Hello World");
11
12     With:
13
14         $z->replace_content(div => "Hello World");
15
16   - Lots of changes to FilterBuilder so that functionality matched the docs
17     better, improved the docs and added tests for documented functions to
18     avoid future regressions.
19
20   - add / to excluded characters in attribute names to correctly parse <br/>
21   - add transform_attribute method (rbuels)
22
23 0.009004 2011-02-14
24
25   - Large chunks of documentation improvements from jnareb
26   - apply_if method from ocharles
27   - selector improvements and bugfixes (jnareb, mst)
28
29 0.009003 2010-10-12
30
31   - mst is an idiot and forgot to add strictures.pm as a dependency
32
33 0.009002 2010-10-12
34
35   - Added support for more selector syntax support including:
36       element#id
37       element.class
38       element[attr=foo]
39       element[attr*=foo]
40       element[attr~=foo]
41       element[attr]
42       element[attr^=foo]
43       [attr=foo]
44   - HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder
45   - Improved documentation, including documentation for HTML::Zoom::FilterBuilder.
46   - Lots of other refactoring, internal improvements & bugfixes!
47
48 0.009001 2010-03-17
49
50   - First release