summaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-01-25 21:27:46 +0900
committerInada Naoki <songofacandy@gmail.com>2019-01-25 21:27:46 +0900
commit280308e8ced50322414fd4f7426d56093a57dbf1 (patch)
tree272b1a01f5f0e0640802bb64e60c53c5e86e6b7e /ChangeLog.rst
parent9951b894555e4f9c7120375028e686f7420de92a (diff)
downloadmsgpack-python-280308e8ced50322414fd4f7426d56093a57dbf1.tar.gz
Recommend max_buffer_len instead of max_(str|bin|ext)_len
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 651ba62..2c988db 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,3 +1,21 @@
+0.6.1
+======
+
+Release Date: 2019-01-25
+
+This release is for mitigating pain caused by v0.6.1 reduced max input limits
+for security reason.
+
+* ``unpackb(data)`` configures ``max_*_len`` options from ``len(data)``,
+ instead of static default sizes.
+
+* ``Unpacker(max_buffer_len=N)`` configures ``max_*_len`` options from ``N``,
+ instead of static default sizes.
+
+* ``max_bin_len``, ``max_str_len``, and ``max_ext_len`` are deprecated.
+ Since this is minor release, it's document only deprecation.
+
+
0.6.0
======