From 5f2aed616d16fa7ca04dc40e23d6941740cd634d Mon Sep 17 00:00:00 2001 From: Aapo Talvensaari Date: Wed, 16 Aug 2023 18:13:31 +0300 Subject: [PATCH] chore(*): release 4.0.5 --- Changes.md | 6 + docs/index.html | 5 +- docs/ldoc.css | 1 + docs/modules/resty.session.dshm.html | 5 +- docs/modules/resty.session.file.html | 5 +- docs/modules/resty.session.file.thread.html | 5 +- docs/modules/resty.session.file.utils.html | 5 +- docs/modules/resty.session.html | 61 +++++----- docs/modules/resty.session.memcached.html | 5 +- docs/modules/resty.session.mysql.html | 25 +++-- docs/modules/resty.session.postgres.html | 15 +-- docs/modules/resty.session.redis.cluster.html | 5 +- docs/modules/resty.session.redis.common.html | 5 +- docs/modules/resty.session.redis.html | 5 +- .../modules/resty.session.redis.sentinel.html | 5 +- docs/modules/resty.session.shm.html | 5 +- docs/modules/resty.session.utils.html | 105 +++++++++--------- lib/resty/session.lua | 2 +- ...spec => lua-resty-session-4.0.5-1.rockspec | 4 +- 19 files changed, 148 insertions(+), 126 deletions(-) rename lua-resty-session-4.0.4-1.rockspec => lua-resty-session-4.0.5-1.rockspec (97%) diff --git a/Changes.md b/Changes.md index 6b7366d0..db480679 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,12 @@ All notable changes to `lua-resty-session` will be documented in this file. + +## [4.0.5] - 2023-08-16 +### Fixed +- fix(dshm/memcached): add a missing return parameter as otherwise pool parameters are not respected, fix #171 + + ## [4.0.4] - 2023-06-05 ### Changed - chore(utils): remove dependency for lua_pack, fix #158 diff --git a/docs/index.html b/docs/index.html index 1d4320c8..71e267ae 100644 --- a/docs/index.html +++ b/docs/index.html @@ -29,6 +29,7 @@

resty.session

+

Modules

@@ -1362,8 +1363,8 @@

Returns:

-generated by LDoc 1.4.6 -Last updated 2023-06-05 17:05:22 +generated by LDoc 1.5.0 +Last updated 2023-08-16 18:11:28
diff --git a/lib/resty/session.lua b/lib/resty/session.lua index c9449e91..b9fce5ad 100644 --- a/lib/resty/session.lua +++ b/lib/resty/session.lua @@ -2194,7 +2194,7 @@ end local session = { - _VERSION = "4.0.4", + _VERSION = "4.0.5", metatable = metatable, } diff --git a/lua-resty-session-4.0.4-1.rockspec b/lua-resty-session-4.0.5-1.rockspec similarity index 97% rename from lua-resty-session-4.0.4-1.rockspec rename to lua-resty-session-4.0.5-1.rockspec index d080bbe3..c99e8d92 100644 --- a/lua-resty-session-4.0.4-1.rockspec +++ b/lua-resty-session-4.0.5-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-session" -version = "4.0.4-1" +version = "4.0.5-1" source = { url = "git+https://github.com/bungle/lua-resty-session.git", - tag = "v4.0.4", + tag = "v4.0.5", } description = { summary = "Session Library for OpenResty - Flexible and Secure",