form-data-parser@0.16.0
Breaking Changes📦 remixView on GitHub →
⚠ 1 breaking🔧 1 symbols
Summary
This release introduces a breaking change in `parseFormData()` by enforcing finite default limits on multipart submissions, requiring explicit configuration for large uploads. It also updates internal dependencies.
⚠️ Breaking Changes
- The behavior of `parseFormData()` has changed: it now enforces finite default limits for multipart `maxParts` and `maxTotalSize`. Multipart limit failures are now surfaced directly instead of being treated as generic parse noise. Apps accepting large multipart submissions must explicitly raise these limits if necessary.
Migration Steps
- If your application relies on accepting very large multipart submissions, you may need to explicitly configure and raise the `maxParts` and/or `maxTotalSize` limits in `parseFormData()` to avoid new failures.