Skip to content

Commit

Permalink
release 1.6.1: add customized expiration time jwk_expires_in
Browse files Browse the repository at this point in the history
used for Discovery documents and JWKs cache; thanks @dhlin

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Jul 5, 2018
1 parent a25f846 commit 24da8b1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:

env:
global:
- VERSION=1.6.0-1
- VERSION=1.6.1-1
- NAME=lua-resty-openidc
- ROCKSPEC=$NAME-$VERSION.rockspec
- LUAROCKS=2.3.0
Expand Down
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ reporting bugs, providing fixes, suggesting useful features or other:
Venkatesh Marepalli <https://github.com/venkatmarepalli>
Grégoire Rolland <https://github.com/grrolland>
Patrice Amiel <https://github.com/pamiel>
Thomas Leplus <https://github.com/thomasleplus>
Donghang Lin <https://github.com/dhlin>
9 changes: 6 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
07/05/2018
- add customized expiration time option for discovery and jwk cache; thanks @dhlin
- release 1.6.1

06/26/2018
- signature verification failed for RSA keys of a length different
from 2048 bit when the JWK used a specific format ; see #170
from 2048 bit when the JWK used a specific format; see #170

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

06/07/2018
- refer to updated lua-resty-jwt that supports OpenSSL 1.1.x ; see: #162; thanks @cdbattags
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/openidc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ local supported_token_auth_methods = {
}

local openidc = {
_VERSION = "1.6.0"
_VERSION = "1.6.1"
}
openidc.__index = openidc

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-openidc"
version = "1.6.0-1"
version = "1.6.1-1"
source = {
url = "git://github.com/zmartzone/lua-resty-openidc",
tag = "v1.6.0",
tag = "v1.6.1",
dir = "lua-resty-openidc"
}
description = {
Expand Down

0 comments on commit 24da8b1

Please sign in to comment.