Skip to content

Commit

Permalink
release 1.6.0: support OpenSSL 1.1.x
Browse files Browse the repository at this point in the history
refer to updated lua-resty-jwt that supports OpenSSL 1.1.x; see: #162;
thanks @cdbattags

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Jun 7, 2018
1 parent b02ef81 commit adbf509
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.5.4-1
- VERSION=1.6.0-1
- NAME=lua-resty-openidc
- ROCKSPEC=$NAME-$VERSION.rockspec
- LUAROCKS=2.3.0
Expand Down
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
06/07/2018
- refer to updated lua-resty-jwt that supports OpenSSL 1.1.x ; see: #162; thanks @cdbattags
- release 1.6.0

05/29/2018
- when refreshing tokens the id token is now refreshed as well (if
included inside the token response); see #158; thanks @grrolland

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

04/28/2018
- release 1.5.4
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.5.4"
_VERSION = "1.6.0"
}
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.5.4-1"
version = "1.6.0-1"
source = {
url = "git://github.com/zmartzone/lua-resty-openidc",
tag = "v1.5.4",
tag = "v1.6.0",
dir = "lua-resty-openidc"
}
description = {
Expand Down

0 comments on commit adbf509

Please sign in to comment.