getting things synced up for a release
[catagits/HTML-Zoom.git] / Changes
1 0.009009 2015-05-15
2   - just took the most recent dev release and repository updates, made
3     sure all tests pass and cut a stable release.  Please shout out if
4     something unexpected happens.
5
6 0.009008_01 2013-02-28
7
8   - remove_from_attribute and related helpers (remove_class, add_class)
9
10   - Several patches for incorrect functionality (thanks to Jim Miner &
11     stratman@gmail.com) :-
12
13   - Don't throw away leading PCDATA in $text, in _hacky_tag_parser().
14     This is important so we can use from_html and replace_content to
15     insert fragments with or without markup into templates.
16
17   - Fix matching against attribute value "0" (zero) or "" (empty).
18
19   - Fix parsing of selectors matching against attribute value "" (empty).
20     (This does not fix parsing of single-quoted attribute values.)
21
22 0.009007 2013-02-24
23   - Remove long form ( name, value ) for attributes to set_attribute / add_attribute
24     to allow future enhancements (selector in options).
25
26 0.009006 2011-05-20
27   - Add DESTROY method to fix test failures / warnings in perl >= 5.13.1
28
29 0.009005 2011-05-12
30
31   - Perforce escaping of meta-characters in selectors and test (rafl)
32   - New Feature:  HTML::Zoom will autoload FilterBuilder functions so that
33     you can avoid a bit of boilerplate in method calls.  Now you can replace:
34
35         $z->select('div')->replace_content("Hello World");
36
37     With:
38
39         $z->replace_content(div => "Hello World");
40
41   - Lots of changes to FilterBuilder so that functionality matched the docs
42     better, improved the docs and added tests for documented functions to
43     avoid future regressions.
44
45   - add / to excluded characters in attribute names to correctly parse <br/>
46   - add transform_attribute method (rbuels)
47
48 0.009004 2011-02-14
49
50   - Large chunks of documentation improvements from jnareb
51   - apply_if method from ocharles
52   - selector improvements and bugfixes (jnareb, mst)
53
54 0.009003 2010-10-12
55
56   - mst is an idiot and forgot to add strictures.pm as a dependency
57
58 0.009002 2010-10-12
59
60   - Added support for more selector syntax support including:
61       element#id
62       element.class
63       element[attr=foo]
64       element[attr*=foo]
65       element[attr~=foo]
66       element[attr]
67       element[attr^=foo]
68       [attr=foo]
69   - HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder
70   - Improved documentation, including documentation for HTML::Zoom::FilterBuilder.
71   - Lots of other refactoring, internal improvements & bugfixes!
72
73 0.009001 2010-03-17
74
75   - First release