Skip to content

Commit

Permalink
chore: update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
GrosSacASac committed Oct 4, 2022
1 parent d285a08 commit 8e99cfb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog

### 3.2.5

* fix: ([#881](https://github.com/node-formidable/formidable/pull/881)) fail earlier when maxFiles is exceeded

### 3.2.4

* fix: ([#857](https://github.com/node-formidable/formidable/pull/857)) improve keep extension
* The code from before 3.2.4 already removed some characters from the file extension. But not always. So it was inconsistent.
* The new code cuts the file extension at the first invalid character (invalid in a file extension).
* The characters that are considered invalid inside a file extension are all except the . numbers and a-Z.
* This change only has an effect if filename option is not used and keepextension option is used


### 3.2.3

Expand Down Expand Up @@ -46,12 +58,12 @@

### 3.0.0

* feat: remove options.multiples ([730](https://github.com/node-formidable/formidable/pull/730))
* feat: remove options.multiples ([#730](https://github.com/node-formidable/formidable/pull/730))
* use modern URLSearchParams https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams internally
* files and fields values are always arrays
* fields with [] in the name do not receive special treatment
* remove unused qs and querystring dependency
* feat: Use ES modules ([727](https://github.com/node-formidable/formidable/pull/727))
* feat: Use ES modules ([#727](https://github.com/node-formidable/formidable/pull/727))
* options.enabledPlugins must contain the plugin themselves instead of the plugins names


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "formidable",
"version": "3.2.4",
"version": "3.2.5",
"license": "MIT",
"description": "A node.js module for parsing form data, especially file uploads.",
"homepage": "https://github.com/node-formidable/formidable",
Expand Down

0 comments on commit 8e99cfb

Please sign in to comment.