Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 507a266

Browse files
committed
Version 0.0.31
1 parent c814948 commit 507a266

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.0.31 (2026-06-04)
6+
7+
* Speed up multipart header parsing and callback dispatch [#295](https://github.com/Kludex/python-multipart/pull/295).
8+
* Bound header field name size before validating [#296](https://github.com/Kludex/python-multipart/pull/296).
9+
* Validate `Content-Length` is non-negative in `parse_form` [#297](https://github.com/Kludex/python-multipart/pull/297).
10+
511
## 0.0.30 (2026-05-31)
612

713
* Parse `application/x-www-form-urlencoded` bodies per the WHATWG URL standard, treating only `&` as a field separator [#290](https://github.com/Kludex/python-multipart/pull/290).

python_multipart/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.0.30"
15+
__version__ = "0.0.31"
1616

1717
from .multipart import (
1818
BaseParser,

0 commit comments

Comments
 (0)