File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,21 @@ Release Date: TBD
77Important 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
1420Other 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
You can’t perform that action at this time.
0 commit comments