Skip to content

Releases: kemalcr/kemal-session

v1.0.0

23 Mar 05:48
fca592f
Compare
Choose a tag to compare
  • Crystal 1.0.0 support 🎉
  • Kemal 1.0.0 support 🎉
  • Secure cookies with samesite #96. Thanks @kingsleysh 🙏

v0.13.0

14 Feb 07:27
629a10c
Compare
Choose a tag to compare
  • Crystal 0.36.0 support

0.12.1

16 May 15:33
84f1f94
Compare
Choose a tag to compare
  • Crystal 0.34.0 support

v0.12.0

30 Aug 11:30
4ea84ee
Compare
Choose a tag to compare
  • Crystal 0.30.0 support 🎉

v0.11.1

09 Feb 15:18
Compare
Choose a tag to compare
  • Crystal 0.27.2 support 🎉
  • Kemal 0.25.2 support 🎉

v0.11.0

06 Nov 17:02
Compare
Choose a tag to compare
  • Crystal 0.27.0 support 🎉

v0.10.0

17 Jun 17:39
Compare
Choose a tag to compare
  • Crystal 0.25.0 support 🎉

v0.9.0

02 Jan 12:29
Compare
Choose a tag to compare
  • Crystal 0.24.1 support 🎉

v0.8.0

02 Jul 12:16
Compare
Choose a tag to compare
Remove features already implemented from readme

v0.7.0

04 Feb 10:21
Compare
Choose a tag to compare

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