Skip to content

Releases: richardgirges/express-fileupload

1.1.9

31 Jul 13:01
Compare
Choose a tag to compare

Updates:

Second prototype pollution security vulnerability fix when using processNested (#236)

1.1.8

29 Jul 18:06
Compare
Choose a tag to compare

Updates:

Fixed prototype pollution security vulnerability when using processNested (#236)

1.1.7-alpha.4

03 Apr 06:51
c7a6b9c
Compare
Choose a tag to compare
1.1.7-alpha.4 Pre-release
Pre-release

Updates:

  • Updated README.md thanks to @tycrek , @eartharoid, @Code42Cate
  • Some code refactoring to make it lighter and more readable.
  • Updated dependencies.

Fixes:

  • Fix empty file issue(#226)
  • Fix temp file write timing issue(#184). Thanks to @somewind
  • Add empty file name check for parseFileName, issue(#187).
  • Write Timing Crash #192
  • when file.on('data') event timeouts, the case isn't handled properly #202
  • Do not create empty temporary files for empty file fields #191

1.1.6

10 Sep 10:10
890794d
Compare
Choose a tag to compare

Updates

  • Add debug option and debug logging output for upload process.
  • Invoke cleanup in case of abortOnLimit=true to delete temporary file when limit reached(#155 ).
  • if possible, module uses fs.rename instead of copying + deleting to move uploaded files(#158).
  • Add busboy unpipe when closing connection. Thanks to @shel.
  • uploadTimeout(default is 60000 msec) option.
  • Add timeout check for data handler, which triggers cleanup of the temp files in case of no data come during time configured in option uploadTimeout.
  • Fixing vulnerability: middleware checks filename and cut off it if length more then 255 characters.

v1.1.5

07 Jun 10:39
f8116c4
Compare
Choose a tag to compare

Updates

  • Add uri decoding for file names see uriDecodeFileNames option in docs.
  • createParentPath now creates folder recursevly, thanks to @closingin
  • Add fileSize to Buffer.concat that should increase performance for in memory uploads.

v1.1.4

02 Apr 07:21
345ef9a
Compare
Choose a tag to compare

Updates

  • Custom limit handler function. See limitHandler option in docs.
  • Add description about empty file data when option useTempFiles used.

v1.1.3-alpha.2

19 Mar 06:07
ad3ff18
Compare
Choose a tag to compare
v1.1.3-alpha.2 Pre-release
Pre-release

Updates

  • Some refactoring.
  • Increased tests coverage.

Bug Fixes

  • Fix issue #129: possible conflicts in temporary files names.

v1.1.3-alpha.1

11 Mar 06:11
8b32412
Compare
Choose a tag to compare
v1.1.3-alpha.1 Pre-release
Pre-release

Bug Fixes

Fix mv does not work accross filesystems #125

v1.1.2-alpha.1

06 Mar 23:32
Compare
Choose a tag to compare

Updates

  • Added size for uploaded file and full md5 support(for in memory and temporary files).

v1.1.1-alpha.3

18 Feb 20:39
Compare
Choose a tag to compare

Bug Fixes