Changelog
### 1.0.4
```
=====
Release Date: 2022-06-03
* Support Python 3.11 (beta).
* Don't define `__*_ENDIAN__` macro on Unix. by methane in https://github.com/msgpack/msgpack-python/pull/495
* Use PyFloat_Pack8() on Python 3.11a7 by vstinner in https://github.com/msgpack/msgpack-python/pull/499
* Fix Unpacker max_buffer_length handling by methane in https://github.com/msgpack/msgpack-python/pull/506
```
### 1.0.3
```
=====
Release Date: 2021-11-24 JST
* Fix Docstring (459)
* Fix error formatting (463)
* Improve error message about strict_map_key (485)
```
### 1.0.2
```
=====
* Fix year 2038 problem regression in 1.0.1. (451)
```
### 1.0.1
```
=====
* Add Python 3.9 and linux/arm64 wheels. (439)
* Fixed Unpacker.tell() after read_bytes() (426)
* Fixed unpacking datetime before epoch on Windows (433)
* Fixed fallback Packer didn't check DateTime.tzinfo (434)
```
### 1.0.0
```
=====
Release Date: 2020-02-17
* Remove Python 2 support from the ``msgpack/_cmsgpack``.
``msgpack/fallback`` still supports Python 2.
* Remove ``encoding`` option from the Packer and Unpacker.
* Unpacker: The default value of ``max_buffer_size`` is changed to 100MiB.
* Unpacker: ``strict_map_key`` is True by default now.
* Unpacker: String map keys are interned.
* Drop old buffer protocol support.
* Support Timestamp type.
* Support serializing and decerializing ``datetime`` object
with tzinfo.
* Unpacker: ``Fix Unpacker.read_bytes()`` in fallback implementation. (352)
```
### 0.6.2
```
=====
Release Date: 2019-09-20
* Support Python 3.8.
* Update Cython to 0.29.13 for support Python 3.8.
* Some small optimizations.
```
### 0.6.1
```
======
Release Date: 2019-01-25
This release is for mitigating pain caused by v0.6.0 reduced max input limits
for security reason.
* ``unpackb(data)`` configures ``max_*_len`` options from ``len(data)``,
instead of static default sizes.
* ``Unpacker(max_buffer_len=N)`` configures ``max_*_len`` options from ``N``,
instead of static default sizes.
* ``max_bin_len``, ``max_str_len``, and ``max_ext_len`` are deprecated.
Since this is minor release, it's document only deprecation.
```
Links
- PyPI: https://pypi.org/project/msgpack
- Changelog: https://pyup.io/changelogs/msgpack/
- Homepage: https://msgpack.org/
This PR updates msgpack from 0.6.0 to 1.0.4.
Changelog
### 1.0.4 ``` ===== Release Date: 2022-06-03 * Support Python 3.11 (beta). * Don't define `__*_ENDIAN__` macro on Unix. by methane in https://github.com/msgpack/msgpack-python/pull/495 * Use PyFloat_Pack8() on Python 3.11a7 by vstinner in https://github.com/msgpack/msgpack-python/pull/499 * Fix Unpacker max_buffer_length handling by methane in https://github.com/msgpack/msgpack-python/pull/506 ``` ### 1.0.3 ``` ===== Release Date: 2021-11-24 JST * Fix Docstring (459) * Fix error formatting (463) * Improve error message about strict_map_key (485) ``` ### 1.0.2 ``` ===== * Fix year 2038 problem regression in 1.0.1. (451) ``` ### 1.0.1 ``` ===== * Add Python 3.9 and linux/arm64 wheels. (439) * Fixed Unpacker.tell() after read_bytes() (426) * Fixed unpacking datetime before epoch on Windows (433) * Fixed fallback Packer didn't check DateTime.tzinfo (434) ``` ### 1.0.0 ``` ===== Release Date: 2020-02-17 * Remove Python 2 support from the ``msgpack/_cmsgpack``. ``msgpack/fallback`` still supports Python 2. * Remove ``encoding`` option from the Packer and Unpacker. * Unpacker: The default value of ``max_buffer_size`` is changed to 100MiB. * Unpacker: ``strict_map_key`` is True by default now. * Unpacker: String map keys are interned. * Drop old buffer protocol support. * Support Timestamp type. * Support serializing and decerializing ``datetime`` object with tzinfo. * Unpacker: ``Fix Unpacker.read_bytes()`` in fallback implementation. (352) ``` ### 0.6.2 ``` ===== Release Date: 2019-09-20 * Support Python 3.8. * Update Cython to 0.29.13 for support Python 3.8. * Some small optimizations. ``` ### 0.6.1 ``` ====== Release Date: 2019-01-25 This release is for mitigating pain caused by v0.6.0 reduced max input limits for security reason. * ``unpackb(data)`` configures ``max_*_len`` options from ``len(data)``, instead of static default sizes. * ``Unpacker(max_buffer_len=N)`` configures ``max_*_len`` options from ``N``, instead of static default sizes. * ``max_bin_len``, ``max_str_len``, and ``max_ext_len`` are deprecated. Since this is minor release, it's document only deprecation. ```Links
- PyPI: https://pypi.org/project/msgpack - Changelog: https://pyup.io/changelogs/msgpack/ - Homepage: https://msgpack.org/