8
0

- update to 1.84

- fixes https://rt.cpan.org/Ticket/Display.html?id=69722 .
    - Fixed missing declarations after statements:
        - resolves https://rt.cpan.org/Ticket/Display.html?id=69622 again.
    - Fix docbook source validity
        - resolves https://rt.cpan.org/Ticket/Display.html?id=69702
    - Moved some if blocks after the dSP; (which contains declarations) to be
    compliant with C89/C90, which don't allow declarations in the middle of
    a C function.
        - resolves https://rt.cpan.org/Ticket/Display.html?id=69622
    - Fix https://rt.cpan.org/Ticket/Display.html?id=69553 :
        - "install_sax_driver doesn't like custom INSTALLARCHLIB"
    - Fix "IDs of elements is lost when importing nodes"
        - https://rt.cpan.org/Public/Bug/Display.html?id=69520
        - With t/48importing_nodes_IDs_rt_69520.t .
    - Convert all remaining Test.pm-based test scripts except t/14sax.t to
    Test::More .
    - Fix https://rt.cpan.org/Public/Bug/Display.html?id=69082 :
        - Compilation on strawberry perl.
        - The problem was that stderr required a dTHX; call previously.
    - DOM Normalisation patches and a fix for #69096
        - https://rt.cpan.org/Ticket/Display.html?id=69096
        - "findvalue from XML::LibXML 1.74 is very slow (regression)"
        - https://bitbucket.org/shlomif/perl-xml-libxml/pull-request/5/normalize-bug-fixes
    - Fix https://rt.cpan.org/Ticket/Display.html?id=69433 :
        - "t/19die_on_invalid_utf8_rt_58848.t assumes errors will be objects:"
        - Failed on older libxml2's.
    - Add a skip for t/60error_prev_chain.t in case $@ is true but not a ref.
        - https://rt.cpan.org/Ticket/Display.html?id=69435

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-XML-LibXML?expand=0&rev=17
This commit is contained in:
Vítězslav Čížek
2011-07-25 10:00:51 +00:00
committed by Git OBS Bridge
parent 5bcb879148
commit 898092688e
4 changed files with 38 additions and 4 deletions

View File

@@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Jul 25 09:49:47 UTC 2011 - vcizek@novell.com
- update to 1.84
- fixes https://rt.cpan.org/Ticket/Display.html?id=69722 .
- Fixed missing declarations after statements:
- resolves https://rt.cpan.org/Ticket/Display.html?id=69622 again.
- Fix docbook source validity
- resolves https://rt.cpan.org/Ticket/Display.html?id=69702
- Moved some if blocks after the dSP; (which contains declarations) to be
compliant with C89/C90, which don't allow declarations in the middle of
a C function.
- resolves https://rt.cpan.org/Ticket/Display.html?id=69622
- Fix https://rt.cpan.org/Ticket/Display.html?id=69553 :
- "install_sax_driver doesn't like custom INSTALLARCHLIB"
- Fix "IDs of elements is lost when importing nodes"
- https://rt.cpan.org/Public/Bug/Display.html?id=69520
- With t/48importing_nodes_IDs_rt_69520.t .
- Convert all remaining Test.pm-based test scripts except t/14sax.t to
Test::More .
- Fix https://rt.cpan.org/Public/Bug/Display.html?id=69082 :
- Compilation on strawberry perl.
- The problem was that stderr required a dTHX; call previously.
- DOM Normalisation patches and a fix for #69096
- https://rt.cpan.org/Ticket/Display.html?id=69096
- "findvalue from XML::LibXML 1.74 is very slow (regression)"
- https://bitbucket.org/shlomif/perl-xml-libxml/pull-request/5/normalize-bug-fixes
- Fix https://rt.cpan.org/Ticket/Display.html?id=69433 :
- "t/19die_on_invalid_utf8_rt_58848.t assumes errors will be objects:"
- Failed on older libxml2's.
- Add a skip for t/60error_prev_chain.t in case $@ is true but not a ref.
- https://rt.cpan.org/Ticket/Display.html?id=69435
- http://www.cpantesters.org/cpan/report/4ac00aae-a73f-11e0-84bd-8881cd42d09c
-------------------------------------------------------------------
Mon Jul 11 14:28:38 UTC 2011 - vcizek@novell.com