Releases: curveball/core
Releases · curveball/core
v0.16.3
v0.16.2
v0.16.1
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.
v0.16.0-beta.0
- BC Break:
Request.body
is now typed asunknown
instead ofany
. This
forces users to either validate the body, or cast toany
. - It's now possible to write directly to response streams by setting
response.body to a callback.
v0.15.0
v0.14.3
- #155 -
listen
andlistenWs
now both have a secondhost
argument to
bind to a specific interface. (@Nicholaiii) - #145 -
request.headers
andresponse.headers
now have agetMany()
function to get a list of header values for a given header name. (@Nicholaiii)