Skip to content

Commit 8e99cfb

Browse files
committedOct 4, 2022
chore: update changelog and version
1 parent d285a08 commit 8e99cfb

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎CHANGELOG.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

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+
315

416
### 3.2.3
517

@@ -46,12 +58,12 @@
4658

4759
### 3.0.0
4860

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))
5062
* use modern URLSearchParams https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams internally
5163
* files and fields values are always arrays
5264
* fields with [] in the name do not receive special treatment
5365
* 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))
5567
* options.enabledPlugins must contain the plugin themselves instead of the plugins names
5668

5769

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formidable",
3-
"version": "3.2.4",
3+
"version": "3.2.5",
44
"license": "MIT",
55
"description": "A node.js module for parsing form data, especially file uploads.",
66
"homepage": "https://github.com/node-formidable/formidable",

0 commit comments

Comments
 (0)