Skip to content

Commit 4ff6454

Browse files
committedJul 16, 2019
release 1.7.2
Signed-off-by: Hans Zandbelt <[email protected]>
1 parent cdaf824 commit 4ff6454

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed
 

‎.github/issue_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A new issue about a bug should be verified with a minimized example.
77

88
###### Environment
99

10-
- lua-resty-openidc version (e.g. 1.7.0)
10+
- lua-resty-openidc version (e.g. 1.7.2)
1111
- OpenID Connect provider (e.g. Keycloak, Azure AD)
1212

1313
###### Expected behaviour

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

‎ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
07/15/2019
2+
- release 1.7.2
3+
14
07/09/2019
25
- added unauth_action='deny' to reject unauthenticated requests rather
36
than start the authorization code grant flow; see #271; based on

‎lib/resty/openidc.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ local supported_token_auth_methods = {
8484
}
8585

8686
local openidc = {
87-
_VERSION = "1.7.1"
87+
_VERSION = "1.7.2"
8888
}
8989
openidc.__index = openidc
9090

‎lua-resty-openidc-1.7.1-1.rockspec renamed to ‎lua-resty-openidc-1.7.2-1.rockspec

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

0 commit comments

Comments
 (0)
Please sign in to comment.