Skip to content

Commit d8e342b

Browse files
committed
Release 2.25
1 parent 404154f commit d8e342b

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Changes.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
All notable changes to `lua-resty-session` will be documented in this file.
44

5-
## [2.24] - Upcoming
5+
## [2.25] - 2019-11-06
6+
### Added
7+
- Add SSL support for the Redis storage option (#75) (thanks @tieske)
8+
- DSHM storage adapter (a distributed SHM storage based on Hazelcast for Nginx) (thanks @grrolland)
9+
10+
## [2.24] - 2019-07-09
611
### Fixed
712
- Avoid use unix socket and redis password with empty string
813
- Provide session id when closing, otherwise the lock is not deleted

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 – 2017, Aapo Talvensaari
1+
Copyright (c) 2014 – 2019, Aapo Talvensaari
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without
@@ -20,4 +20,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2020
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2121
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2222
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ The changes of every release of this module is recorded in [Changes.md](https://
10581058
`lua-resty-session` uses two clause BSD license.
10591059

10601060
```
1061-
Copyright (c) 2014 – 2017 Aapo Talvensaari
1061+
Copyright (c) 2014 – 2019 Aapo Talvensaari
10621062
All rights reserved.
10631063
10641064
Redistribution and use in source and binary forms, with or without modification,

lib/resty/session.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ local require = require
22
local var = ngx.var
33
local header = ngx.header
44
local concat = table.concat
5+
local ngx = ngx
56
local time = ngx.time
67
local http_time = ngx.http_time
78
local set_header = ngx.req.set_header
@@ -202,7 +203,7 @@ local function init()
202203
end
203204

204205
local session = {
205-
_VERSION = "2.24"
206+
_VERSION = "2.25"
206207
}
207208

208209
session.__index = session

0 commit comments

Comments
 (0)