Releases: kemalcr/kemal-session
Releases · kemalcr/kemal-session
Release list
v1.6.0
- Enforce
config.timeouton read and write forMemoryEngineandFileEngine: expired sessions are rejected immediately (no need to wait for GC), stale data is not revived on write, and expired file sessions are removed from disk #117. Thanks @sdogruyol 🙏
v1.5.0
- Default session cookie
SameSitetoLax(previously unset). Improves protection against cross-site cookie sending while keeping typical first-visit flows working; useconfig.samesite = nilto omit the attribute, orHTTP::Cookie::SameSite::Strictfor a stricter policy. Thanks @past3l 🙏
v1.4.0
- Prevent empty sessions from being stored (lazy session creation) #113 Thanks @sdogruyol 🙏
- Add flash functionality #112. Thanks @sdogruyol 🙏