Releases: OtterJS/parsec
Releases · OtterJS/parsec
v0.2.1
v0.2.0
Warning
This update contains breaking changes!
Changed
- All middlewares that assign to
req.body
have been replaced with functions that return the parsed body orundefined
in scenarios they would have previously callednext()
.
Added
ParsedMultipartData
andParsedMultipartFormData
types are now exported
v0.1.3
Fixed
multipart
body parsers were not callingnext()
on success
v0.1.2
Fixed
- Error:
'charsetExists' is not a function
, related to usage oficonv-lite
from an ESM context raw(options)
options argument is now optional
v0.1.1
Fixed
- Import
iconv-lite
using a namespace import (import * as ... from "..."
) to mitigateSyntaxError: The requested module 'iconv-lite' does not provide an export named 'encodingExists'