Releases: kemalcr/kemal
Releases · kemalcr/kemal
v0.17.0
- Reimplemented Request middleware / filter routing.
Now all requests will first go through the Middleware stack then Filters (before_*) and will finally reach the matching route.
Which is illustrated as,
Request -> Middleware -> Filter -> Route
- Rename
return_with
ashalt
. - Route declaration must start with
/
. Fixes #242 - Set default exception Content-Type to text/html. Fixes #202
- Add
only
andexclude
paths forKemal::Handler
. This change requires that all handlers must inherit fromKemal::Handler
.
For example this handler will only work on /
path. By default the HTTP method is GET
.
OnlyHandler < Kemal::Handler
only ["/"]
def call(env)
return call_next(env) unless only_match?(env)
puts "If the path is / i will be doing some processing here."
end
end
The handlers using exclude
will work on the paths that isn't specified. For example this handler will work on any routes other than /
.
ExcludeHandler < Kemal::Handler
exclude ["/"]
def call(env)
return call_next(env) unless only_match?(env)
puts "If the path is NOT / i will be doing some processing here."
end
end
- Close response on
halt
. (thanks @samueleaton). - Update
Radix
tov0.3.4
. error
handler now also yields error. For example you can get the error mesasage like
error 500 do |env, err|
err.message
end
- Update
multipart.cr
tov0.1.1
v0.16.1
- Improved Multipart support with more info on parsed files.
parse_multipart(env)
now yields
anUploadFile
object which has the following propertiesfield
,data
,meta
,`headers.
post "/upload" do |env|
parse_multipart(env) do |f|
image1 = f.data if f.field == "image1"
image2 = f.data if f.field == "image2"
puts f.meta
puts f.headers
"Upload complete"
end
end
v0.16.0
- Multipart support <3 (thanks @RX14). Now you can handle file uploads.
post "/upload" do |env|
parse_multipart(env) do |field, data|
image1 = data if field == "image1"
image2 = data if field == "image2"
"Upload complete"
end
end
- Make session configurable. Now you can specify session name and expire time wit
Kemal.config.session["name"] = "your_app"
Kemal.config.session["expire_time"] = 48.hours
- Session now supports more types. (String, Int32, Float64, Bool)
- Add
gzip
helper to enable / disable gzip compression on responses. - Static file caching with etag and gzip (thanks @crisward)
Kemal.run
now accepts port to listen.
v0.15.1
v0.15.0
- Add context store
KEMAL_ENV
respects toKemal.config.env
and needs to be explicitly set.Kemal::InitHandler
is introduced. Adds initial configuration, headers likeX-Powered-By
.- Add
send_file
to helpers. - Add mime types.
- Fix parsing JSON params when "charset" is present in "Content-Type" header.
- Use http-only cookie for session
- Inject STDOUT by default in CommonLogHandler
v0.14.1
v0.14.0
This is a major release with the following changes.
- Added
Session
middleware for easily adding session support to your application. (Thanks @mperham) - Added
CSRF
middleware to protect you against CSRF attacks. (Thanks @mperham) - Now you can customize 500 errors too.
- Kemal now only logs to
STDOUT
. - Removed
-e
flag from CLI. You can useKEMAL_ENV
to configure your environment. - Support user defined additional options as part of the Config
v0.13.0
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
.