Skip to content

Commit 5eb57e1

Browse files
methaneCopilot
andauthored
release v1.2.0rc1 (#681)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 77395c1 commit 5eb57e1

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 1.2.0
2+
3+
Release Date: TBD
4+
5+
- Support free threaded Python. #654, #686
6+
- Dropped support for Python 3.9. #656
7+
- Fix missing error checks in C code. #665, #666, #667, #672
8+
- Fix `strict_map_key` option didn't work for `object_pairs_hook`. #673
9+
- Increase DEFAULT_RECURSE_LIMIT of Unpacker to 1024. #676
10+
- Fix memory leak when Unpacker returns error for invalid input. #671
11+
- Fix `Packer.pack_ext_type()` ignored `autoreset` option. #663
12+
- Fix `Timestamp.from_datetime()` returning wrong value for pre-epoch datetimes. #662
13+
- Fix use-after-free in `unpackb()` and `Unpacker.unpack()` for non-contiguous input. #677
14+
- Fix possible memory leak when calling `Unpacker.__init__()` several times. #687
15+
16+
117
# 1.1.2
218

319
Release Date: 2025-10-08

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, 1, 2)
8-
__version__ = "1.1.2"
7+
version = (1, 2, 0)
8+
__version__ = "1.2.0rc1"
99

1010

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

0 commit comments

Comments
 (0)