diff --git a/Changes.md b/Changes.md index 27c026d2..f67bba23 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,11 @@ All notable changes to `lua-resty-session` will be documented in this file. +## [4.1.5] - TBD +### Changed +- fix(*): timeout remember cookies instead of deleting + + ## [4.1.4] - 2025-08-11 ### Fixed - fix(redis-cluster): correctly pass username and password diff --git a/README.md b/README.md index ae131fb0..8f3f2e45 100644 --- a/README.md +++ b/README.md @@ -1386,10 +1386,9 @@ end -- @tparam[opt] string old_key old session id -- @tparam string stale_ttl stale ttl -- @tparam[opt] table metadata table of metadata --- @tparam boolean remember whether storing persistent session or not -- @treturn true|nil ok -- @treturn string error message -function metatable:set(name, key, value, ttl, current_time, old_key, stale_ttl, metadata, remember) +function metatable:set(name, key, value, ttl, current_time, old_key, stale_ttl, metadata) -- NYI end diff --git a/docs/index.html b/docs/index.html index 242ace42..cba09bb1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -121,7 +121,7 @@