Skip to content

v0.7.0

Compare
Choose a tag to compare
@sdogruyol sdogruyol released this 04 Feb 10:21
· 55 commits to master since this release

This is a major release with following features.

  • kemal-session-file is now deprecated and FileStorage support is built-into kemal-session itself. (Thanks @neovintage )
  • Session::StorableObject is not a class anymore and you can use it by including Session::StorableObject (Thanks @neovintage )
class UserStorableObject
  JSON.mapping({
    id: Int32,
    name: String
  })
  include Session::StorableObject

  def initialize(@id : Int32, @name : String); end
end
  • Various bug fixes