14
0
forked from pool/python-cbor2

Accepting request 1178786 from home:glaubitz:branches:devel:languages:python

- Update to 5.6.3
  * Fixed decoding of epoch-based dates being affected by the local
    time zone in the C extension
- from version 5.6.2
  * Fixed ``__hash__()`` of the C version of the ``CBORTag`` type crashing
    when there's a recursive reference cycle
  * Fixed type annotation for the file object in ``cbor2.dump()``, ``cbor2.load()``,
    ``CBOREncoder`` and ``CBORDecoder`` to be ``IO[bytes]`` instead of ``BytesIO``
  * Worked around a `CPython bug <https://github.com/python/cpython/issues/99612>`_
    that caused a ``SystemError`` to be raised, or even a buffer overflow to occur
    when decoding a long text string that contained only ASCII characters
  * Changed the return type annotations of ``cbor2.load()`` and ``cbor2.load()``
    to return ``Any`` instead of ``object`` so as not to force users to make type casts
- from version 5.6.1
  * Fixed use-after-free in the decoder's C version when prematurely encountering
    the end of stream
  * Fixed the C version of the decoder improperly raising ``CBORDecodeEOF`` when
    decoding a text string longer than 65536 bytes
- from version 5.6.0
  * Added the ``cbor2`` command line tool (for ``pipx run cbor2``)
  * Added support for native date encoding (bschoenmaeckers)
  * Made the C extension mandatory when the environment variable
    ``CBOR2_BUILD_C_EXTENSION`` is set to ``1``.
  * Fixed ``SystemError`` in the C extension when decoding a ``Fractional``
    with a bad number of arguments or a non-tuple value
  * Fixed ``SystemError`` in the C extension when the decoder object hook
    raises an exception
  * Fixed a segmentation fault when decoding invalid unicode data
  * Fixed infinite recursion when trying to hash a CBOR tag whose
    value points to the tag itself

OBS-URL: https://build.opensuse.org/request/show/1178786
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cbor2?expand=0&rev=24
This commit is contained in:
2024-06-06 06:55:12 +00:00
committed by Git OBS Bridge
parent 79e3c43b1b
commit 4428b713f9
5 changed files with 94 additions and 5 deletions

View File

@@ -1,3 +1,56 @@
-------------------------------------------------------------------
Wed Jun 5 15:47:30 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 5.6.3
* Fixed decoding of epoch-based dates being affected by the local
time zone in the C extension
- from version 5.6.2
* Fixed ``__hash__()`` of the C version of the ``CBORTag`` type crashing
when there's a recursive reference cycle
* Fixed type annotation for the file object in ``cbor2.dump()``, ``cbor2.load()``,
``CBOREncoder`` and ``CBORDecoder`` to be ``IO[bytes]`` instead of ``BytesIO``
* Worked around a `CPython bug <https://github.com/python/cpython/issues/99612>`_
that caused a ``SystemError`` to be raised, or even a buffer overflow to occur
when decoding a long text string that contained only ASCII characters
* Changed the return type annotations of ``cbor2.load()`` and ``cbor2.load()``
to return ``Any`` instead of ``object`` so as not to force users to make type casts
- from version 5.6.1
* Fixed use-after-free in the decoder's C version when prematurely encountering
the end of stream
* Fixed the C version of the decoder improperly raising ``CBORDecodeEOF`` when
decoding a text string longer than 65536 bytes
- from version 5.6.0
* Added the ``cbor2`` command line tool (for ``pipx run cbor2``)
* Added support for native date encoding (bschoenmaeckers)
* Made the C extension mandatory when the environment variable
``CBOR2_BUILD_C_EXTENSION`` is set to ``1``.
* Fixed ``SystemError`` in the C extension when decoding a ``Fractional``
with a bad number of arguments or a non-tuple value
* Fixed ``SystemError`` in the C extension when the decoder object hook
raises an exception
* Fixed a segmentation fault when decoding invalid unicode data
* Fixed infinite recursion when trying to hash a CBOR tag whose
value points to the tag itself
* Fixed ``MemoryError`` when maliciously constructed bytestrings or string
(declared to be absurdly large) are being decoded
* Fixed ``UnicodeDecodeError`` from failed parsing of a UTF-8 text string
not being wrapped as ``CBORDecodeValueError``
* Fixed ``TypeError`` or ``ZeroDivisionError`` from a failed decoding of
``Fraction`` not being wrapped as ``CBORDecodeValueError``
* Fixed ``TypeError`` or ``ValueError`` from a failed decoding of ``UUID``
not being wrapped as ``CBORDecodeValueError``
* Fixed ``TypeError`` from a failed decoding of ``MIMEMessage`` not being
wrapped as ``CBORDecodeValueError``
* Fixed ``OverflowError``, ``OSError`` or ``ValueError`` from a failed decoding
of epoch-based ``datetime`` not being wrapped as ``CBORDecodeValueError``
- Cherry-pick upstream patch to fix build with GCC 14
* https://github.com/agronholm/cbor2/pull/238.patch
- Add update-alternatives to Requires for post and postun
- Install cbor2 binary in %files section using %python_alternative
- Run %python_install_alternative in %post section
- Run %python_uninstall_alternative in %postun section
- Set CBOR2_BUILD_C_EXTENSION to 1 to build C extension
-------------------------------------------------------------------
Thu Dec 14 09:18:38 UTC 2023 - Petr Gajdos <pgajdos@suse.com>