Releases: richardgirges/express-fileupload
Releases · richardgirges/express-fileupload
1.1.9
1.1.8
1.1.7-alpha.4
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
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
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
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
Updates
- Some refactoring.
- Increased tests coverage.
Bug Fixes
- Fix issue #129: possible conflicts in temporary files names.
v1.1.3-alpha.1
Bug Fixes
Fix mv does not work accross filesystems #125
v1.1.2-alpha.1
Updates
- Added size for uploaded file and full md5 support(for in memory and temporary files).
v1.1.1-alpha.3
Bug Fixes
- File upload without
useTempFile
results in empty files - #118 (thanks @RomanBurunkov) - moveFromBuffer function unreachable - #122 (thanks @RomanBurunkov)