multipart-v0.8.0

cheshire-cat-ai/coremultipart-v0.8.0Jun 21, 2026by JohnTitor

AI Summary

Introduces new multipart form builders and fixes parsing issues, adding a memory buffer limit to prevent unbounded growth.

Key Highlights

  • Support for `Option<Vec<T>>` fields in MultipartForm
  • Added multi-field multipart payload builders to test module
  • Bounded internal multipart parser buffering (64KB cap) to prevent memory growth

Breaking Changes

  • Unbounded memory growth on malformed bodies is now capped at 64KB

New Features

  • `MultipartConfig::buffer_limit` configuration

Full Release Notes

## 0.8.0

- Add multi-field multipart payload builders to `actix_multipart::test`. [#3575]
- Add `MultipartForm` support for `Option<Vec<T>>` fields. [#3577]
- Bound internal multipart parser buffering to prevent unbounded memory growth on malformed bodies.
  - behavior change notice: There's now a cap for buffering (64KB). It can be changed with `MultipartConfig::buffer_limit`.
- Fix user-triggerable panic when parsing multipart boundaries.
- Minimum supported Rust version (MSRV) is now 1.88.
- Update `rand` dependency to `0.10`.

[#3577]: https://github.com/actix/actix-web/pull/3577
[#3575]: https://github.com/actix/actix-web/issues/3575