Package Release Info

libxml++-3.0.1-bp150.2.3

Update Info: Base Release
Available in Package Hub : 15

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

libxml++-3_0-1
libxml++-devel

Change Logs

Version: 3.0.1-bp150.2.2
* Wed Feb 28 2018 dimstar@opensuse.org
- Modernize spec-file by calling spec-cleaner
* Mon Nov 14 2016 dimstar@opensuse.org
- Update to version 3.0.1:
  + Element::remove_attribute(): Delete the C++ wrapper
    (bgo#768404).
* Tue Feb 02 2016 dimstar@opensuse.org
- Update to version 3.0.0:
  + This release is identical to the unstable 2.91.3, except for
    the so name, which has now been bumped (bgo#760574).
- Rename libxml++-3_0-0 subpackage to libxml++-3_0-1, following
  upstreams soname bump (also in baselibs.conf).
* Tue Jan 12 2016 zaitor@opensuse.org
- Update to version 2.91.3:
  + Element: Remove a redundant nullptr check (bgo#757515).
  + Use scoped enums (enum class) instead of unscoped enums.
  + Document: Test for nullptr in a constructor.
  + DomParser: Make operator bool() explicit.
  + The ABI and API are not identical to libxml++ 2.91.2.
* Fri Nov 27 2015 zaitor@opensuse.org
- Update to version 2.91.2:
  + Remove the preprocessor constant LIBXMLCPP_EXCEPTIONS_ENABLED.
    It was always 1.
  + Add a config-time test for support of std::exception_ptr. Don't
    try to use std::exception_ptr on a system where it does not
    exist. This includes re-implementing the wrapped_exception
    class and the raise() and clone() methods in xmlpp::exception
    and its subclasses (bgo##757042).
  + The ABI is not identical to that of libxml++ 2.91.1. There may
    be more changes in ABI and/or API before the first stable
    libxml++-3.0 release.
- Changes from version 2.91.1:
  + Renamed ABI from libxml++-2.6 to libxml++-3.0.
  + This requires applications to change their pkg-config check to
    libxml++-3.0 when they wish to use libxml++ 2.9x or 3.x instead
    of libxml++2.x. (bgo#754673).
  + There may be more changes in ABI and/or API before the first
    stable libxml++-3.0 release.
  + Node: Add const_NodeList and use it in a const version of
    get_children().
  + Add const_NodeSet and use it in a const version of find().
  + Replace xmlpp::NodeSet by xmlpp::Node::NodeSet.
  + Element: Add const_Attribute_list and use it in a const
    version of get_attributes() (bgo#338907).
  + Document: Add a non-const version of get_root_node(). Let the
    const version return a const pointer (bgo#632522).
  + Element: Add a non-const version of get_attribute(). Let the
    const version return a const pointer (bgo#632524).
  + Replace the deprecated std::auto_ptr by std::unique_ptr
    (bgo#753123).
  + DomParser: The default behaviour is to throw both parse errors
    and validity errors in an exception instead of printing some
    messages on stderr.
  + Parser: Some protected data has become private.
  + Several classes: Some virtual methods have become non-virtual,
    and some non-virtual methods have become virtual.
  + Remove class xmlpp::wrapped_exception and the deprecated
    classes Schema and SchemaValidator.
  + xmlpp::exception and its subclasses: Remove Raise() and
    Clone().
  + SaxParser: Start each parsing with a new Document for entity
    resolution.
  + Move all Node::add_child*() methods to Element and rename them
    to add_child_element*().
  + Attribute: Move set_value() to AttributeNode.
  + Use std::string instead of Glib::ustring for filenames.
  + Node: Replace remove_child() by remove_node().
  + Move some code from DtdValidator to Dtd.
  + Element: Rename set/get_child_text() to
    set/get_first_child_text().
  + Rename subpackages following upstreams soname bump.
  + Bump version in baselibs.conf.
* Wed Sep 30 2015 zaitor@opensuse.org
- Update to version 2.40.0:
  + Build improvements.
* Sat Sep 05 2015 zaitor@opensuse.org
- Update to version 2.39.2:
  + SaxParser: Fix ?double free or corruption? if a std::exception
    is thrown by a handler method.
  + Replace some (deprecated in C++11) std::auto_ptr by
    std::unique_ptr. There are still some auto_ptrs in header files
    bug replacing them would break ABI (bgo#753123).
* Sat Jul 25 2015 zaitor@opensuse.org
- Update to version 2.39.1:
  + Use (and require) C++11.
* Thu Jul 23 2015 zaitor@opensuse.org
- Run spec-cleaner, make spec more modern.
- Replace glibmm2-devel and libxml2-devel for their pkgconfig()
  equivalents.
* Mon Jun 08 2015 zaitor@opensuse.org
- Update to version 2.38.1:
  + Fix the build with C++11 compilers, such as MS Visual C++ 2013.
    Implicit conversions from streams to bool are no longer
    allowed.
  + Build:
  - Disable deprecated API in dependencies if
  - -enable-warnings=fatal.
  - Require libxml2 2.7.7 or later.
* Fri Feb 27 2015 zaitor@opensuse.org
- Update to version 2.38.0:
  + No changes from last relase, stable version bump only.
* Wed Jan 28 2015 zaitor@opensuse.org
- Update to version 2.37.2:
  + Add version information to libxml++config.h.
  + Document: Avoid possible null pointer dereference (bgo#732604).
  + Element::set_namespace_declaration(): Update the node's
    associated namespace. Add dom_update_namespace example program
    (bgo#737682).
  + Add Node::add_child_with_new_ns() (bgo#737682).
  + Schema: Don't use null pointers in get_name(),
    get_target_namespace() and get_version().
  + Add XsdSchema and XsdValidator. Deprecate Schema and
    SchemaValidator.
  + Add RelaxNGSchema and RelaxNGValidator (bgo#737712).
  + Parser: Add input operator>>(std::istream& in, Parser& parser)
    (bgo#329281).
  + Documentation: Use doxygen-extra.css from the mm-common
    package. Requires mm-common 0.9.7 when configured to use
    maintainer-mode.
  + Build: Avoid infinite loop with Doxygen 1.8.6.
* Mon Aug 18 2014 fcrozat@suse.com
- Add obsoletes/provides to baselibs.conf.
* Mon Sep 16 2013 dimstar@opensuse.org
- Update to version 2.37.1:
  + Parser: Add [set|get]_include_default_attributes()
    (bgo#701674).
  + Improve some null-pointer checks (bgo#705187).
  + Build fixes (bgo#678390, bgo#702136).
  + Updated documentation.
* Mon Nov 05 2012 dimstar@opensuse.org
- Update to version 2.36.0:
  + Element::set_namespace_declaration(): It is not an error to set
    the same URI twice (bgo#635846).
  + Require libxml-2.0 >= 2.7.3.
  + Parser::initialize_context(): Call xmlCtxtUseOptions().
* Wed Oct 10 2012 dimstar@opensuse.org
- Update to version 2.35.4:
  + Document:
  - Add process_xinclude(), using new XIncludeStart and
    XIncludeEnd classes, derived from Node. (bgo#338521)
  - Make the Document(xmlDoc*) constructor public. (bgo#668980)
  + Parser: Make it thread-safe. (bgo#681467)
  + Schema::set_document(): If the argument 'document' is 0 then
    create an empty document, as the documentation says.
  + Improve the error handling. (bgo#635846)
  + Updated documentation.
* Thu Jun 21 2012 dimstar@opensuse.org
- Update to version 2.35.3:
  + Note:
  - Add eval_to_[boolean|number|string]() methods. (bgo#316244)
  - Fix memory problems in import_node(). (bgo#672992)
  + Build:
  - The examples are now built and run during make check.
    (bgo#678390)
  - Define LIBXMLCPP_EXCEPTIONS_ENABLED unconditionally.
* Thu Mar 22 2012 vuntz@opensuse.org
- Update to version 2.35.2:
  + Node: Add get_first_child() (bgo#648125).
  + Build: Remove the --disable-api-exceptions configure option.
* Thu Feb 16 2012 dimstar@opensuse.org
- Update to version 2.35.1:
  + Handle attributes with default values correctly (bgo#669635)
  + Improved handling of entity references and processing
    instructions (bgo#669481)
  + Parser: Throw more detailed error messages (bgo#304020)
  + Document: Make the Document(xmlDoc*) constructor protected.
    (bgo#668980)
* Tue Sep 06 2011 vuntz@opensuse.org
- Update to version 2.34.2:
  + Element: Add add_child_cdata(), like the existing
    add_child_text().
  + Node::create_new_child_node(): Use the default namespace if
    none is specified (bgo#656110).
  + Documentation: Fix a markup typo.