multiparty
Advanced tools
Comparing version 3.2.5 to 3.2.6
@@ -0,1 +1,5 @@ | ||
### 3.2.6 | ||
* Fix maxFields to error on field after max | ||
### 3.2.5 | ||
@@ -2,0 +6,0 @@ |
@@ -456,3 +456,3 @@ exports.Form = Form; | ||
self.totalFieldCount += 1; | ||
if (self.totalFieldCount >= self.maxFields) { | ||
if (self.totalFieldCount > self.maxFields) { | ||
return new Error("maxFields " + self.maxFields + " exceeded."); | ||
@@ -459,0 +459,0 @@ } |
{ | ||
"name": "multiparty", | ||
"version": "3.2.5", | ||
"version": "3.2.6", | ||
"description": "multipart/form-data parser which supports streaming", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
37741
0