FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

release v1.2.0rc1 by methane · Pull Request #681 · msgpack/msgpack-python · GitHub

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

Filter by extension

Filter by extension .md  (1) .py  (1) All 2 file types selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
16 changes: 16 additions & 0 deletions CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 1.2.0

Release Date: TBD

- Support free threaded Python. #654, #686
- Dropped support for Python 3.9. #656
- Fix missing error checks in C code. #665, #666, #667, #672
- Fix `strict_map_key` option didn't work for `object_pairs_hook`. #673
- Increase DEFAULT_RECURSE_LIMIT of Unpacker to 1024. #676
- Fix memory leak when Unpacker returns error for invalid input. #671
- Fix `Packer.pack_ext_type()` ignored `autoreset` option. #663
- Fix `Timestamp.from_datetime()` returning wrong value for pre-epoch datetimes. #662
- Fix use-after-free in `unpackb()` and `Unpacker.unpack()` for non-contiguous input. #677
- Fix possible memory leak when calling `Unpacker.__init__()` several times. #687


# 1.1.2

Release Date: 2025-10-08
Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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, 1, 2)
__version__ = "1.1.2"
version = (1, 2, 0)
__version__ = "1.2.0rc1"


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

Back | FazBrowse Home | New Git URL