You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.