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