diff --git a/CHANGELOG b/CHANGELOG index 1fbb191..18ad6e9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +v0.14 (2020-12-17) +------------------ +- Respect X-Forwarded-Proto header for method selection + (Contributed by Ludek Navratil) + +- Build via automake (Contributed by @rmacd) + +- Fix OpenSSL compatibility issues (Contributed by @rmacd) + +- PHP login: Fix occasional invalid signature (suggested by @michelcve) + +- PHP login: Fix bauth when password contains ':' (suggested by @ggramaize) + +- Maximum uid length increased to 255 chars (to match Apache spec) + (Contributed by @rmacd) + v0.13 (2018-10-15) ------------------ - Add compatibility with OpenSSL 1.1 API (Contributed by Vulpeculus) diff --git a/build.sh b/build.sh index 735f480..2a7a49d 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ set -e set +x MOD=mod_auth_pubtkt -VERSION=0.13 +VERSION=0.14 # nuke rubbish we don't want find . -type f -name Makefile -delete diff --git a/configure.ac b/configure.ac index bcb371b..7e25f08 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([mod_auth_pubtkt],[0.13],[https://github.com/manuelkasper/mod_auth_pubtkt]) +AC_INIT([mod_auth_pubtkt],[0.14],[https://github.com/manuelkasper/mod_auth_pubtkt]) AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/mod_auth_pubtkt.spec b/mod_auth_pubtkt.spec index e6b277c..009e6c3 100644 --- a/mod_auth_pubtkt.spec +++ b/mod_auth_pubtkt.spec @@ -1,6 +1,6 @@ Summary: Ticket-based authorization module for the Apache HTTP Server Name: mod_auth_pubtkt -Version: 0.13 +Version: 0.14 Release: 0 License: Apache Group: Applications/System @@ -45,6 +45,9 @@ rm -rf %{buildroot} %config %{_sysconfdir}/httpd/conf.d/%{conf_file} %changelog +* Thu Dec 17 2020 Manuel Kasper 0.14-0 +- Updated to latest version of mod_auth_pubtkt [0.14] + * Wed Jul 24 2019 Ron 0.13-0 - Bump version [0.13]