Kemal Session Versions Save

Simple session handler for Kemal

v1.0.0

3 years ago
  • Crystal 1.0.0 support :tada:
  • Kemal 1.0.0 support :tada:
  • Secure cookies with samesite #96. Thanks @kingsleysh :pray:

v0.13.0

3 years ago
  • Crystal 0.36.0 support

v0.12.1

4 years ago
  • Crystal 0.34.0 support

v0.12.0

4 years ago
  • Crystal 0.30.0 support 🎉

v0.11.1

5 years ago
  • Crystal 0.27.2 support 🎉
  • Kemal 0.25.2 support 🎉

v0.11.0

5 years ago
  • Crystal 0.27.0 support :tada:

v0.10.0

5 years ago
  • Crystal 0.25.0 support 🎉

v0.9.0

6 years ago
  • Crystal 0.24.1 support :tada:

v0.8.0

6 years ago

v0.7.0

7 years ago

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