Skip to content

Commit 3c9c6ed

Browse files
committed
Update README
1 parent ab2415e commit 3c9c6ed

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

ChangeLog.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,21 @@ Release Date: TBD
77
Important changes
88
-----------------
99

10-
* unpacker: Default size limits is smaller than before to avoid DoS attack.
10+
* unpacker: Default value of input limits are smaller than before to avoid DoS attack.
1111
If you need to handle large data, you need to specify limits manually. (#319)
1212

13+
* Unpacker doesn't wrap underlaying ``ValueError`` (including ``UnicodeError``) into
14+
``UnpackValueError``. If you want to catch all exception during unpack, you need
15+
to use ``try ... except Exception`` with minimum try code block. (#323, #233)
16+
17+
* ``PackValueError`` and ``PackOverflowError`` are also removed. You need to catch
18+
normal ``ValueError`` and ``OverflowError``. (#323, #233)
1319

1420
Other changes
1521
-------------
1622

17-
* Extension modules are merged. There is ``msgpack._msgpack`` instead of
18-
``msgpack._packer`` and ``msgpack._unpacker``. (#314)
23+
* Extension modules are merged. There is ``msgpack._cmsgpack`` instead of
24+
``msgpack._packer`` and ``msgpack._unpacker``. (#314, #328)
1925

2026
* Add ``Unpacker.getbuffer()`` method. (#320)
2127

0 commit comments

Comments
 (0)