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

libcbor-doc-0.14.0-1.2 RPM for armv7hl

From OpenSuSE Ports Tumbleweed for armv7hl

Name: libcbor-doc Distribution: openSUSE Tumbleweed
Version: 0.14.0 Vendor: openSUSE
Release: 1.2 Build date: Thu May 7 07:56:47 2026
Group: Development/Libraries/C and C++ Build host: reproducible
Size: 59417 Source RPM: libcbor-doc-0.14.0-1.2.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/PJK/libcbor
Summary: Library for parsing Concise Binary Object Representation (CBOR)
libcbor is a C99 library for parsing and generating CBOR (RFC 7049),
a general-purpose schema-less binary data format.

It supports flexible memory management, UTF-8, streams & incremental
processing, and has a layered architecture.

Provides

Requires

License

MIT

Changelog

* Thu May 07 2026 Dirk Müller <dmueller@suse.com>
  - update to 0.14.0:
    * Fix NULL dereference in `cbor_move`, `cbor_serialized_size`,
      and `cbor_serialize_tag` when a tag has no item set (reported
      by Benjamin608608)
    * Document large-allocation risk in `cbor_load` and clarify
      test-only CMake flags
    * Fix NULL dereference in `cbor_copy`/`cbor_copy_definite` on
      allocation failure (reported by Benjamin608608)
    * Explicitly guard against `size * 2` overflow in
      `cbor_builder_map_start_callback` (reported by
      Benjamin608608)
    * Only generate CMake coverage build targets when explicitly
      enabled
    * [Fix CMake feature macro names and ensure `_CBOR_NODISCARD`
      is defined with
      `[[nodiscard]]`](https://github.com/PJK/libcbor/pull/385)
    * Fix integer overflow in `cbor_copy_definite()` when
      accumulating indefinite bytestring/string chunk lengths
    * Add bounds check in `cbor_array_get()` to return NULL on out-
      of-bounds access
    * BREAKING: `cbor_tag_set_item` now releases the reference to
      the previous tagged item
    * Previously, replacing the tagged item would leak the old
      item's reference. If you were manually releasing the old item
      before calling `cbor_tag_set_item`, you should remove the
      extra `cbor_decref`.
    * Potentially BREAKING: `cbor_tag_item` now returns NULL if the
      tag has no item set
    * Previously, this would be undefined behavior (NULL pointer
      dereference), so no valid clients should be affected.
    * Potentially BUILD BREAKING: CPack Debian package architecture
      is now detected via `dpkg` instead of being hardcoded to
      `amd64`
    * BUILD BREAKING: Remove deprecated `CBOR_CUSTOM_ALLOC` CMake
      option
    * The option has been a no-op since 0.10.0. If your build
      passes `-DCBOR_CUSTOM_ALLOC=ON`, remove it.
    * Modernize CMake build: use `project(VERSION ...)`, replace
      `add_definitions()` with target-scoped
      `target_compile_definitions()`, remove redundant
      `include_directories()`
    * Replace global `CMAKE_C_FLAGS` mutations with target-scoped
      `target_compile_options()` via an INTERFACE library, and
      simplify LTO configuration
    * Fix Windows CI: propagate `_CRT_SECURE_NO_WARNINGS` to
      examples/tests, restrict LTO to Release builds, parallelize
      Windows CI build
    * Add `cbor_map_get` for key-based map lookup with a caller-
      supplied equality function
    * Signature: `cbor_map_get(map, key, eq)` — pass any equality
      predicate, e.g. `cbor_structurally_equal`
    * Parameterised equality allows type-specific comparators or
      custom data-model semantics without library changes
    * See also: #96
    * Add `cbor_structurally_equal` for encoding-level item
      comparison
    * Compares two items structurally: encoding width, definite-vs-
      indefinite length, chunk boundaries, and map entry order all
      count
    * Runs in O(n) time in the encoded byte size with no additional
      allocations
    * See also: #96
    * BREAKING: Fix NaN encoding in `cbor_encode_half` to preserve
      sign and payload bits
    * Previously, all NaN values were encoded as `0x7E00` (positive
      quiet NaN, zero payload). Now the sign bit and the top 10
      mantissa bits are preserved in the half-precision encoding.
    * `_cbor_decode_half` now reconstructs the NaN bit pattern
      faithfully, enabling encode/decode round-trips. Previously it
      always returned the C `NAN` constant.
    * Very small normal floats that previously rounded to `+0` now
      round to `±0` depending on their sign.
    * Clients that relied on all NaNs normalising to `0x7E00` will
      see different output. See #215.
* Tue Sep 02 2025 pgajdos@suse.com
  - version update to 0.13.0
    0.13.0
    * Fix small typo in release script by @PJK in #350
    * Fix failing 32 bit tests due to cmocka macro repeating stack pushes by @PJK in #354
    * Set cmake_minimum_required to 3.5 by @PJK in #355
    * Fix float_ctrl ctrl assertions failing in debug mode by @PJK in #353
    * Check in vscode setup by @PJK in #357
    * Add CBOR sequences example by @PJK in #358
    * Add riscv64 config to CircleCI by @PJK in #359
    * Add a test for malformed definite maps by @PJK in #360
    * Add [[nodiscard]] support and auto-update to C23 in cmake by @PJK in #361
    * Configure ctest on to export the test results to CircleCI by @PJK in #362
    * Revamp the introduction doc into a more useful crash course by @PJK in #363
    * Add OSX asan/lsan supression config by @PJK in #366
    * Add cbor_copy_definite by @PJK in #364
    * Improve handling and coverage reporting of exhaustive enum switches by @PJK in #367
    * Add references to readme by @PJK in #368
    * Update python deps and related docs by @PJK in #369
    * Link tutorial in readme (and fix embedded RST formatting) by @PJK in #370
    * Add a doc note on lto linking by @PJK in #373
    * Add a doc for the reference count in cbor_array_set(). by @hglee in #375
    * Add gh link to docs by @PJK in #374
    * Add #355 to changelog by @PJK in #376
    * Bump version to 0.13.0 by @PJK in #377
    0.12.0
    * Tag documentation and general doxygen style improvements by @PJK in #309
    * Rename API docs to be more helpful by @PJK in #310
    * Make MSVC w/ /sdl work by @PJK in #312
    * Respect CMAKE_INTERPROCEDURAL_OPTIMIZATION by @PJK in #316
    * Nicer cmakes by @PJK in #317
    * Fixed code coverage option typo in CMakeLists.txt by @jonathanmarvens in #318
    * Bump jinja2 from 3.1.2 to 3.1.3 in /doc/source by @dependabot in #306
    * Update CI configs by @PJK in #332
    * Fix wrong fopen mode in fuzzer by @PJK in #331
    * Update OSX CI version by @PJK in #333
    * Fix NaN handling on mips/mipsel and Windows; disable value propagation for signaling NaNs; add mips CI by @PJK in #335
    * Export and install CMake targets by @dg0yt in #337
    * Update cirrus FreeBSD to 14.2 by @PJK in #339
    * Update Bazel setup to Bzlmod by @PJK in #340
    * In cbor2cjson.c example, add missing cbor_move to cbor_array_get call by @whitehse in #338
    * Update python requirements by @PJK in #343
    * Fix mips/el CI by @PJK in #342
    * include project directory with target instead of globally by @Jan200101 in #341
    * Update more python packages by @PJK in #344
    * Update example formatting (clang changed) by @PJK in #345
    * Remove no-op pragma clang lines by @brooksdavis in #321
    * Fix mutiple "pedantic" compiler warnings, mostly around unused parameters by @PJK in #347
    * Bump jinja2 from 3.1.5 to 3.1.6 in /doc/source by @dependabot in #346
    * Update changelog, improve release script to automate version bump PRs by @PJK in #348
    * Bump version to 0.12.0 by @PJK in #349
* Tue Jan 21 2025 Steve Kowalik <steven.kowalik@suse.com>
  - Explicitly BuildRequire sphinx_rtd_theme.
* Mon Sep 16 2024 Eric Schirra <ecsos@opensuse.org>
  - The doc fails to build with an assert in sphinx in 15sp6 also.
* Tue Apr 02 2024 pgajdos@suse.com
  - version update to 0.11.0
    * Updated documentation to refer to RFC 8949
    * Improvements to cbor_describe
      Bytestring data will now be printed as well by akallabeth
      Formatting consistency and clarity improvements
    * Fix cbor_string_set_handle not setting the codepoint count
    * BREAKING: cbor_load will no longer fail on input strings that are
      well-formed but not valid UTF-8
      If you were relying on the validation, please check the result
      using cbor_string_codepoint_count instead
    * BREAKING: All decoders like cbor_load and cbor_stream_decode will
      accept all well-formed tag values (bug discovered by dskern-github)
      Previously, decoding of certain values would fail with
      CBOR_ERR_MALFORMATED or CBOR_DECODER_ERROR
      This also makes decoding symmetrical with serialization, which
      already accepts all values
* Mon Feb 27 2023 Paolo Stivanin <info@paolostivanin.com>
  - Update to 0.10.2:
    * Fixed minor test bug causing failures for x86 Linux
    * Made tests platform-independent
* Wed Feb 22 2023 Antonio Larrosa <alarrosa@suse.com>
  - Merge change from SLE15 SP4 made by pgajdos@suse.com on
    Tue Apr  5 14:36:56 UTC 2022:
  - do not build manual page for 15sp4, it does not succeed
    [bsc#1197743]
  - added sources
    + libcbor.3
* Mon Jan 16 2023 Paolo Stivanin <info@paolostivanin.com>
  - Update to 0.10.1:
    * BREAKING: Fix cbor_copy leaking memory and creating invalid items when the allocator fails.
    * BREAKING: Improved half-float encoding for denormalized numbers. [#208]
    * Make the buffer_size optional in cbor_serialize_alloc [#205]
    * Fix a potential memory leak when the allocator fails during array or map decoding [#224]
    * Fix a memory leak when the allocator fails when adding chunks to indefinite bytestrings.
    * Fix a memory leak when the allocator fails when adding chunks to indefinite strings
    * Fix cbor_build_tag illegal memory behavior when the allocator fails
    * Add a new cbor_serialized_size API
    * Reworked cbor_serialize_alloc to allocate the exact amount of memory necessary upfront
* Fri Aug 26 2022 Thorsten Kukuk <kukuk@suse.com>
  - Install manual page in the correct man section
* Tue Dec 07 2021 Dirk Müller <dmueller@suse.com>
  - fix duplicate src package name issue on multibuild

Files

/usr/share/doc/packages/libcbor-doc
/usr/share/doc/packages/libcbor-doc/CHANGELOG.md
/usr/share/doc/packages/libcbor-doc/README.md
/usr/share/man/man3/libcbor.3.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 04:22:40 2026