Skip to content

Releases: richardgirges/express-fileupload

v1.1.1-alpha.2

08 Feb 23:07
f9d7bbd
Compare
Choose a tag to compare

Bug Fixes

  • Fix multiple files upload in the same time with tempfile handler - #116 (thanks @RomanBurunkov)

v1.1.1-alpha.1

28 Dec 15:54
Compare
Choose a tag to compare

Updates

  • Ability to parse nested objects (thanks @JamesHemery) #51
  • Ability to upload to file system via temp file handling. This is a huge one since up until now, express-fileupload only supported in-memory uploads (thanks @zebralight)

Bug Fixes

  • latest library when uploading 3gb file crashes the library #106
  • Memory usage and leak problem with large file uploads #89
  • Do not parse nested objects #51

v1.0.0

18 Oct 15:12
Compare
Choose a tag to compare

Updates

  • Update docs to check for empty object #100

Bug Fixes

  • Pass Options to File Factory #98

v1.0.0-alpha.1

22 Sep 17:50
Compare
Choose a tag to compare

Breaking Changes

md5 property is now a function

Before:
req.files.profilePic.md5 // 69e2168484c82575f21bd8feca7aab86
After:
req.files.profilePic.md5() // 69e2168484c82575f21bd8feca7aab86

New Features

Bug Fixes

  • md5(buf) resulting in JavaScript heap out of memory #83
  • Uploading large files #93

v0.3.0

07 Oct 03:50
Compare
Choose a tag to compare

Fix for #50

NOTE: all versions moving forward will enforce support for Node 6+

v0.2.0

28 Aug 19:18
Compare
Choose a tag to compare

Breaking Changes

  • Support for Node.js v6 and above. No longer supporting versions of Node older than 6
  • .mv() now returns a Promise when callback argument is not provided

New Features

v0.1.4

30 Jun 17:02
Compare
Choose a tag to compare

Bugfixes

v0.1.3

30 Apr 05:02
Compare
Choose a tag to compare

Bugfixes

  • #21 safeFileName: Extensions are unexpectedly stripped out

New Features

v0.1.2

09 Mar 19:18
Compare
Choose a tag to compare

Bugfixes

  • #16 Upload Large file

New Features

v0.1.1

18 Feb 05:05
Compare
Choose a tag to compare

Breaking Changes

Breaking Change 1.) No more urlencoded support

As of v0.1.0, there is NO MORE application/x-www-form-urlencoded SUPPORT! Moving forward, express-fileupload is considered a "multipart" solution only. If you want to parse urlencoded requests, use body-parser.

Breaking Change 2.) Support for Node v4.x.x and above now

Usage with Node <4 is no longer supported. Use at your own risk.

Bugfixes

  • #6 Crashes when multipart request is empty (3d72084)
  • #9 & #11 body-parser interferes with express-fileupload and vice versa (92d7ad5)
  • #19 TypeError: callback is not a function (df3df26)

New Features

  • Unit testing and test coverage. Addresses #5 (266c10d)
  • Field array parsing (PR #20)