Skip to content

Commit 3e33550

Browse files
committed
Release 2.6.0 version
1 parent 34b56f3 commit 3e33550

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
CHANGELOG
22
=========
33

4+
v.2.6.0
5+
-------
6+
* Set NAMEID_UNSPECIFIED as default NameIDFormat to prevent conflicts with IdPs that don't support NAMEID_PERSISTENT.
7+
* Now the SP is able to select the algorithm to be used on signatures (DSA_SHA1, RSA_SHA1, RSA_SHA256, RSA_SHA384, RSA_SHA512).
8+
* Change visibility of _decryptAssertion to protected.
9+
* Update xmlseclibs library.
10+
* Handle valid but uncommon dsig block with no URI in the reference.
11+
* login, logout and processSLO now return ->redirectTo instead of just call it.
12+
* Split the setting check methods. Now 1 method for IdP settings and other for SP settings.
13+
* Let the setting object to avoid the IdP setting check. required if we want to publish SP SAML Metadata when the IdP data is still not provided.
14+
415
v.2.5.0
516
-------
617
* Do accesible the ID of the object Logout Request (id attribute)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "onelogin/php-saml",
33
"description": "OneLogin PHP SAML Toolkit",
44
"license": "MIT",
5-
"version": "2.5.0",
5+
"version": "2.6.0",
66
"homepage": "https://onelogin.zendesk.com/hc/en-us/sections/200245634-SAML-Toolkits",
77
"keywords": ["saml", "saml2", "onelogin"],
88
"autoload": {

lib/Saml2/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ public static function addSign($xml, $key, $cert, $signAlgorithm = XMLSecurityKe
977977
* @param string|null $fingerprint The fingerprint of the public cert
978978
* @param string|null $fingerprintalg The algorithm used to get the fingerprint
979979
*/
980-
public static function validateSign ($xml, $cert = null, $fingerprint = null, $fingerprintalg = 'sha1')
980+
public static function validateSign($xml, $cert = null, $fingerprint = null, $fingerprintalg = 'sha1')
981981
{
982982
if ($xml instanceof DOMDocument) {
983983
$dom = clone $xml;

lib/Saml2/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"php-saml": {
3-
"version": "2.5.0",
4-
"released": "05/06/2015"
3+
"version": "2.6.0",
4+
"released": "17/07/2015"
55
}
66
}

0 commit comments

Comments
 (0)