v0.16.0
This release is identical to the last.
Please note, this release has the first major BC break in a while. ctx.request.body
is now typed as unknown
by default instead of any
.
This means that in order to use the body, you must either:
- validate
- cast to any
Before this change, body was simply assumed to be any
like any other framework. Now, you must explicitly decide to validate or not validate to avoid an error.