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