Skip to content

Commit adbf509

Browse files
committed
release 1.6.0: support OpenSSL 1.1.x
refer to updated lua-resty-jwt that supports OpenSSL 1.1.x; see: #162; thanks @cdbattags Signed-off-by: Hans Zandbelt <[email protected]>
1 parent b02ef81 commit adbf509

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77

88
env:
99
global:
10-
- VERSION=1.5.4-1
10+
- VERSION=1.6.0-1
1111
- NAME=lua-resty-openidc
1212
- ROCKSPEC=$NAME-$VERSION.rockspec
1313
- LUAROCKS=2.3.0

ChangeLog

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
06/07/2018
2+
- refer to updated lua-resty-jwt that supports OpenSSL 1.1.x ; see: #162; thanks @cdbattags
3+
- release 1.6.0
4+
15
05/29/2018
26
- when refreshing tokens the id token is now refreshed as well (if
37
included inside the token response); see #158; thanks @grrolland
48

59
05/24/2018
610
- add Cache-Control no-cache header to authorization requests to avoid replays of state/nonce;
7-
see https://github.com/zmartzone/mod_auth_openidc/issues/321
11+
see zmartzone/mod_auth_openidc#321
812

913
04/28/2018
1014
- release 1.5.4

lib/resty/openidc.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ local supported_token_auth_methods = {
6565
}
6666

6767
local openidc = {
68-
_VERSION = "1.5.4"
68+
_VERSION = "1.6.0"
6969
}
7070
openidc.__index = openidc
7171

lua-resty-openidc-1.5.4-1.rockspec lua-resty-openidc-1.6.0-1.rockspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-openidc"
2-
version = "1.5.4-1"
2+
version = "1.6.0-1"
33
source = {
44
url = "git://github.com/zmartzone/lua-resty-openidc",
5-
tag = "v1.5.4",
5+
tag = "v1.6.0",
66
dir = "lua-resty-openidc"
77
}
88
description = {

0 commit comments

Comments
 (0)