Skip to content

Commit

Permalink
release 1.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Nov 17, 2017
1 parent a0e6ec6 commit ef4260e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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.0-1
- VERSION=1.5.1-1
- NAME=lua-resty-openidc
- ROCKSPEC=$NAME-$VERSION.rockspec
- LUAROCKS=2.3.0
Expand Down
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
tokens are considered valid. access tokens signed with an
unsupported algorithm are considered invalid. This is the same
behavior as has been present in 1.4.1. See #122
- release 1.5.1

11/15/2017
- fix return of access_token when renew_access_token_on_expiry = false ; see #121
Expand Down
3 changes: 2 additions & 1 deletion lib/resty/openidc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ local supported_token_auth_methods = {
}

local openidc = {
_VERSION = "1.5.0"
_VERSION = "1.5.1"
}
openidc.__index = openidc

Expand Down Expand Up @@ -737,6 +737,7 @@ local function openidc_authorization_response(opts, session)
if is_unsupported_signature_error then
ngx.log(ngx.WARN, "ignored id_token signature as algorithm '" .. jwt_obj.header.alg .. "' is not supported")
else
ngx.log(ngx.ERR, "id_token '" .. jwt_obj.header.alg .. "' signature verification failed")
return nil, err, session.data.original_url, session
end
end
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-openidc"
version = "1.5.0-1"
version = "1.5.1-1"
source = {
url = "git://github.com/zmartzone/lua-resty-openidc",
tag = "v1.5.0",
tag = "v1.5.1",
dir = "lua-resty-openidc"
}
description = {
Expand Down

0 comments on commit ef4260e

Please sign in to comment.