X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=191d465b6f6d2f48427986d67d730bbd2f6533ca;hb=6af04df5d563b2044ff7d65c88f977557ec17e48;hp=649c7d7e6f4b4d8cc9e146ef01096ee98b7251f2;hpb=1cf035405cb81b780825c083cf7f5c0767b19243;p=catagits%2FHTML-Zoom.git diff --git a/Changes b/Changes index 649c7d7..191d465 100644 --- a/Changes +++ b/Changes @@ -1,22 +1,47 @@ -0.009003 - 2010-10-12 +0.009005 2011-05-12 -* mst is an idiot and forgot to add strictures.pm as a dependency + - Perforce escaping of meta-characters in selectors and test (rafl) + - New Feature: HTML::Zoom will autoload FilterBuilder functions so that + you can avoid a bit of boilerplate in method calls. Now you can replace: -0.009002 - 2010-10-12 + $z->select('div')->replace_content("Hello World"); -* Added support for more selector syntax support including: - + element#id - + element.class - + element[attr=foo] - + element[attr*=foo] - + element[attr~=foo] - + element[attr] - + element[attr^=foo] - + [attr=foo] -* HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder -* Improved documentation, including documentation for HTML::Zoom::FilterBuilder. -* Lots of other refactoring, internal improvements & bugfixes! + With: -0.009001 - 2010-03-17 + $z->replace_content(div => "Hello World"); -First release + - Lots of changes to FilterBuilder so that functionality matched the docs + better, improved the docs and added tests for documented functions to + avoid future regressions. + + - add / to excluded characters in attribute names to correctly parse
+ - add transform_attribute method (rbuels) + +0.009004 2011-02-14 + + - Large chunks of documentation improvements from jnareb + - apply_if method from ocharles + - selector improvements and bugfixes (jnareb, mst) + +0.009003 2010-10-12 + + - mst is an idiot and forgot to add strictures.pm as a dependency + +0.009002 2010-10-12 + + - Added support for more selector syntax support including: + element#id + element.class + element[attr=foo] + element[attr*=foo] + element[attr~=foo] + element[attr] + element[attr^=foo] + [attr=foo] + - HTML::Zoom::MatchWithoutFilter replaced by HTML::Zoom::TransformBuilder + - Improved documentation, including documentation for HTML::Zoom::FilterBuilder. + - Lots of other refactoring, internal improvements & bugfixes! + +0.009001 2010-03-17 + + - First release