File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 1.2.2
2+
3+ Release Date: TBD
4+
5+ - Fix the ` read_size ` documentation. #700
6+ - Fix silent truncation when unpacking an out-of-range timestamp with ` timestamp=3 ` . #701
7+ - Prevent reentrant calls to ` Unpacker.feed() ` while unpacking. #704
8+ - Improve error handling and reporting in unpacking functions. #707
9+ - Fix ` Timestamp.from_datetime() ` precision for far-future datetimes. #710
10+ - Fix typos in the documentation. #712
11+ - Validate the nanoseconds range when unpacking timestamps in the C extension. #716
12+ - Fix a use-after-free in the ` unpackb() ` ` ExtraData ` path for non-contiguous input. #722
13+ - Prevent a buffer overflow when converting ` Packer ` 's ` buf_size ` . #726
14+ - Translate ` RecursionError ` to ` StackError ` in the fallback ` Unpacker.skip() ` . #727
15+ - Raise ` OverflowError ` when ` use_single_float=True ` cannot represent a value. #728
16+
17+
118# 1.2.1
219
320Release Date: 2026-06-19
Original file line number Diff line number Diff line change 44from .exceptions import * # noqa: F403
55from .ext import ExtType , Timestamp
66
7- version = (1 , 2 , 1 )
8- __version__ = "1.2.1 "
7+ version = (1 , 2 , 2 )
8+ __version__ = "1.2.2 "
99
1010
1111if os .environ .get ("MSGPACK_PUREPYTHON" ):
You can’t perform that action at this time.
0 commit comments