Skip to content

Commit 63d4324

Browse files
committed
Prepare v1.2.2rc1 release
1 parent 57d28a2 commit 63d4324

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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

320
Release Date: 2026-06-19

msgpack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from .exceptions import * # noqa: F403
55
from .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

1111
if os.environ.get("MSGPACK_PUREPYTHON"):

0 commit comments

Comments
 (0)