Skip to content

Commit

Permalink
release 3.2.1: depend on liboauth2 1.4.2.1
Browse files Browse the repository at this point in the history
- with fixed iat slack validation defaults

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Jun 7, 2021
1 parent 3309c78 commit ddc0f03
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@
/ngx_oauth2_module.la
/nginx.conf
/.autotools
/.settings
/.settings
/config.guess~
/config.sub~
/configure~
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
06/07/2021
- depend on liboauth2 1.4.2.1 with fixed iat slack validation defaults
- release 3.2.1

06/03/2021
- use ngx_pcalloc instead of ngx_pnalloc to align memory access

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([ngx_oauth2_module],[3.2.0],[[email protected]])
AC_INIT([ngx_oauth2_module],[3.2.1],[[email protected]])

AM_INIT_AUTOMAKE([foreign no-define subdir-objects])
AC_CONFIG_MACRO_DIRS([m4])
Expand All @@ -25,11 +25,11 @@ AM_CONDITIONAL(HAVE_NGINX, [test x"$have_nginx" = "xyes"])
AC_SUBST(NGINX_CFLAGS)
AC_SUBST(NGINX_LIBS)

PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.0])
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.2.1])
AC_SUBST(OAUTH2_CFLAGS)
AC_SUBST(OAUTH2_LIBS)

PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.0])
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.2.1])
AC_SUBST(OAUTH2_NGINX_CFLAGS)
AC_SUBST(OAUTH2_NGINX_LIBS)

Expand Down

0 comments on commit ddc0f03

Please sign in to comment.