File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### 3.2.5
4
+
5
+ * fix: ([ #881 ] ( https://github.com/node-formidable/formidable/pull/881 ) ) fail earlier when maxFiles is exceeded
6
+
7
+ ### 3.2.4
8
+
9
+ * fix: ([ #857 ] ( https://github.com/node-formidable/formidable/pull/857 ) ) improve keep extension
10
+ * The code from before 3.2.4 already removed some characters from the file extension. But not always. So it was inconsistent.
11
+ * The new code cuts the file extension at the first invalid character (invalid in a file extension).
12
+ * The characters that are considered invalid inside a file extension are all except the . numbers and a-Z.
13
+ * This change only has an effect if filename option is not used and keepextension option is used
14
+
3
15
4
16
### 3.2.3
5
17
46
58
47
59
### 3.0.0
48
60
49
- * feat: remove options.multiples ([ 730] ( https://github.com/node-formidable/formidable/pull/730 ) )
61
+ * feat: remove options.multiples ([ # 730 ] ( https://github.com/node-formidable/formidable/pull/730 ) )
50
62
* use modern URLSearchParams https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams internally
51
63
* files and fields values are always arrays
52
64
* fields with [ ] in the name do not receive special treatment
53
65
* remove unused qs and querystring dependency
54
- * feat: Use ES modules ([ 727] ( https://github.com/node-formidable/formidable/pull/727 ) )
66
+ * feat: Use ES modules ([ # 727 ] ( https://github.com/node-formidable/formidable/pull/727 ) )
55
67
* options.enabledPlugins must contain the plugin themselves instead of the plugins names
56
68
57
69
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " formidable" ,
3
- "version" : " 3.2.4 " ,
3
+ "version" : " 3.2.5 " ,
4
4
"license" : " MIT" ,
5
5
"description" : " A node.js module for parsing form data, especially file uploads." ,
6
6
"homepage" : " https://github.com/node-formidable/formidable" ,
You can’t perform that action at this time.
0 commit comments