Releases: kemalcr/kemal
Releases · kemalcr/kemal
v0.12.0
This is a major release with following changes.
- Crystal 0.16.0 support.
- Custom error handlers. Now you can easily customize your error page.
error 403 do |env|
"Access forbidden!"
end
get "/" do |env|
env.response.status_code = 403
end
- Filters no longer demands you to return the
Context
.
v0.11.2
v0.11.0
v0.10.0
This is a major release with some breaking changes.
- _(breaking change)_ Parameter parser is totally rewritten from scratch. Which provides up to %400 performance increase.
Now you can access parameters with regarding parts env.params.query
, env.params.body
, env.params.json
, env.params.url
- _(breaking change)_
env.params
is deprecated. - Crystal 0.13.0 support.