diff options
| author | INADA Naoki <methane@users.noreply.github.com> | 2018-11-20 13:12:49 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-20 13:12:49 +0900 |
| commit | 44254dd35e8aa3cfd6706e14effab117d7f22c25 (patch) | |
| tree | 2bdf0ba6f5e4a0edc7233bef0dba04df3fa7ddbf /ChangeLog.rst | |
| parent | 8b6ce53cce40e528af7cce89f358f7dde1a09289 (diff) | |
| download | msgpack-python-44254dd35e8aa3cfd6706e14effab117d7f22c25.tar.gz | |
Add StackError and FormatError (#331)
Diffstat (limited to 'ChangeLog.rst')
| -rw-r--r-- | ChangeLog.rst | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst index cc6b5e4..d39e76b 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -5,21 +5,25 @@ Release Date: TBD Important changes ------------------- +----------------- -Extension modules are merged. There is ``msgpack._msgpack`` instead of -``msgpack._packer`` and ``msgpack._unpacker``. (#314) +* unpacker: Default size limits is smaller than before to avoid DoS attack. + If you need to handle large data, you need to specify limits manually. (#319) -unpacker: Default size limits is smaller than before to avoid DoS attack. -If you need to handle large data, you need to specify limits manually. +Other changes +------------- +* Extension modules are merged. There is ``msgpack._msgpack`` instead of + ``msgpack._packer`` and ``msgpack._unpacker``. (#314) -Other changes --------------- +* Add ``Unpacker.getbuffer()`` method. (#320) -Add ``Unpacker.getbuffer()`` method. +* unpacker: ``msgpack.StackError`` is raised when input data contains too + nested data. (#331) +* unpacker: ``msgpack.FormatError`` is raised when input data is not valid + msgpack format. (#331) 0.5.6 |
