Revisions of perl-XML-LibXML

Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 34)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 242338 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 33)
- updated to 2.0116
     - t/cpan-changes.t : minimum version of Test::CPAN::Changes.
         - This is to avoid test failures such as:
             - http://www.cpantesters.org/cpan/report/69ee1a2a-6c09-1014-be8f-3786912f2992
 
 2.0115  2014-04-03
     - Fix double free when calling $node->addSibling with text nodes.
           - https://rt.cpan.org/Ticket/Display.html?id=94149
           - Thanks to Jeff Trout for the report.
 
 2.0114  2014-04-03
     - Fix memory leaks and segfaults related to removal and insertion of
       DTD nodes.
         - https://rt.cpan.org/Ticket/Display.html?id=80521
     - Fix memory leak in $node->removeChildNodes

- updated to 2.0113
     - Fix test failures with older libxml2 versions.
         - https://rt.cpan.org/Ticket/Display.html?id=93852
         - Thanks to Nick Wellnhofer for the patch.
         - Thanks to the CPAN Testers for reporting this issue.
 
 2.0112          Thu 13 Mar 20:16:52 IST 2014
     - Fix segfaults when accessing attributes of DTD nodes
         - https://rt.cpan.org/Ticket/Display.html?id=71076
         - Thanks to Ralph Merridew for the report.
     - Make $schema->validate work with elements. This uses
       xmlSchemaValidateOneElement under the hood.
         - https://rt.cpan.org/Ticket/Display.html?id=93496
         - Thanks to Jeremy Marshall for the report.
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 32)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 184912 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 31)
- updated to 2.0019
     - Correct typos reported in RT #86599.
         - https://rt.cpan.org/Ticket/Display.html?id=86599
         - Thanks to dsteinbrunner.
 
     - Revert previous change of minimal version of libxml2.
         - This change proved to be unpopular and didn't prevent
         the CPAN test failures.
         - By SHLOMIF
 
     - Made the minimal version of libxml2 2.9.0 as previous versions were
     too buggy due to spuriourous CPAN test failures.
         - Please upgrade.
         - By SHLOMIF
 
     - Don't enable XML_PARSE_HUGE by default.
         - Fix the previous version due to a mercurial SNAFU.
 
     - Don't enable XML_PARSE_HUGE by default.
         - https://bitbucket.org/shlomif/perl-xml-libxml/pull-request/19
         - Thanks to Grant McLean ( https://metacpan.org/author/GRANTM ) for
         the bug report and patch.
 
     - Got 40reader_mem_error.t to not fetch the external DTDs.
         - https://rt.cpan.org/Public/Bug/Display.html?id=81703
         - Thanks to Alexandr Ciornii (CHORNY) for the report and Slaven
         Rezic (SREZIC) for the analysis and a proposed fix.
 
     - Fix a memory error (double-free) in XML::LibXML::Reader if we reached
     EOF and
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 30)
Split 12.3 from Factory
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 29)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 122630 from Marcus Meissner's avatar Marcus Meissner (msmeissn) (revision 28)
- STRLEN has 64 bits here and int has 32, so the (int*) cast in
XML::LibXML::Document::toStringHTML() makes htmlDocDumpMemory() store
the 32-bit length of the result into a 64-bit variable.  Depending on
the endianness, it either works OK (LE) or corrupts the variable (BE)
Just use an 'int' instead, and cast it to an STRLEN later in the
newSVpvn() call. (forwarded request 122259 from k0da)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 114001 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 27)
- disable 12html.t as it causes OOM on ppc64 (forwarded request 113919 from k0da)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 108136 from Vítězslav Čížek's avatar Vítězslav Čížek (vitezslav_cizek) (revision 26)
- update to 1.95
    - Got rid of a broken test (at least with recent libxml2s) in
    t/03doc.t :
        - https://rt.cpan.org/Ticket/Display.html?id=75403
        - The problem was that the test tested for an undefined XML
        namespace, a behaviour which was changed in a recent libxml2
        release.
   1.94
    - Fix XML::LibXML::Element tests for ineqaulity with == and eq.
        - Fixes https://rt.cpan.org/Ticket/Display.html?id=75505 .
        - Thanks to Mark Overmeer for the report and for a preliminary patch
        to t/71overload.t .
    1.93            Mon Feb 27 11:15:50 IST 2012
    - Fix XML::LibXML::Element comparision with == and eq.
        - Fixes https://rt.cpan.org/Ticket/Display.html?id=75257 ,
        https://rt.cpan.org/Ticket/Display.html?id=75293 ,
        https://rt.cpan.org/Ticket/Display.html?id=75259 .
        - Thanks to Toby Inkster for a preliminary patch (that was modified by
        me) and to the various people who reported the problem.
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 107095 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 25)
- update to 1.92
    - Fix for test failure on perls < 5.10.
        - Fixes https://rt.cpan.org/Public/Bug/Display.html?id=75195
        - Thanks to Paul for the report, and for a patch that was not
        accepted.
1.91            Tue Feb 21 13:57:54 IST 2012
    - Overload hash dereferencing on XML::LibXML::Elements, to provide
    access to the element's attributes.
        - See XML::LibXML::AttributeHash for details.
        - Thanks to Toby Inkster.
    - Pull some commits from Toby Inkster to add more convenient methods
    to XML::LibXML::NodeList such as sort, map, grep, etc.
        - https://bitbucket.org/shlomif/perl-xml-libxml/pull-request/11/xml-libxml-nodelist-improvements
        - Thanks, Toby!
    - Printed some warnings regardless if DEBUG is on.
        - Thanks to http://search.cpan.org/~mstrout/ for the suggestion.
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 23)
replace license with spdx.org variant
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 91027 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 22)
- update to 1.88
    - Add libxml2 2.7.8 as tested and working fine for the Makefile.PL.
    (Thanks to H. Merijn Brand.).
    - Apply a patch to perl-libxml-sax.c to use xmlChar * instead of char *.
    (Thanks to H. Merijn Brand.).
    - Correct the README so it won't read XML-LibXML-Common.
        - see http://code.activestate.com/lists/perl-xml/8907/
    - Add a patch to implement the no_defdtd option in recent libxml2's:
        - https://rt.cpan.org/Ticket/Display.html?id=70878
        - Thanks to zzgrim@gmail.com .
    - Add scripts/bump-version-number.pl to modify the version number globally.
        - Currently the version numbers of the modules under lib/ where 1.73.
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 21)
Displaying revisions 21 - 40 of 60
openSUSE Build Service is sponsored by