Skip to content

Commit db08bb8

Browse files
committed
Release 2.7.
1 parent 67d6d2b commit db08bb8

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGES

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
1+
Changes with lua-resty-session 2.7 18 May 2016
2+
3+
*) Feature: Redis storage adapter now supports Redis authentication.
4+
5+
See Also: https://github.com/bungle/lua-resty-session/pull/28
6+
7+
Thanks @cheng5533062
8+
19
Changes with lua-resty-session 2.6 18 Apr 2016
210

311
*) Just cleanups and changed _VERSION to point correct version.
412

513
Changes with lua-resty-session 2.5 18 Apr 2016
614

7-
*) Bugfix: session.save close argument vast not defaulting to true.
15+
*) Bugfix: session.save close argument was not defaulting to true.
816

917
Changes with lua-resty-session 2.4 17 Apr 2016
1018

1119
*) Feature: Cookie will now have SameSite attribute set as "Lax" by
1220
default. You can turn it off or set to "Strict" by configuration.
1321

14-
*) Change: Calling save will not also set session.id if the save
22+
*) Change: Calling save will now also set session.id if the save
1523
was called without calling start first.
1624

1725
See Also: https://github.com/bungle/lua-resty-session/issues/27

lib/resty/session.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ local defaults = {
151151
defaults.secret = var.session_secret or random(32)
152152

153153
local session = {
154-
_VERSION = "2.6"
154+
_VERSION = "2.7"
155155
}
156156

157157
session.__index = session

0 commit comments

Comments
 (0)