Path to this page:
./
devel/py-cbor2,
CBOR (de)serializer with extensive tag support
Branch: CURRENT,
Version: 5.6.5,
Package name: py312-cbor2-5.6.5,
Maintainer: pkgsrc-usersPure Python CBOR (de)serializer with extensive tag support
Master sites:
Filesize: 98.521 KB
Version history: (Expand)
- (2024-10-24) Updated to version: py312-cbor2-5.6.5
- (2024-06-08) Updated to version: py311-cbor2-5.6.4
- (2024-04-11) Updated to version: py311-cbor2-5.6.3
- (2024-02-20) Updated to version: py311-cbor2-5.6.2
- (2024-02-02) Updated to version: py311-cbor2-5.6.1
- (2024-01-23) Updated to version: py311-cbor2-5.6.0
CVS history: (Expand)
2024-04-11 09:53:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cbor2: updated to 5.6.3
5.6.3
- Fixed decoding of epoch-based dates being affected by the local time zone in \
the C extension
|
2024-02-20 05:38:23 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cbor2: updated to 5.6.2
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
|
2024-02-07 07:06:45 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
py-cbor2: add ALTERNATIVES
|
2024-02-02 09:10:53 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cbor2: updated to 5.6.1
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
|
2024-01-23 19:27:50 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-cbor2: updated to 5.6.0
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``
|
2023-11-08 15:09:43 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cbor2: updated to 5.5.1
5.5.1
- Fixed ``CBORSimpleValue`` allowing the use of reserved values (24 to 31) which \
resulted in
invalid byte sequences
- Fixed encoding of simple values from 20 to 23 producing the wrong byte sequences
|
2023-10-30 15:16:14 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-cbor2: updated to 5.5.0
5.5.0 (2023-10-21)
- The ``cbor2.encoder``, ``cbor2.decoder`` or ``cbor2.types`` modules were \
deprecated – import
their contents directly from ``cbor2`` from now on. The old modules will be \
removed in the next
major release.
- Added support for Python 3.12
- Added type annotations
- Dropped support for Python 3.7
- Fixed bug in the ``fp`` attribute of the built-in version of ``CBORDecoder`` and
``CBOREncoder`` where the getter returns an invalid pointer if the ``read`` \
method of
the file was a built-in method
|
2022-12-18 11:14:32 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cbor2: updated to 5.4.6
5.4.6** (2022-12-07)
- Fix MemoryError when decoding Tags on 32bit architecture. (Sekenre)
**5.4.5** (2022-11-29)
- Added official Python 3.11 support (agronholm)
- Raise proper exception on invalid bignums (Øyvind Rønningstad)
- Make Tagged item usable as a map key (Niels Mündler)
- Eliminate potential memory leak in tag handling (Niels Mündler)
- Documentation tweaks
|