Skip to content
Snippets Groups Projects
Commit c31eac42 authored by Olav Morken's avatar Olav Morken
Browse files

Add documentation updates from 1.9.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3121 44740490-163a-0410-bde0-09ae8108e29a
parent 360db771
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ See the upgrade notes for specific information about upgrading. ...@@ -8,7 +8,7 @@ See the upgrade notes for specific information about upgrading.
## Version 1.9 ## Version 1.9
Released 2012-05-XX. Released 2012-06-13.
* Restructure error templates to share a common base template. * Restructure error templates to share a common base template.
* Warnings about URL length limits from Suhosin PHP extension. * Warnings about URL length limits from Suhosin PHP extension.
...@@ -54,6 +54,7 @@ Released 2012-05-XX. ...@@ -54,6 +54,7 @@ Released 2012-05-XX.
* Remove unecessary check for PHP version >= 5.2 when setting cookies. * Remove unecessary check for PHP version >= 5.2 when setting cookies.
* Better error message when a module is missing a default-enable or default-disable file. * Better error message when a module is missing a default-enable or default-disable file.
* Support for validating RSA-SHA256 signatures. * Support for validating RSA-SHA256 signatures.
* Fixes for session exipration handling.
### `aselect` ### `aselect`
...@@ -146,6 +147,11 @@ Released 2012-05-XX. ...@@ -146,6 +147,11 @@ Released 2012-05-XX.
* Throw more relevant exceptions. * Throw more relevant exceptions.
* Update to latest version of the OpenID library. * Update to latest version of the OpenID library.
* Support for sending authentication requests via GET requests (with the prefer_http_redirect option). * Support for sending authentication requests via GET requests (with the prefer_http_redirect option).
* Prevent deprecation warnings from the OpenID library from causing deadlocks in the class loader.
### `openidProvider`
* Prevent deprecation warnings from the OpenID library from causing deadlocks in the class loader.
### `radius` ### `radius`
...@@ -165,6 +171,7 @@ Released 2012-05-XX. ...@@ -165,6 +171,7 @@ Released 2012-05-XX.
* Add support for parsing and serializing the <mdrpi:PublicationInfo> metadata extension. * Add support for parsing and serializing the <mdrpi:PublicationInfo> metadata extension.
* Ignore cacheDuration when validating metadata. * Ignore cacheDuration when validating metadata.
* Better error handling when receiving a SAML 2.0 artifact from an unknown entity. * Better error handling when receiving a SAML 2.0 artifact from an unknown entity.
* Fix parsing of <md:AssertionIDRequestService> metadata elements.
* IdP: Do not always trigger reauthentication when the authentication request contains a IdPList-element. * IdP: Do not always trigger reauthentication when the authentication request contains a IdPList-element.
* IdP: Add `saml:AllowCreate` to the state array. This makes it possible to access this parameter from authentication processing filters. * IdP: Add `saml:AllowCreate` to the state array. This makes it possible to access this parameter from authentication processing filters.
* IdP: Sign the artifact response message. * IdP: Sign the artifact response message.
...@@ -177,6 +184,7 @@ Released 2012-05-XX. ...@@ -177,6 +184,7 @@ Released 2012-05-XX.
* SP: Fix handling of authentication response without a saml:Issuer element. * SP: Fix handling of authentication response without a saml:Issuer element.
* SP: Support for specifying required attributes in metadata. * SP: Support for specifying required attributes in metadata.
* SP: Support for limiting the AssertionConsumerService endpoints listed in metadata. * SP: Support for limiting the AssertionConsumerService endpoints listed in metadata.
* SP: Fix session expiration when the IdP limits the session lifetime.
* `saml:PersistentNameID`: Fail when the user has more than one value in the user ID attribute. * `saml:PersistentNameID`: Fail when the user has more than one value in the user ID attribute.
* `saml:SQLPersistentNameID`: Persistent NameID stored in a SQL database. * `saml:SQLPersistentNameID`: Persistent NameID stored in a SQL database.
* `saml:AuthnContextClassRef`: New filter to set the AuthnContextClassRef in responses. * `saml:AuthnContextClassRef`: New filter to set the AuthnContextClassRef in responses.
......
...@@ -8,3 +8,4 @@ Upgrade notes for simpleSAMLphp 1.9 ...@@ -8,3 +8,4 @@ Upgrade notes for simpleSAMLphp 1.9
* The code to set cookies now requires PHP version >= 5.2. (PHP version 5.2.0 or newer has been the only supported version for a while, but it has in some cases been possible to run simpleSAMLphp with older versions.) * The code to set cookies now requires PHP version >= 5.2. (PHP version 5.2.0 or newer has been the only supported version for a while, but it has in some cases been possible to run simpleSAMLphp with older versions.)
* It used to be possible to set an array of endpoints for the SingleSignOnService in `saml20-idp-hosted.php`. That is no longer supported. * It used to be possible to set an array of endpoints for the SingleSignOnService in `saml20-idp-hosted.php`. That is no longer supported.
* The `aselect` module has been replaced with a new module. The new module gives us better error handling and support for request signing, but we lose support for A-Select Cross. * The `aselect` module has been replaced with a new module. The new module gives us better error handling and support for request signing, but we lose support for A-Select Cross.
* There has been various fixes in the session exipration handling. As a result of this, sessions may get a shorter lifetime (if the IdP places a limit on the lifetime, this limit will now be honored).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment