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