Releases: kemalcr/kemal-session
Releases · kemalcr/kemal-session
v1.0.0
v0.13.0
0.12.1
v0.12.0
v0.11.1
v0.11.0
v0.10.0
v0.9.0
v0.8.0
v0.7.0
This is a major release with following features.
- kemal-session-file is now deprecated and
FileStorage
support is built-intokemal-session
itself. (Thanks @neovintage ) Session::StorableObject
is not a class anymore and you can use it by includingSession::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