Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

librsvg-devel-2.46.5-3.3.1 RPM for aarch64

From OpenSuSE Leap 15.3 for aarch64

Name: librsvg-devel Distribution: SUSE Linux Enterprise 15
Version: 2.46.5 Vendor: SUSE LLC <https://www.suse.com/>
Release: 3.3.1 Build date: Mon Apr 26 13:57:30 2021
Group: Development/Libraries/C and C++ Build host: ibs-arm-2
Size: 448418 Source RPM: librsvg-2.46.5-3.3.1.src.rpm
Packager: https://www.suse.com/
Url: https://wiki.gnome.org/Projects/LibRsvg
Summary: Development files for librsvg, a SVG render library
This package contains all necessary include files and libraries needed
to develop applications that require these.

Provides

Requires

License

LGPL-2.0-or-later

Changelog

* Fri Apr 23 2021 federico@suse.com
  - Update to version 2.46.5:
    + Update dependent crates that had security vulnerabilities:
      generic-array to 0.12.4 - RUSTSEC-2020-0146
      smallvec to 0.6.14      - RUSTSEC-2021-0003 - CVE-2021-25900
    + There are no changes to the library code.
    + Fix bash-isms in Makefile.am (Tin-Wei Lan).
    + Fix Visual Studio build (Chun-wei Fan).
  - bsc#1183403 - CVE-2021-25900 - buffer overflow in the smallvec crate.
* Mon Nov 25 2019 bjorn.lie@gmail.com
  - Update to version 2.46.4:
    + Panic when reading an invalid stylesheet URL in an XML
      processing instruction.
    + Consider specificity when applying CSS selector matches.
    + Provide an usage example in the librsvg crate docs.
  - Drop patches fixed upstream:
    + 0001-croco.rs-Add-struct-definition-for-CRSimpleSel.patch
    + 0002-Compute-the-specificity-of-CSS-selectors.patch
    + 0003-525-Consider-specificity-when-applying-CSS-selector-.patch
* Wed Nov 13 2019 yfjiang@suse.com
  - Add explicit conflicts between rsvg-convert and rsvg-view <=2.45.7.
* Tue Nov 12 2019 fcrozat@suse.com
  - Fix incorrect obsoletes for rsvg-view.
* Thu Nov 07 2019 fvogt@suse.com
  - Add patches to fix coloring of symbolic icons (glgo#GNOME/librsvg#525):
    * 0001-croco.rs-Add-struct-definition-for-CRSimpleSel.patch
    * 0002-Compute-the-specificity-of-CSS-selectors.patch
    * 0003-525-Consider-specificity-when-applying-CSS-selector-.patch
* Wed Nov 06 2019 yfjiang@suse.com
  - Remove BuildRequires rust-std. The replacement rust-std-static
    is already required by rust.
* Wed Oct 23 2019 bjorn.lie@gmail.com
  - Update to version 2.46.3:
    + glgo#GNOME/librsvg#516: Fix inadvertent bump in the minimum
      Rust version required. The string_cache crate is now pinned to
      a version that still works on Rust 1.34.
    + glgo#GNOME/librsvg#521: Compute geometries correctly if there
      is a viewBox attribute.
    + glgo#GNOME/librsvg#308: Fix stack exhaustion with circular
      references in <use> elements.
    + Consistently use the LGPL 2.1 wherever it is mentioned.
  - Drop COPYING, everything is covered by COPYING.LIB now.
* Mon Oct 14 2019 bjorn.lie@gmail.com
  - Update to version 2.46.2:
    + Patterns and gradients reused across more than one element will
      only get resolved once now; this should make things marginally
      faster for patterns or gradients with fallbacks.
    + glgo#GNOME/librsvg#515: Librsvg now has limits on the number of
      loaded XML elements, and the number of referenced elements
      within an SVG document. This is to mitigate malicious SVGs
      which try to consume all memory, and those which try to consume
      an exponential amount of CPU time.
* Mon Oct 07 2019 bjorn.lie@gmail.com
  - Update to version 2.46.1:
    + Fix empty patterns which reference a fallback pattern with
      children.
* Mon Sep 09 2019 bjorn.lie@gmail.com
  - Update to version 2.46.0:
    + All of librsvg.so is now implemented in Rust! That is, except
      for a very thin wrapper over the public API functions.
      Hopefully we can remove this wrapper when Cargo gets some more
      features around controlling the linking step. This release
      requires at least Rust 1.34.
    + Librsvg now comes with a Rust crate that can be used from Rust
      applications. See librsvg_crate/examples. This Rust API is
      designed to be idiomatic; if you want a Rust binding to the
      shared library instead, please use the "rsvg-rs" crate from
      crates.io.
    + The following API functions are new in the C library:
    - rsvg_handle_get_intrinsic_dimensions()
    - rsvg_handle_render_document()
    - rsvg_handle_render_layer()
    - rsvg_handle_render_element()
    - rsvg_handle_get_geometry_for_layer()
    - rsvg_handle_get_geometry_for_element()
    - Correspondingly, there is a new chapter in the documentation,
      called "Recommendations for Applications". These new APIs
      conform better with the web platform's idea of how SVG
      sizing/positioning should work. Applications should now find
      it easier to scale and render SVGs in a single call, instead
      of having to obtain image dimensions first.
    + A bunch of functions have been deprecated but are still
      available:
    - rsvg_handle_write()/close() are deprecated in favor of the
      stream functions. Unfortunately the write()/close() pair
      require buffering the entire document, in case it is a .svgz
      compressed file; the streaming functions do not have this
      problem.
    - Functions that return RsvgDimensionData and RsvgPositionData
      are deprecated, since they just use integers instead of
      floating point numbers. They are replaced with the
      _get_geometry_*() functions above.
    + The library is a lot more strict now in terms of detecting that
      the API functions are called in the correct order. For example,
      calling rsvg_handle_get_dimensions() before rsvg_handle_close()
      will now emit a critical warning.
    + Librsvg is gradually moving towards using code from Mozilla's
      Servo. We haven't quite gotten rid of libcroco and libxml2 yet,
      but this is in progress.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.92:
    + Fix glgo#GNOME/librsvg#496: Ensure all lengths and angles parse
      as finite numbers.
    + Fix glgo#GNOME/librsvg#497: Don't panic on paths with
      all-invalid commands.
    + Fix glgo#GNOME/librsvg#500: Added additional SVG blend-modes
      for the feBlend filter primitive.
    + Some changes in the build structure to allow for faster builds.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.90:
    + New API functions:
    - rsvg_handle_render_document().
    - rsvg_handle_render_layer().
    - rsvg_handle_render_element().
    - rsvg_handle_get_geometry_for_layer().
    - rsvg_handle_get_geometry_for_element().
    + CairoRenderer in the librsvg_crate has corresponding functions
      as well.
    + Fix builds with gettext ≥ 0.20.
    + If the C API is called out of order, downgrade hard panics to
      g_critical() to cope with incorrect/old applications that
      called rsvg_handle_get_dimensions() before
      rsvg_handle_close().
    + API reference documentation is much improved.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.8:
    + This version requires at least Rust 1.34.
    + Fix build on Rust earlier than 1.36.
    + Update gtk-rs and dependent crates.
  - Changes from version 2.45.7:
    + Don't panic if an SVG has character data outside the first
      element.
    + Don't panic when there's an xi:include fallback with no parent
      element.
    + Fix blurry semi-opaque objects when rendering with a scaled
      transformation.
    + Don't ignore the first x/y/dx/dy in text/tspan elements if
      there is more than one position specified.
    + In librsvg_crate, SvgHandle now has a ::has_element_with_id()
      method.
    + rsvg-convert now catches the case where the SVG has no
      dimensions.
    + This version no longer contains the rsvg-view program, so
      librsvg no longer depends on GTK.
    + The poly element no longer supports "verts" as an alias for the
      "points" attribute. The "verts" name was only used in SVG
      pre-1.0, and we had been cargo-culting that name ever since.
    + We now use more machinery from Mozilla Servo, in this case the
      markup5ever and rust-selectors crates. This is in line with
      gradually replacing libcroco with a Rust-only CSS machinery.
    + Lots and lots of refactoring and cleanups: use the rctree crate
      instead of our own tree representation; remove interior
      mutability in element structs; make the gradients and patterns
      code less repetitive.
    + Update some dependencies.
    + Fix static linking and Windows builds.
  - Drop rsvg-view subpackage and pkgconfig(gtk+-3.0) BuildRequires
    and obsolete it from main library following upstream changes.
  - Add new rsvg-convert subpackage for the convert tool previously
    packaged in rsvg-view.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.6:
    + Librsvg now requires Rust 1.30.0 or later.
    + Librsvg now requires Cairo 1.16.0 or later.
    + This version introduces librsvg_crate, an idiomatic Rust crate
      for using librsvg from Rust programs directly, without using
      GObject machinery. This API is subject to change, but you can
      start using it now in an experimental fashion.
    + All of the librsvg internals are now in Rust! The C code is
      just a thin wrapper over Rust functions.
    + The internals library has been converted to Rust 2018.
    + Within librsvg_crate, there is a new infrastructure for doing
      reftests in Rust, that does not depend on PNG reference files.
      See librsvg_crate/tests for details.
    + This release introduces the following new APIs:
    - rsvg_handle_get_intrinsic_dimensions(),
    - rsvg_handle_get_geometry_for_element().
    + Parsing of the "style" attribute, which has a plain list of CSS
      property declarations, is now done with rust-cssparser.
    + CSS selector matching should be marginally faster than before.
    + Fix Visual Studio builds.
    + Fix glgo#GNOME/librsvg#11: Respect the "direction" property for
      bidirectional text.
    + Fix glgo#GNOME/librsvg#295: Ensure the initial viewport fits
      into temporary surfaces for compositing.
    + Fix glgo#GNOME/librsvg#425: Don't fail parsing if the system's
      locale is broken.
    + Fix glgo#GNOME/librsvg#438, glgo#GNOME/librsvg#443: Don't
      create intermediate raster surfaces unless absolutely needed.
      This was causing blurred output for SVGs from Inkscape and
      Illustrator, since they include an "enable-background" property
      even when there are no filters in use.
    + Fix glgo#GNOME/librsvg#443: Fix blurry output when
      enable-background is used without filters.
    + Fix glgo#GNOME/librsvg#455: Fix rounding error on i386.
    + Check for Cairo errors when constructing paths.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.5:
    + At build time, you can now pass $CARGO and $RUSTC environment
      variables if you need to override the default Rust toolchain.
      Please see COMPILING.md for details.
    + Fix glgo#GNOME/librsvg#405: In the gdk-pixbuf loader, don't
      crash if the write() function doesn't receive a GError.
    + Fix glgo#GNOME/librsvg#268: Remove the comp-op property; it's
      not in SVG 1.1 nor SVG 2.
    + Fix glgo#GNOME/librsvg#415: register RsvgHandleFlags and the
      RsvgError enum values in a thread-safe fashion.
    + All of the library's non-GObject functionality is implemented
      in Rust now.
    + Update the cairo crate.
    + Clean up the loading code paths.
    + Updated compilation docs for Debian.
    + Updated parts of the reference documentation.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.4:
    + Fix glgo#GNOME/librsvg#402: Fix the library's soname.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.45.3:
    + Big news! All the real work in the library is now implemented
      in Rust. The public API is implemented in C, but most it calls
      immediately into the Rust code.
    + rsvg_handle_set_base_uri() now really assumes that it is passed
      a URI. Previously it would try to differentiate between real
      URIs, and absolute or relative file paths. If this breaks your
      code (i.e. you are passing a filename, not a URI), please tell
      us so we can restore the old behavior!
    + Fix glgo#GNOME/librsvg#395: Don't panic in feMorphology if it
      ends up with a negative scaling transformation.
    + Fix glgo#GNOME/librsvg#398: Detect circular references in
      gradients.
    + Match the Firefox/Chrome behavior on gradients and patterns
      with circular references for fallbacks.
    + Fixes for Rust 1.30 and below.
    + Lots and lots of refactoring.
  - Changes from version 2.45.2:
    + rsvg_cleaup() is now deprecated. This was only meant to be
      called from code to be checked by Valgrind. Leak checkers may
      show reachable memory from libxml2; real memory leaks should
      still be reported, of course.
    + As an experimental change, librsvg no longer calls
      xmlInitParser() from libxml2. Please tell us if this causes
      problems for multithreaded programs.
    + Added g_warning()s to ensure the API is called in the correct
      sequence.
    + The text handling code has been completely refactored and
      simplified. This will allow us to implement the x/y/dx/dy
      properties for multiple glyphs in the future. Please report any
      problems you experience in text rendering.
    + Fix glgo#GNOME/librsvg#385: Don't crash if there is no
      rsvg_handle_write() before rsvg_handle_close().
    + Fix glgo#GNOME/librsvg#391: Avoid undefined behavior when
      casting opaque pointers.
    + Fix crash when a linear RGB filter is followed by an SRGB
      filter.
    + Fix glgo#GNOME/librsvg#393: Stack overflow when freeing
      thousands of sibling elements.
    + Fix positioning of adjacent <tspan> elements.
    + All the toplevel loading and drawing code is implemented in
      Rust now.
    + Pixbuf conversion code is in Rust now.
    + Cleanups in the code for XML processing, markers, attributes.
    + Many build/link fixes.
    + Cleanups in the code that calls libxml2.
  - Changes from version 2.45.1:
    + New public API, rsvg_handle_get_geometry_sub(), to get the
      exact geometry of an element. The functions
      rsvg_handle_get_position_sub() and
      rsvg_handle_get_dimensions_sub() are deprecated now; these
      returned incomplete data with integer coordinates.
    + rsvg_handle_write() and rsvg_handle_close() are now deprecated
      in favor of the functions which use a GInputStream. The former
      need to buffer the entire SVG data first; the latter don't need
      buffering.
    + Librsvg no longer tries to load XML entities which reference
      external resources, either parameter or general entities,
      declared in the DTD. This never worked properly, and it is
      better to do so via the xi:include mechanism. Also, unparsed
      external entities with a notation are not really supported in
      SVG; it has its own <image> element and similar for that
      purpose. Only internal general entities are supported now, for
      example:
    - <!ENTITY foo "<some xml here>">.
    - <!ENTITY bar "some text here">.
    + Started support for localized error messages.
    + Ported to Rust: loading code, XML processing code, data: URL
      parsing.
    + Many code cleanups and refactorings.
    + Fix undefined behavior in casts.
    + Cairo/Rust API updates.
    + configure.ac cleanups.
  - Add lang_package macro/subpackage, librsvg now have translations.
  - Add a librsvg_sover define and set it to 2.
* Mon Sep 02 2019 bjorn.lie@gmail.com
  - Update to version 2.44.15:
    + Fix glgo#GNOME/librsvg#11: Respect the "direction" property for
      bidirectional text.
    + Fix glgo#GNOME/librsvg#462: Fix usage of std::f64::EPSILON for
      Rust 1.28.
    + Fix glgo#GNOME/librsvg#497: Don't panic on paths with
      all-invalid commands.
    + Fix glgo#GNOME/librsvg#496: Ensure all lengths and angles parse
      as finite numbers.
    + Fix glgo#GNOME/librsvg#426: Detect files vs. URIs in
      rsvg_handle_new_from_file() on Windows.
    + Fix a memory leak in the test suite.
* Tue May 14 2019 bjorn.lie@gmail.com
  - Update to version 2.44.14:
    + Fix glgo#GNOME/librsvg#425: Don't fail parsing if the system's
      locale is broken.
    + Fix glgo#GNOME/librsvg#438, glgo#GNOME/librsvg#443: Don't
      create intermediate raster surfaces unless absolutely needed.
      This was causing blurred output for SVGs from Inkscape and
      Illustrator, since they include an "enable-background" property
      even when there are no filters in use.
    + Fix glgo#GNOME/librsvg#443: Fix blurry output when
      enable-background is used without filters.
    + Fix glgo#GNOME/librsvg#455: Fix rounding error on i386.
    + Check for Cairo errors when constructing paths.
* Sat Feb 16 2019 bjorn.lie@gmail.com
  - Update to version 2.44.13:
    + Updated compilation docs for Debian.
    + Fix glgo#GNOME/librsvg#415: Register RsvgHandleFlags and the
      RsvgError enum values in a thread-safe fashion.
* Mon Jan 21 2019 bjorn.lie@gmail.com
  - Update to version 2.44.12:
    + At build time, you can now pass $CARGO and $RUSTC environment
      variables if you need to override the default Rust toolchain.
      Please see COMPILING.md for details.
    + Fix glgo#GNOME/librsvg#405: In the gdk-pixbuf loader, don't
      crash the write() function doesn't receive a GError.
    + Fix glgo#GNOME/librsvg#398: Detect circular references in
      gradients.
* Sat Dec 29 2018 bjorn.lie@gmail.com
  - Update to version 2.44.11:
    + Fix crash when a linear RGB filter is followed by an SRGB
      filter.
    + Fix stack overflow when freeing thousands of sibling elements.
    + feMorphology was crashing with a negative scaling
      transformation.
    + Fix positioning of adjacent <tspan> elements.
* Tue Dec 11 2018 bjorn.lie@gmail.com
  - Update to version 2.44.10:
    + Don't crash if there is no rsvg_handle_write() before
      rsvg_handle_close().
    + Avoid undefined behavior when casting opaque pointers.
    + Added g_warning()s to ensure the API is called in the correct
      sequence.
* Wed Nov 14 2018 bjorn.lie@gmail.com
  - Update to version 2.44.9:
    + rsvg-convert was positioning extracted elements incorrectly
      when using the -w/-h options together with --export-id.
    + Mis-rendering in small arc segments.
    + Rendering of gradients for horizontal/vertical stroked lines
      with gradientUnits="userSpaceOnUse".
    + Fix a couple of memory leaks in the error paths of the
      GdkPixbuf loader.
* Thu Oct 25 2018 bjorn.lie@gmail.com
  - Update to version 2.44.8:
    + Don't drop spaces around <tspan> elements.
    + rsvg-convert now uses pixel units for SVG output, instead of
      points.
    + Tweaks to have the test suite pass on i386 and non-x86_64
      platforms.
    + With RSVG_LOG=1, librsvg will now report when SVGs have
      references to nonexistent elements, to aid debugging (for
      example, in an xlink:href attribute).
    + Allow reference tests with a small difference to pass without
      breaking the build.
* Tue Oct 09 2018 bjorn.lie@gmail.com
  - Update to version 2.44.7:
    + Correctly match the systemLanguage attribute with the user's
      locale.
    + Parse xml:lang correctly.
    + Don't modify the caller's cairo_t state during rendering.
    + Don't panic if we get a "data:" URI with empty data.
    + Don't panic on getting a very large "order" for
      feConvolveMatrix.
    + Bugs fixed: glgo#GNOME/librsvg#256, glgo#GNOME/librsvg#320,
      glgo#GNOME/librsvg#334, glgo#GNOME/librsvg#349,
      glgo#GNOME/librsvg#352.
* Fri Sep 28 2018 bjorn.lie@gmail.com
  - Update to version 2.44.6:
    + Fix 32-bit builds.
  - Changes from version 2.44.5:
    + Fix rsvg_handle_get_dimensions_sub() no longer panics if passed
      a nonexistent fragment identifier.
    + CSS processing code is now in Rust, although it still calls
      libcroco to do the parsing.
    + Bugs fixed: glgo#GNOME/librsvg#343, glgo#GNOME/librsvg#346,
      glgo#GNOME/librsvg#347, glgo#GNOME/librsvg#348,
      glgo#GNOME/librsvg#349.
* Tue Sep 25 2018 bjorn.lie@gmail.com
  - Update to version 2.44.4:
    + Cleanups and refactoring.
    + Bugs fixed: glgo#GNOME/librsvg#341, glgo#GNOME/librsvg#342,
      glgo#GNOME/librsvg#344, glgo#GNOME/librsvg#345.
  - Changes from version 2.44.3:
    + Fix building when srcdir != builddir.
    + Fixes from fuzz testing: don't panic when the feConvolveMatrix
      kernel is not set; fix upper bounds in filter pixel getters.
    + Updates to the CI infrastructure and the build documentation.
    + Bugs fixed: glgo#GNOME/librsvg#339, glgo#GNOME/librsvg#335,
      glgo#GNOME/librsvg#337, glgo#GNOME/librsvg#338,
      glgo#GNOME/librsvg#340.
* Wed Sep 05 2018 luc14n0@linuxmail.org
  - Append Apache-2.0 and MIT licenses to main package's and
    librsvg-2-2 subpackage's License tags to comply with Rust crates,
    static linked against LibRSVG, licenses.
* Fri Aug 31 2018 bjorn.lie@gmail.com
  - Update to version 2.44.2:
    + Don't leak all the elements at the toplevel
      (glgo#GNOME/librsvg#325).
    + Make masking work on big-endian (glgo#GNOME/librsvg#328).
    + Fix library ordering so -Wl,--as-needed works.
* Wed Aug 29 2018 bjorn.lie@gmail.com
  - Update to version 2.44.1:
    + Don't panic if trying to render a non-empty SVG with no
      elements (glgo#GNOME/librsvg#324).
    + All the elements were being leaked at the toplevel
      (glgo#GNOME/librsvg#325).
* Thu Aug 23 2018 bjorn.lie@gmail.com
  - Update to version 2.44.0:
    + Librsvg now has minimal logging for debugging by setting the
      RSVG_LOG environment variable. See CONTRIBUTING.md for details.
    + Speed improvements for Gaussian blur, SRGB conversions, and
      various filters.
    + Fix glgo#GNOME/librsvg#264: The letter-spacing property now
      supports "normal" in addition to lengths.
    + Fix glgo#GNOME/librsvg#318: The font-weight property was being
      parsed incorrectly.
    + Fix glgo#GNOME/librsvg#323: Don't use 100% "forever" with
      malicious SVGs that cause an exponential number of elements to
      be instanced through the <use> element. We limit the number of
      <use> instances now.
    + Fix glgo#GNOME/librsvg#293: Don't panic when masking an empty
      group.
    + Fix glgo#GNOME/librsvg#319: Parse single font-family correctly.
    + Cleanups for the internal representation of elliptical arcs in
      paths.
* Thu Aug 23 2018 luc14n0@linuxmail.org
  - Update to version 2.43.4:
    + This is an early release to test the effects of threading in
      librsvg.
    + The lighting and Gaussian blur filters are now parallelized
      with Rayon; they will use all available cores.
* Thu Aug 23 2018 luc14n0@linuxmail.org
  - Update to version 2.43.3:
    + Tentative fix: Don't panic if rendering to a non-image Cairo
      surface (glgo#GNOME/librsvg#309).
    + Couple of optimizations.
* Thu Aug 23 2018 bjorn.lie@gmail.com
  - Update to version 2.43.2:
    + All the filter effects have been ported to Rust.
    + We now require Rust 1.26.
    + We now include Rust debug information even in release builds,
      to make it easier to obtain stack traces.
    + Fix glgo#GNOME/librsvg#310: Respect DPI in the font-size
      property.
    + Fix: draw the circle/ellipse elements with the same orientation
      as the SVG 1.1 test suite; this is relevant for
      stroke-dasharray.
    + Refactoring of the drawing code and font sizes.
    + New filters in Rust: feConvolveMatrix, feColorMatrix,
      feMorphology, feDisplacementMap, feGaussianBlur,
      feDistantLight, feSpotLight, fePointLight, feTile.
    + Updated Rust dependencies.
* Thu Aug 23 2018 bjorn.lie@gmail.com
  - Update to version 2.43.1:
    + Test fonts should now work with --enable-installed-tests
      (glgo#GNOME/librsvg#259).
    + Don't panic when trying to filter an empty group
      (glgo#GNOME/librsvg#277).
    + Don't panic if we try to clip an empty group
      (glgo#GNOME/librsvg#292).
    + Fix the feOffset filter's coordinate parsing.
    + Fix linearization of SRGB data in the feComposite filter.
    + Fix CSS cascading in filters.
    + Fix, don't render filters if they are in error.
    + Fixed a couple of memory leaks in the test suite.
    + Filters now support FillPaint and StrokePaint for input.
    + Filters now support the color-interpolation-filters property.
    + The feImage, feBlend, feComponentTransfer filters are now in
      Rust.
    + The feOffset filter now supports fractional offsets.
    + The drawing context code is now in Rust.
    + All the style property parsers have been moved to
      rust-cssparser.
* Thu Aug 23 2018 luc14n0@linuxmail.org
  - Update to version 2.43.0:
    + Fixes:
    - feDistantLight and feSpotLight now work again
      (glgo#GNOME/librsvg#241).
    - feComposite is fixed not to overwrite the source image in
      some cases; this fixes drop shadows generated from Inkscape
      (glgo#GNOME/librsvg#282).
    + Rust implementation:
    - Text, tspan and tref elements;
    - Basic styling infrastructure;
    - Internals of the drawing infrastructure and bounding-box
      computation;
    - Element creation from the parsing stage;
    - Clipping and Masking.
    + The feComposite filter now operates in linear RGB space, for
      better spec compliance (glgo#GNOME/librsvg#275).
    + Filters now compute their bounds to floating-point values,
      instead of clipping them to integers.
    + Text rendering improvements.
* Thu Aug 23 2018 bjorn.lie@gmail.com
  - Update to version 2.42.7:
    + Fix a denial-of-service condition from exponential explosion of
      rendered elements, through nested use of SVG "use" elements in
      malicious SVGs. This is similar to the XML "billion laughs
      attack" but for SVG instancing (glgo#GNOME/librsvg#323).
* Tue Aug 07 2018 bjorn.lie@gmail.com
  - Update to version 2.42.6:
    + Fix drop-shadows generated from Inkscape; we were overwriting
      a surface inadvertently (glgo#GNOME/librsvg#282).
    + Fix confusion between feSpotLight and feDistantLight
      (glgo#GNOME/librsvg#241).
    + Don't panic if we try to clip with an empty region
      (glgo#GNOME/librsvg#292).
    + Fix out-of-tree builds and tests.
    + Compilation can now use a RUST_TARGET variable to override the
      host triplet when cross-compiling. See COMPILING.md for
      details.
* Sat Jun 02 2018 bjorn.lie@gmail.com
  - Update to version 2.42.5:
    + Don't render filter primitives that have invalid attributes.
      This was causing a crash in feColorMatrix
      (glgo#GNOME/librsvg#266).
    + rsvg_handle_render_cairo() will now refuse to render if the
      cairo_t passed to it is in an error state. Fixes a panic in the
      cairo-dock program (glgo#GNOME/librsvg#276).
    + The test suite now writes test artifacts to tests/output
      instead of /tmp (glgo#GNOME/librsvg#206).
* Mon May 07 2018 luc14n0@linuxmail.org
  - Update to version 2.42.4:
    + Fixes:
    - Elements with systemLanguage attributes without variants now
      work better.
    - Possible crash on invalid gradient references.
    - Negative values are catched in stroke-dasharray properties
      instead of leaving the cairo_t in an error state
      (glgo#GNOME/librsvg#227).
    - Empty transform attribute now correctly yields an identity
      transform (glgo#GNOME/librsvg#228).
    + Make robust against patterns and gradients with no children.
    + Lots of code cleanups and refactorings.
    + Code moved to Rust: low-level path and PangoLayout drawing,
      "switch" element.
* Mon Mar 05 2018 dimstar@opensuse.org
  - Update to version 2.42.3:
    + glgo#GNOME/librsvg#205: The configure script now checks for
      Rust 1.20.0. Previously this minimum requirement was not
      well-defined.
    + glgo#GNOME/librsvg#204: New feature: If an SVG has an <a> link
      element, we now generate the corresponding link when
      outputting to a Cairo PDF surface.  If you use rsvg-convert(1)
      with PDF output, <a> links in the SVG will work in the PDF.
    + glgo#GNOME/librsvg#108: New feature: support font-size:larger
      and font-size:smaller relative sizes.
    + New feature: rsvg-convert now supports SOURCE_DATE_EPOCH to
      generate reproducible output for PDFs.
    + glgo#GNOME/librsvg#197: New requirement: We now require
      Freetype2 2.9.0, which fixes font rendering bugs. The test
      reference PNGs have been regenerated with this version.
    + glgo#GNOME/librsvg#91: Fix rendering of masks and clips when
      the initial transformation has a translation component.
    + glgo#GNOME/librsvg#112: Fix: apply style attributes for all SVG
      elements, not just for the toplevel one.
    + glgo#GNOME/librsvg#161: Fix the marker angle for the last
      vertex of closed paths.
    + glgo#GNOME/librsvg#198: Fix: Make rsvg_pixbuf_from_file() and
      its derived functions work again.  Now we have tests for the
      whole public API.
    + glgo#GNOME/librsvg#143: Minor optimizations for Gaussian blurs.
    + glgo#GNOME/librsvg#201: Minor speedups in the code to parse SVG
      attributes.
    + glgo#GNOME/librsvg#178: Fix some tests that failed on 32-bit
      machines.
    + In addtion to --enable-debug/--disable-debug to control the
      Rust compilation, now you can use an environment variable
      LIBRSVG_DEBUG=yes / LIBRSVG_DEBUG=no if you wish.
    + Code moved to Rust: SVG paint servers, SVG attribute parsing.
    + We now use a Cargo workspace internally, to move more things to
      Rust.
  - Add pkgconfig(freetype2) BuildRequires: New dependency.
* Wed Feb 28 2018 dimstar@opensuse.org
  - Modernize spec-file by calling spec-cleaner
* Fri Feb 02 2018 bjorn.lie@gmail.com
  - Update to version 2.42.2:
    + Don't crash when feConvolveMatrix doesn't specify orderx/ordery
      attributes (glgo#librsvg#193).
    + Parse stroke-dasharray property correctly. This code is in Rust
      now; yay! (glgo#librsvg#136).
    + Don't render markers if they are zero-sized, per the spec.
    + Performance: eliminate a bunch of string copies during parsing.
    + Update rust-cssparser to 0.23.
* Tue Jan 23 2018 bjorn.lie@gmail.com
  - Update to version 2.42.1:
    + Parse the transform attribute in a faster/simpler way. We now
      use rust-cssparser instead of lalrpop.  This is especially
      noticeable on SVGs with lots of "transform" attributes
      (glgo#librsvg#182).
    + Don't crash when setting a gradient on a zero-sized object
      (glgo#librsvg#187).
    + Inherit attributes in the <svg> element properly
      (glgo#librsvg#181).
    + rsvg-convert - fix error reporting when reading from stdin
      (glgo#librsvg#160).
    + Fix detection of image type in "data:" URIs when they don't
      specify a MIME type (glgo#librsvg#152).
    + More stringent parsing of path data; better tests
      (glgo#librsvg#133).
    + Fix typos and links in the .md files.
* Tue Jan 09 2018 zaitor@opensuse.org
  - Update to version 2.42.0:
    + Fix a memory leak in rsvg_handle_new_from_file().
    + Optimize the xml:space normalization function.
    + Fix a runtime warning in the feMergeNode code
      (glgo#GNOME/librsvg#179).
    + Clarify documentation about the rsvg_*_sub() APIs
      (glgo#GNOME/librsvg#175).
    + Stylistic fixes from cargo-clippy.
    + Port the Pango glue code to Rust.
    + New ARCHITECTURE.md with a description of librsvg's internals.
  - Clean up spec, use autosetup macro.
* Wed Dec 27 2017 luc14n0@linuxmail.org
  - Update to version 2.41.2:
    + Bug fixes:
    - Mis-use of libxml2 (bgo#787895).
    - Allow masks and clips to reuse a node being drawn
      (bgo#761175).
    + Fixes:
    - xml:space normalization, per the spec.
    - Bugs from Coverity runs.
    - Loading files one byte at a time.
    - Some memory leaks.
    + Don't access the file system when deciding whether to load a
      remote file with a UNC path for a paint server (i.e. don't try
      to load it at all).
    + Add:
    - Support for cross-compilation of the Rust code.
    - Verbosity to Cargo.
    + Markers now have the correct default size per the SVG spec.
    + Don't render elements that establish a viewport if their
      viewBox size is 0, per the spec.
    + SVG elements ported to Rust: image, clipPath, mask, character
      data in elements.
    + Reference documentation now have an overview of the library and
      is DocBook 5.1.
    + Expanded the test suite.
    + Lots of internal refactoring.
  - Changes from version 2.41.0:
    + The big news is that parts of librsvg are now implemented in
      the Rust programming language, instead of C. The public API
      remains identical. Rust should provide us with memory safety
      and nicer built-in abstractions for the code, as well as an
      easier way to do unit tests.
    + Added an "--enable-debug" option to configure.ac - this will
      tell the Rust compiler to generate debugging code, instead of
      working in release mode. Note that you must still pass CFLAGS
      by hand by the regular means for the C code.
    + The path data parser now handles boolean values in Arc elements
      correctly.
    + Radial gradients now adjust the focus point correctly to be
      within the gradient's radius.
    + Stroke width normalization is now conformant to the spec.
    + Viewport-relative length normalization is now conformant to the
      spec.
    + Added some of the official SVG 1.1 test files to our test
      suite. Fixed a little bunch of conformance bugs.
    + Code that has been converted to Rust:  marker orientations and
      rendering, path data parser, path building, length
      normalization, gradient inheritance, bounding boxes with affine
      transformations.
    + Added tests/README.md with instructions on how to run the test
      suite and update it.
    + rsvg-test can now skip files or directories that start with
      "ignore".
    + Fixes:
    - feImage filters when they reference SVG nodes.
    - eComponentTransferFunction when there are duplicated feFuncX.
      elements.
    - Conformance bugs in gradient inheritance.
    - A few minor issues.
    + Fixed bugs: bgo#763386, bgo#603550, bgo#776297, bgo#761871,
      bgo#686953.
  - Changes from version 2.41.1:
    + The feConvolveMatrix filter primitive now is working.
    + Pattern specifications can now have a fallback color, per the
      spec - https://www.w3.org/TR/SVG/painting.html#SpecifyingPaint
    + Tests now use a very basic form of reproducible font rendering.
      This means that "make check" should pass even if you have a
      custom Fontconfig setup.
    - A few cases of uninitialized struct fields.
    + Per the spec, we now don't render elements which have invalid
      attributes.
    + Don't crash in filters when one of them yields an invalid
      surface for an intermediate result.
    + Added a bunch of new test cases for the new features and the
      code converted to Rust.
    + cairo-rs 0.2.0 and lalrpop 0.13.1 are now required.
    + Fixes:
    - Recursive fallbacks in gradients.
    - Division by zero in feTile filter when the input surface is
      empty.
    - parsing of "azimuth", "elevation", "limitingConeAngle" for
      filter effects.
    + Fixed bugs: bgo#621088, bgo#587721, bgo#776932, bgo#777155,
      bgo#776297, bgo#777834, bgo#634324, bgo#783835, bgo#779489,
      bgo#782098, bgo#777833, bgo#786372, bgo#634514, bgo#785276,
      bgo#778666.
  - Update Url to https://wiki.gnome.org/Projects/LibRsvg: current
    LibRsvg project's web page.
  - Add BuildRequires for the following new dependencies that
    upstream's rust implementation brought: cargo, rust and rust-std.
  - Add pkgconfig(cairo-png) BuildRequires: it was already being
    pulled with pkgconfig(cairo) and used, since they live in the
    same devel package.
  - Add gio-unix-2.0 and gthread-2.0 pkgconfig BuildRequires: they
    were already being pulled with pkgconfig(glib-2.0) and used,
    since they all live in glib2-devel package.
  - Adopt the use of %make_build rather than raw make command and
    switch %makeinstall by the preferred %make_install macros,
    following the best practices.
  - Remove obsoleted %clean section since RPM does this job now and
    replace old macro for number of jobs control with %make_build
    following best practices.
  - Change rsvg-thumbnailer subpackage group to
    Productivity/Graphics/Other as this is a better fit for it.
  - Export -Wl,-z,noexecstack LDFLAG to avoid executable-stack
    issues. It's only a temporary flag until upstream give feedback
    (glgo#GNOME/librsvg#177).
* Wed Dec 27 2017 jengelh@inai.de
  - Fix RPM groups, drop redundant %clean section,
    update summaries.
* Sat Dec 16 2017 luc14n0@linuxmail.org
  - Update to version 2.40.20:
    + Allow masks and clips to reuse a node being drawn (bgo#761175).
    + Don't access the file system when deciding whether to load a
      remote file with a UNC path for a paint server (i.e. don't try
      to load it at all).
    + Fix generation of Vala bindings when compiling in read-only
      source directories.
* Thu Oct 05 2017 dimstar@opensuse.org
  - Update to version 2.40.19:
    + Fix the <switch> element; it wasn't working at all.
    + Fix loading when rsvg_handle_write() is called one byte at a
      time.
    + Backported the test suite machinery from the master branch.
    + Bugs fixed: bgo#587721, bgo#621088, bgo#634324, bgo#634514,
      bgo#777155, bgo#777833, bgo#782098, bgo#785276, bgo#786372,
      bgo#787895.
  - Add pkgconfig(fontconfig) and pkgconfig(pangoft2) BuildRequires:
    new dependencies verified by configure.
* Thu Jul 20 2017 zaitor@opensuse.org
  - Update to version 2.40.18 (boo#1049607, CVE-2017-11464):
    + Fix division-by-zero in the Gaussian blur code (bgo#783835,
      boo#1049607, CVE-2017-11464).
    + Fix other cases of division-by-zero on fuzzed SVG files.
    + Don't crash on invalid transformation matrices.
    + Support Visual Studio 2017; generate .pc files for Meson on
      Windows.
* Mon Apr 10 2017 zaitor@opensuse.org
  - Update to version 2.40.17:
    + bgo#778666: Use our own thumbnailer specification file, so
      gnome-desktop-thumbnailer can generate thumbnails outside of
      the calling process.
    + Removed some redundant code.
    + Windows build fixes.
  - Split out new sub-package rsvg-thumbnailer (noarch).
* Thu Jun 09 2016 zaitor@opensuse.org
  - Update to version 2.40.16:
    + Support for building the introspection files under MSVC.
    + Make the zooming options in rsvg-convert(1) work again for
      scaling the resulting image (bgo#760262).
    + Wikipedia generates equations as SVGs and renders them, but
      uses fill="currentColor". Since we don't let caller specify a
      starting state for CSS, we need to start with opaque black as
      the default current color (bgo#764808).
    + Added documentation for how to replace the deprecated
      rsvg_handle_set_size_callback().
  - Drop librsvg-Fix-rsvg-convert.patch: Fixed upstream.
* Mon Apr 18 2016 zaitor@opensuse.org
  - Add librsvg-Fix-rsvg-convert.patch: Actually scale the image if
    required, regression fix from upstream git (bgo#760262).
* Fri Apr 15 2016 mgorse@suse.com
  - Update to GNOME 3.20  Fate#318572
* Sat Apr 02 2016 zaitor@opensuse.org
  - Update to version 2.40.15:
    + Librsvg now uses the Contributor Covenant Code of Conduct,
      version 1.4, to which all contributors and maintainers are
      expected to abide. Please see the code_of_conduct.md file for
      details.
    + Fixed builds on Visual Studio pre-2012.
    + Fixed bgo#759084: Don't crash when filters don't actually
      exist.
    + Updated our autogen.sh to use modern autotools.
    + Fixed bgo#761728: Memory leak in the PrimitiveComponentTransfer
      filter.
* Fri Jan 08 2016 zaitor@opensuse.org
  - Update to version 2.40.13:
    + Fixed the Windows build.
    + Added basic support for the "baseline-shift" attribute in text
      objects (bgo#340047).
    + Fixed some duplicate logic when rendering paths (bgo#749415).
    + Rewrote the markers engine (bgo#685906, bgo#760180).
* Wed Dec 02 2015 zaitor@opensuse.org
  - Update to version 2.40.12:
    + Refactoring of the test harness to use Glib's gtest
      infrastructure, instead of using home-grown machinery.  Tests
      can simply be put as SVG files in the tests/subdirectories; it
      is not necessary to list them explicitly in some text file.
    + Gzipped SVGs now work if read from streams.
    + References to objects/filters/URIs/etc. are now handled lazily.
      Also, there is a general-purpose cycle detector so malformed
      SVGs don't cause infinite loops.
    + Removed parsing of Adobe blend modes; they were not
      implemented, anyway.
    + Bugs fixed: bgo#700911, bgo#630732, bgo#677068.
* Thu Oct 08 2015 zaitor@opensuse.org
  - Update to version 2.40.11:
    + Add project files for building on Visual Studio (bgo#753555).
    + Added an "--export-id" option to rsvg-convert(1). This lets you
      select a single object to export, for example, to pick out a
      group from a multi-part drawing.  Note that this is mostly
      useful for PNG output right now; for SVG output we don't
      preserve many attributes which could be useful in the extracted
      version.  Doing this properly requires an internal "output to
      SVG" backend instead of just telling Cairo to render to SVG.
* Sun Aug 09 2015 zaitor@opensuse.org
  - Update to version 2.40.10:
    + bgo#748608: Memory leak when Gaussian-blurring.
    + bgo#739329: Font-family attributes with singly-quoted names
      were not handled correctly, yielding incorrect fonts.
    + bgo#476507: Path start/end markers didn't have the correct
      angle if the path was a curve with coincident control points.
    + bgo#688689: Support font-style="normal" within a non-normal
      styled text block.
    + Fixed builddir != srcdir.
    + Remove a bunch of deprecated GTK+ calls.
* Fri May 15 2015 dimstar@opensuse.org
  - Remove reference to gtk2-engine-svg from baselibs.conf: this
    subpackage hasn't been built since Oct 22 2013.
* Fri Mar 27 2015 zaitor@opensuse.org
  - Update to version 2.40.9:
    + bgo#738367: V/v/H/h commands in path elements were not working.
    + bgo#605875: Gaussian-blurred objects were sometimes missing.
    + bgo#710163: Use _wfullpath() on Windows when canonicalizing
      filenames.
* Fri Feb 27 2015 zaitor@opensuse.org
  - Update to version 2.40.8 (boo#916784):
    + Bugs fixed from fuzz testing: bgo#744688 - possible double
      g_free() when processing stroke-dasharray.
    + Optimize rendering of polylines, lines, rectangles, circles,
      and ellipses.  These should be marginally faster, marginally
      more precise, and should put less pressure on the memory
      allocator.
* Mon Feb 16 2015 dimstar@opensuse.org
  - Update to version 2.40.7:
    + Fixed unfiled bug from fuzz testing, where the convolution
      filter had an integer multiplication overflow.
    + Fix build of rsvg-convert on Windows.
    + Fix a bunch of compiler warnings.
    + Bugs fixed from fuzz testing: bgo#703102, bgo#738050,
      bgo#738169, bgo#744270, bgo#744299.
* Wed Dec 03 2014 zaitor@opensuse.org
  - Update to version 2.40.6:
    + MinGW build fixes.
    + Fix path data number parsing.
    + Fix build with newer libtool.
* Mon Oct 13 2014 dimstar@opensuse.org
  - Update to version 2.40.5:
    + bgo#736825: handle: Call close() after write() even on write
      error.
    + bgo#735836: rsvg-convert: Fix argument processing.

Files

/usr/include/librsvg-2.0
/usr/include/librsvg-2.0/librsvg
/usr/include/librsvg-2.0/librsvg/librsvg-features.h
/usr/include/librsvg-2.0/librsvg/rsvg-cairo.h
/usr/include/librsvg-2.0/librsvg/rsvg.h
/usr/lib64/librsvg-2.so
/usr/lib64/pkgconfig/librsvg-2.0.pc
/usr/share/doc/packages/librsvg-devel
/usr/share/doc/packages/librsvg-devel/AUTHORS
/usr/share/doc/packages/librsvg-devel/COMPILING.md
/usr/share/doc/packages/librsvg-devel/CONTRIBUTING.md
/usr/share/gir-1.0/Rsvg-2.0.gir
/usr/share/gtk-doc
/usr/share/gtk-doc/html
/usr/share/gtk-doc/html/rsvg-2.0
/usr/share/gtk-doc/html/rsvg-2.0/RsvgHandle.html
/usr/share/gtk-doc/html/rsvg-2.0/annotation-glossary.html
/usr/share/gtk-doc/html/rsvg-2.0/api-index-full.html
/usr/share/gtk-doc/html/rsvg-2.0/ch01.html
/usr/share/gtk-doc/html/rsvg-2.0/ch02.html
/usr/share/gtk-doc/html/rsvg-2.0/home.png
/usr/share/gtk-doc/html/rsvg-2.0/index.html
/usr/share/gtk-doc/html/rsvg-2.0/left-insensitive.png
/usr/share/gtk-doc/html/rsvg-2.0/left.png
/usr/share/gtk-doc/html/rsvg-2.0/licence.html
/usr/share/gtk-doc/html/rsvg-2.0/object-tree.html
/usr/share/gtk-doc/html/rsvg-2.0/recommendations-assets.html
/usr/share/gtk-doc/html/rsvg-2.0/right-insensitive.png
/usr/share/gtk-doc/html/rsvg-2.0/right.png
/usr/share/gtk-doc/html/rsvg-2.0/rsvg-2.0.devhelp2
/usr/share/gtk-doc/html/rsvg-2.0/rsvg-Using-RSVG-with-GIO.html
/usr/share/gtk-doc/html/rsvg-2.0/rsvg-Using-RSVG-with-GdkPixbuf.html
/usr/share/gtk-doc/html/rsvg-2.0/rsvg-Using-RSVG-with-cairo.html
/usr/share/gtk-doc/html/rsvg-2.0/rsvg-Version-check-and-feature-tests.html
/usr/share/gtk-doc/html/rsvg-2.0/rsvg.html
/usr/share/gtk-doc/html/rsvg-2.0/style.css
/usr/share/gtk-doc/html/rsvg-2.0/up-insensitive.png
/usr/share/gtk-doc/html/rsvg-2.0/up.png
/usr/share/vala/vapi
/usr/share/vala/vapi/librsvg-2.0.vapi


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 14:48:48 2024