Skip to content

v0.16.0

Compare
Choose a tag to compare
@evert evert released this 30 Jan 07:17
d5c3d0b

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.