Releases: adonisjs/bodyparser
Releases · adonisjs/bodyparser
Updating underlying dependencies
- chore(package): update dependencies e8a8c65
Updating underlying dependencies
- chore(package): update dependencies 968c964
Added move method to the bodyparser
The move
method moves the files uploaded in the tmp directory to a desired location.
Adding profiler calls to bodyparsing
Updating underlying dependencies
Improving multipart API and exposing `multipart.abort` method
Fixes for file streaming
- fix: ensure to call part.emit('end') and avoid duplicate errors 04c82a8
Revamping the API of self handling streams
Self handling streams have been quite painful in AdonisJs, since you have to manually validate the file size and extension.
However, with the newer API, we offload all this task from the end user, improving the overall experience
- chore(package): add meta/data to package file 6a3b83b
- chore(package): update publish files a5faad9
- refactor: improve bytes counting logic for multipart e9a4328
- docs: remove typedoc 05187c7
- chore: remove synk file 895af14
- feat: add instructions to copy config file 5243045
- refactor: making tmpFileName property optional d2ef138
- test: use tmpdir vs homedir for finding tmp files e614821
- refactor: rewrite of multipart file handling 0e88ef5
- refactor: exporting required interfaces d23e117
- chore(package): update dependencies 8b663a6
- chore(deps-dev): update cz-conventional-changelog requirement fro… (#25) 8efea67
Using magic number to detect file ext and mime type
Instead of relying on the file extension and header content type, now we make use of magic number to pull the file ext and mime type by inspecting it's content.