Update news file and version number for version 0.8.0.

git-svn-id: https://modmellon.googlecode.com/svn/trunk@238 a716ebb1-153a-0410-b759-cfb97c6a1b53
This commit is contained in:
olavmrk 2014-06-24 08:24:36 +00:00
parent d7c779cdbf
commit a887d8cb3c
2 changed files with 33 additions and 1 deletions

32
NEWS
View File

@ -1,3 +1,35 @@
Version 0.8.0
---------------------------------------------------------------------------
* Add support for receiving HTTP-Artifact identifiers as POST data.
* Simplify caching headers.
* Map login errors into more appropriate HTTP error codes than
400 Bad Request.
* Add MellonNoSuccessErrorPage option to redirect to a error page on login
failure.
* Turn session storage into a dynamic pool of memory, which means that
attribute values (and other items) can have arbitrary sizes as long as
they fit in the session as a whole.
* Various bugfixes:
* Fix for compatibility with recent versions of CURL.
* Fix broken option MellonDoNotVerifyLogoutSignature.
* Fix deadlock that could occur during logout processing.
* Fix some compile warnings.
* Fix some NULL derefernce bugs that may lead to segmentation faults.
* Fix a minor memory leak during IdP metadata loading.
Version 0.7.0
---------------------------------------------------------------------------

View File

@ -1,4 +1,4 @@
AC_INIT([mod_auth_mellon],[0.7.0],[olav.morken@uninett.no])
AC_INIT([mod_auth_mellon],[0.8.0],[olav.morken@uninett.no])
# We require support for C99.
AC_PROG_CC_C99