Skip to content

v0.1.1

Compare
Choose a tag to compare
@richardgirges richardgirges released this 18 Feb 05:05
· 485 commits to master since this release

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)