Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# 1.2.2

Release Date: TBD

- Fix the `read_size` documentation. #700
- Fix silent truncation when unpacking an out-of-range timestamp with `timestamp=3`. #701
- Prevent reentrant calls to `Unpacker.feed()` while unpacking. #704
- Improve error handling and reporting in unpacking functions. #707
- Fix `Timestamp.from_datetime()` precision for far-future datetimes. #710
- Fix typos in the documentation. #712
- Validate the nanoseconds range when unpacking timestamps in the C extension. #716
- Fix a use-after-free in the `unpackb()` `ExtraData` path for non-contiguous input. #722
- Prevent a buffer overflow when converting `Packer`'s `buf_size`. #726
- Translate `RecursionError` to `StackError` in the fallback `Unpacker.skip()`. #727
- Raise `OverflowError` when `use_single_float=True` cannot represent a value. #728


# 1.2.1

Release Date: 2026-06-19
Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from .exceptions import * # noqa: F403
from .ext import ExtType, Timestamp

version = (1, 2, 1)
__version__ = "1.2.1"
version = (1, 2, 2)
__version__ = "1.2.2"


if os.environ.get("MSGPACK_PUREPYTHON"):
Expand Down