File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
9
Changes with lua-resty-session 2.6 18 Apr 2016
2
10
3
11
*) Just cleanups and changed _VERSION to point correct version.
4
12
5
13
Changes with lua-resty-session 2.5 18 Apr 2016
6
14
7
- *) Bugfix: session.save close argument vast not defaulting to true.
15
+ *) Bugfix: session.save close argument was not defaulting to true.
8
16
9
17
Changes with lua-resty-session 2.4 17 Apr 2016
10
18
11
19
*) Feature: Cookie will now have SameSite attribute set as "Lax" by
12
20
default. You can turn it off or set to "Strict" by configuration.
13
21
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
15
23
was called without calling start first.
16
24
17
25
See Also: https://github.com/bungle/lua-resty-session/issues/27
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ local defaults = {
151
151
defaults .secret = var .session_secret or random (32 )
152
152
153
153
local session = {
154
- _VERSION = " 2.6 "
154
+ _VERSION = " 2.7 "
155
155
}
156
156
157
157
session .__index = session
You can’t perform that action at this time.
0 commit comments