Files
perl-HTML-TreeBuilder-LibXML/perl-HTML-TreeBuilder-LibXML.changes
Dirk Stoecker 45cf241ddf Accepting request 1184364 from devel:languages:perl:autoupdate
- Remove fix-05_empty.patch, fixed upstream
- updated to 0.280.0 (0.28)
   see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
  0.28 2024-06-20T08:48:55Z
  0.28 2024-06-20T08:17:27Z
      - Same code as 0.27 - republishing to force CPAN reindexing
  0.27 2024-01-09T06:19:12Z
      - don't have the parser string blanks by default #15
        https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/pull/15
      - fallback to toString() when toStringC14N(1) gives an empty string #17
        https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/pull/17

OBS-URL: https://build.opensuse.org/request/show/1184364
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTML-TreeBuilder-LibXML?expand=0&rev=7
2024-07-02 12:51:22 +00:00

187 lines
6.3 KiB
Plaintext

-------------------------------------------------------------------
Mon Jul 1 19:07:31 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- Remove fix-05_empty.patch, fixed upstream
-------------------------------------------------------------------
Sun Jun 23 16:20:31 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- updated to 0.280.0 (0.28)
see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
0.28 2024-06-20T08:48:55Z
0.28 2024-06-20T08:17:27Z
- Same code as 0.27 - republishing to force CPAN reindexing
0.27 2024-01-09T06:19:12Z
- don't have the parser string blanks by default #15
https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/pull/15
- fallback to toString() when toStringC14N(1) gives an empty string #17
https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/pull/17
-------------------------------------------------------------------
Wed Aug 9 12:49:16 UTC 2023 - Tina Müller <tina.mueller@suse.com>
- Add fix-05_empty.patch, see
https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/pull/17
-------------------------------------------------------------------
Fri Oct 21 05:33:57 UTC 2016 - coolo@suse.com
- updated to 0.26
see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
0.26 2016-10-19T15:03:00Z
- Improve `HTML::TreeBuilder::LibXML::Node->new` compatibility
with `HTML::Element->new`
https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/issues/12
(reported by nanto++)
-------------------------------------------------------------------
Wed Apr 22 06:18:38 UTC 2015 - coolo@suse.com
- updated to 0.25
see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
0.25 2015-04-21T23:39:33Z
commit 5c46775d50678e611729135f3601b66e6a0d10cd
Author: Yanick Champoux <yanick@babyl.dyndns.org>
Date: Thu Jan 15 14:15:04 2015 -0500
silence warnings
... as the arguments can be undefined
Fixes #10
-------------------------------------------------------------------
Tue Apr 14 21:12:48 UTC 2015 - coolo@suse.com
- updated to 0.24
see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
0.24 2014-09-22T09:31:26Z
- Removed Web::Scraper from runtime dependencies.
https://github.com/tokuhirom/HTML-TreeBuilder-LibXML/issues/9
0.23 2013-05-17T00:16:48Z
- fixed guts(), clone() and replace_with() to properly handle XML::LibXML::Dtd nodes
- guts() now includes the Dtd node in the returned document (unless it were implicitly created)
- clone() calls createInternalSubset() on the new document
- replace_with() calls createInternalSubset() if the replacement is a XML::LibXML::Dtd (can't import Dtd node)
(cafe01)
0.22 2013-05-13T00:04:09Z
- improved guts(), calling nonBlankChildNodes() instead of childNodes()
- improved HTML::TreeBuilder::LibXML::Node documentation
(cafe01)
0.21 2013-05-12T19:12:53Z
- fixed guts(),
- now returning nodes from <head> and <body> instead of just <body>
- now returning text and comment nodes instead of just element nodes
- returned nodes now belong to the same document
- fixed to_HTML to render valid html, not xml
(cafe01)
0.20 2013-05-10T20:44:16Z
- improved replace_with() on document node.
- fixed push_content() and unshift_content() to work with document mode.
(cafe01)
0.19 2013-05-10T01:03:58Z
- fixed replace_with() and parent(),
to avoid calling appendChild() on a Document node, which is not supported by XML::LibXML.
(cafe01)
0.18 2013-05-09T20:49:04Z
- implemented all node methods needed for Web::Query::LibXML to work
- clone_list
- detach
- delete_content
- content_list
- replace_with
- push_content
- unshift_content
- postinsert
- preinsert
- disembowel (HTML::TreeBuilder::LibXML)
(cafe01)
- modified parse_file() to read file content, then call parse_content()
- thats because parse_content() will detect (heuristically) when the parser will add implict <html><body> tags, so guts() can work properly.
(cafe01)
0.18 2013-05-09T01:27:46Z
- implemented matches(), parent(), guts() node method
(Carlos Fernando Avila Gratz)
0.17
handle /(de)?objectify_text/ for <script> extraction
(Stanislaw Pusep)
0.16
commit 07b40205fd03564d476eff7675e9f19196939f2f
Author: Oleg G <verdrehung@gmail.com>
Date: Sat Mar 31 13:26:11 2012 +0700
added few methods to support Web::Query
0.15
* Add additional methods to better match
HTML::TreeBuilder::XPath::Node API:
- exists($xpath)
- find($elem_name)
- findvalues($xpath)
- findnodes_as_string($xpath)
- findnodes_as_strings($xpath)
(genehack)
0.14
* added workaround for Web::Scraper 0.36
(tokuhirom)
0.13
* Added 'getValue' node's method as in HTML::TreeBuilder::XPath for
comment nodes in web-scraper module
* Added dummy method 'store_comments' as in HTML::TreeBuilder
for web-scraper module (for comment nodes) and for
HTML::TreeBuilder::XPath working in tests with comment nodes
* Now this module requires HTML::TreeBuilder::XPath v.0.14 (before 0.14
there getValue() didn't work for comment nodes)
-------------------------------------------------------------------
Tue Apr 14 21:12:47 UTC 2015 - coolo@suse.com
- updated to 0.13
see /usr/share/doc/packages/perl-HTML-TreeBuilder-LibXML/Changes
0.13
* Added 'getValue' node's method as in HTML::TreeBuilder::XPath for
comment nodes in web-scraper module
* Added dummy method 'store_comments' as in HTML::TreeBuilder
for web-scraper module (for comment nodes) and for
HTML::TreeBuilder::XPath working in tests with comment nodes
* Now this module requires HTML::TreeBuilder::XPath v.0.14 (before 0.14
there getValue() didn't work for comment nodes)
-------------------------------------------------------------------
Sat Dec 25 01:07:15 UTC 2010 - pascal.bleser@opensuse.org
- initial package (0.12)