Skip to content

Commit 24da8b1

Browse files
committed
release 1.6.1: add customized expiration time jwk_expires_in
used for Discovery documents and JWKs cache; thanks @dhlin Signed-off-by: Hans Zandbelt <[email protected]>
1 parent a25f846 commit 24da8b1

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
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.6.0-1
10+
- VERSION=1.6.1-1
1111
- NAME=lua-resty-openidc
1212
- ROCKSPEC=$NAME-$VERSION.rockspec
1313
- LUAROCKS=2.3.0

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ reporting bugs, providing fixes, suggesting useful features or other:
2525
Venkatesh Marepalli <https://github.com/venkatmarepalli>
2626
Grégoire Rolland <https://github.com/grrolland>
2727
Patrice Amiel <https://github.com/pamiel>
28+
Thomas Leplus <https://github.com/thomasleplus>
29+
Donghang Lin <https://github.com/dhlin>

ChangeLog

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
07/05/2018
2+
- add customized expiration time option for discovery and jwk cache; thanks @dhlin
3+
- release 1.6.1
4+
15
06/26/2018
26
- signature verification failed for RSA keys of a length different
3-
from 2048 bit when the JWK used a specific format ; see #170
7+
from 2048 bit when the JWK used a specific format; see #170
48

59
06/19/2018
610
- added post_logout_redirect_uri parameter that can be used to set
7-
the target after logging out of the OpenID Connect Provider ; see #168;
8-
thanks @thomasleplus
11+
the target after logging out of the OpenID Connect Provider ; see #168; thanks @thomasleplus
912

1013
06/07/2018
1114
- refer to updated lua-resty-jwt that supports OpenSSL 1.1.x ; see: #162; thanks @cdbattags

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.6.0"
68+
_VERSION = "1.6.1"
6969
}
7070
openidc.__index = openidc
7171

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

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

0 commit comments

Comments
 (0)