Release Date: 2025-10-08
This release does not change source code. It updates only building wheels:
- Update Cython to v3.1.4
- Update cibuildwheel to v3.2.0
- Drop Python 3.8
- Add Python 3.14
- Add windows-arm
Release Date: 2025-06-13
- No change from 1.1.1rc1.
Release Date: 2025-06-06
- Update Cython to 3.1.1 and cibuildwheel to 2.23.3.
Release Date: 2024-09-10
- use
PyLong_*instead ofPyInt_*for compatibility with future Cython. (#620)
Release Date: 2024-08-19
- Update Cython to 3.0.11 for better Python 3.13 support.
- Update cibuildwheel to 2.20.0 to build Python 3.13 wheels.
Release Date: 2024-05-07
- Update Cython to 3.0.10 to reduce C warnings and future support for Python 3.13.
- Stop using C++ mode in Cython to reduce compile error on some compilers.
Packer()hasbuf_sizeoption to specify initial size of internal buffer to reduce reallocation.- The default internal buffer size of
Packer()is reduced from 1MiB to 256KiB to optimize for common use cases. Usebuf_sizeif you are packing large data. Timestamp.to_datetime()andTimestamp.from_datetime()become more accurate by avoiding floating point calculations. (#591)- The Cython code for
Unpackerhas been slightly rewritten for maintainability. - The fallback implementation of
Packer()andUnpacker()now uses keyword-only arguments to improve compatibility with the Cython implementation.
Release Date: 2024-03-01
- Update Cython to 3.0.8. This fixes memory leak when iterating
Unpackerobject on Python 3.12. - Do not include C/Cython files in binary wheels.
Release Date: 2023-09-28
- Fix build error of extension module on Windows. (#567)
setup.pydoesn't skip build error of extension module. (#568)
Release Date: 2023-09-21
Note
v1.0.6 Wheels for Windows don't contain extension module. Please upgrade to v1.0.7 or newer.
- Add Python 3.12 wheels (#517)
- Remove Python 2.7, 3.6, and 3.7 support
Release Date: 2023-03-08
- Use
__BYTE_ORDER__instead of__BYTE_ORDERfor portability. (#513, #514) - Add Python 3.11 wheels (#517)
- fallback: Fix packing multidimensional memoryview (#527)
Release Date: 2022-06-03
- Support Python 3.11 (beta).
- Don't define __*_ENDIAN__ macro on Unix. by @methane in #495
- Use PyFloat_Pack8() on Python 3.11a7 by @vstinner in #499
- Fix Unpacker max_buffer_length handling by @methane in #506
Release Date: 2021-11-24 JST
- Fix Docstring (#459)
- Fix error formatting (#463)
- Improve error message about strict_map_key (#485)
- Fix year 2038 problem regression in 1.0.1. (#451)
- 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)
Release Date: 2020-02-17
- Remove Python 2 support from the
msgpack/_cmsgpack.msgpack/fallbackstill supports Python 2. - Remove
encodingoption from the Packer and Unpacker. - Unpacker: The default value of
max_buffer_sizeis changed to 100MiB. - Unpacker:
strict_map_keyis True by default now. - Unpacker: String map keys are interned.
- Drop old buffer protocol support.
- Support Timestamp type.
- Support serializing and decerializing
datetimeobject with tzinfo. - Unpacker:
Fix Unpacker.read_bytes()in fallback implementation. (#352)
Release Date: 2019-09-20
- Support Python 3.8.
- Update Cython to 0.29.13 for support Python 3.8.
- Some small optimizations.
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)configuresmax_*_lenoptions fromlen(data), instead of static default sizes.Unpacker(max_buffer_len=N)configuresmax_*_lenoptions fromN, instead of static default sizes.max_bin_len,max_str_len, andmax_ext_lenare deprecated. Since this is minor release, it's document only deprecation.
Release Date: 2018-11-30
This release contains some backward incompatible changes for security reason (DoS).
- unpacker: Default value of input limits are smaller than before to avoid DoS attack. If you need to handle large data, you need to specify limits manually. (#319)
- Unpacker doesn't wrap underlying
ValueError(includingUnicodeError) intoUnpackValueError. If you want to catch all exception during unpack, you need to usetry ... except Exceptionwith minimum try code block. (#323, #233) PackValueErrorandPackOverflowErrorare also removed. You need to catch normalValueErrorandOverflowError. (#323, #233)- Unpacker has
strict_map_keyoption now. When it is true, only bytes and str (unicode in Python 2) are allowed for map keys. It is recommended to avoid hashdos. Default value of this option is False for backward compatibility reason. But it will be changed True in 1.0. (#296, #334)
- Extension modules are merged. There is
msgpack._cmsgpackinstead ofmsgpack._packerandmsgpack._unpacker. (#314, #328) - Add
Unpacker.getbuffer()method. (#320) - unpacker:
msgpack.StackErroris raised when input data contains too nested data. (#331) - unpacker:
msgpack.FormatErroris raised when input data is not valid msgpack format. (#331)
- Fix fallback.Unpacker.feed() dropped unused data from buffer (#287)
- Resurrect fallback.unpack() and _unpacker.unpack(). They were removed at 0.5.5 but it breaks backward compatibility. (#288, #290)
- Fix memory leak in pure Python Unpacker.feed() (#283)
- Fix unpack() didn't support raw option (#285)
- Undeprecate
unicode_errorsoption. (#278)
- Fixed regression when passing
unicode_errorsto Packer but notencoding. (#277)
- Add
rawoption to Unpacker. It is preferred way thanencodingoption. - Packer.pack() reset buffer on exception (#274)
- Remove FutureWarning about use_bin_type option (#271)
There are some deprecations. Please read changes carefully.
- Drop Python 2.6 and ~3.4 support. Python 2.7 and 3.5+ are supported.
- Deprecate useless custom exceptions. Use ValueError instead of PackValueError, Exception instead of PackException and UnpackException, etc... See msgpack/exceptions.py
- Add strict_types option to packer. It can be used to serialize subclass of
builtin types. For example, when packing object which type is subclass of dict,
default()is called.default()is called for tuple too. - Pure Python implementation supports packing memoryview object.
- Support packing bytearray.
- Add
Unpacker.tell(). Andwrite_bytesoption is deprecated.
- Fixed zero length raw can't be decoded when encoding is specified. (#236)
| release date: | 2016-07-29 |
|---|
- Calling ext_hook with wrong length. (Only on Windows, maybe. #203)
| release date: | 2016-01-25 |
|---|
- Memory leak when unpack is failed
- Reduce compiler warnings while building extension module
- unpack() now accepts ext_hook argument like Unpacker and unpackb()
- Update Cython version to 0.23.4
- default function is called when integer overflow
| release date: | 2015-03-13 |
|---|
- fallback.Unpacker: Fix Data corruption when OutOfData. This bug only affects "Streaming unpacking."
| release date: | 2015-01-25 |
|---|
- Fix test failure on pytest 2.3. (by @ktdreyer)
- Fix typos in ChangeLog. (Thanks to @dmick)
- Improve README.rst (by @msabramo)
| release date: | 2015-01-09 |
|---|
- Fix compile error.
| release date: | 2015-01-07 |
|---|
- Unpacker may unpack wrong uint32 value on 32bit or LLP64 environment. (#101)
- Build failed on Windows Python 2.7.
| release date: | 2014-03-26 |
|---|
- Unpacker doesn't increment refcount of ExtType hook.
- Packer raises no exception for inputs doesn't fit to msgpack format.
| release date: | 2014-02-17 |
|---|
- fallback.Unpacker.feed() supports bytearray.
- Unpacker doesn't increment refcount of hooks. Hooks may be GCed while unpacking.
- Unpacker may read unfilled internal buffer.
| release date: | 2013-10-21 |
|---|
- Raises TypeError instead of ValueError when packer receives unsupported type.
- Support New msgpack spec.
- Default value of
use_listisTruefor now. (It wasFalsefor 0.2.x) You should pass it explicitly for compatibility to 0.2.x. - Unpacker.unpack() and some unpack methods now raise OutOfData instead of StopIteration. StopIteration is used for iterator protocol only.
- Pure Python fallback module is added. (thanks to bwesterb)
- Add
.skip()method toUnpacker(thanks to jnothman) - Add capturing feature. You can pass the writable object to
Unpacker.unpack()as a second parameter. - Add
Packer.pack_array_headerandPacker.pack_map_header. These methods only pack header of each type. - Add
autoresetoption toPacker(default: True). Packer doesn't return packed bytes and clear internal buffer. - Add
Packer.pack_map_pairs. It packs sequence of pair to map type.
| release date: | 2012-12-22 |
|---|
- Fix SEGV when object_hook or object_pairs_hook raise Exception. (#39)
| release date: | 2012-12-11 |
|---|
- Warn when use_list is not specified. It's default value will be changed in 0.3.
- Can't pack subclass of dict.
| release date: | 2012-09-21 |
|---|
- Add
use_single_floatoption toPacker. When it is true, packs float object in single precision format.
unpack()didn't restores gc state when it called with gc disabled.unpack()doesn't control gc now instead of restoring gc state collectly. User can control gc state when gc cause performance issue.Unpacker'sread_sizeoption didn't used.
| release date: | 2012-08-20 |
|---|
- Add
max_buffer_sizeparameter to Unpacker. It limits internal buffer size and allows unpack data from untrusted source safely. - Unpacker's buffer reallocation algorithm is less greedy now. It cause performance
decrease in rare case but memory efficient and don't allocate than
max_buffer_size.
- Fix msgpack didn't work on SPARC Solaris. It was because choosing wrong byteorder
on compilation time. Use
sys.byteorderto get correct byte order. Very thanks to Chris Casey for giving test environment to me.
| release date: | 2012-06-27 |
|---|
- Drop supporting Python 2.5 and unify tests for Py2 and Py3.
- Use new version of msgpack-c. It packs correctly on big endian platforms.
- Remove deprecated packs and unpacks API.
- #8 Packing subclass of dict raises TypeError. (Thanks to Steeve Morin.)
| release date: | 2012-04-21 |
|---|
- Don't accept subtype of list and tuple as msgpack list. (Steeve Morin)
It allows customize how it serialized with
defaultargument.
- Fix wrong error message. (David Wolever)
- Fix memory leak while unpacking when
object_hookorlist_hookis used. (Steeve Morin)
- setup.py works on Python 2.5 (Steffen Siering)
- Optimization for serializing dict.
| release date: | 2011-12-27 |
|---|
- Re-enable packs/unpacks removed at 0.1.11. It will be removed when 0.2 is released.
| release date: | 2011-12-26 |
|---|
- Include test code for Python3 to sdist. (Johan Bergström)
- Fix compilation error on MSVC. (davidgaleano)
| release date: | 2011-08-22 |
|---|
- Add
encodingandunicode_errorsoption to packer and unpacker. When this option is specified, (un)packs unicode object instead of bytes. This enables using msgpack as a replacement of json. (tailhook)
| release date: | 2011-01-29 |
|---|
use_listoption is added to unpack(b) like Unpacker. (Use keyword argument because order of parameters are different)
- Fix typo.
- Add MemoryError check.
| release date: | 2011-01-10 |
|---|
- Support
loadsanddumpsaliases for API compatibility with simplejson and pickle. - Add object_hook and list_hook option to unpacker. It allows you to hook unpacking mapping type and array type.
- Add default option to packer. It allows you to pack unsupported types.
- unpacker accepts (old) buffer types.
- Fix segv around
Unpacker.feedorUnpacker(file).
| release date: | 2010-11-02 |
|---|
- Add object_hook and list_hook option to unpacker. It allows you to hook unpacking mapping type and array type.
- Add default option to packer. It allows you to pack unsupported types.
- unpacker accepts (old) buffer types.
- Compilation error on win32.