Skip to content

Commit

Permalink
Merge branch 'hotfix-6.0.7' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Dec 10, 2024
2 parents 614e017 + a6eec69 commit 4eb9b42
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v6.0.7

* Fix for RequestedAuthnContext and AuthnContextClassRef being the wrong way around in built SAML requests

## v6.0.6

* Github build fixes
Expand Down
4 changes: 2 additions & 2 deletions services/saml/request/SamlRequestBuilder.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ component {
, required string nameIdFormat
, required string privateSigningKey
, required string publicSigningCert
, string acClassRef = "exact" // backward compat
, string acClassComparison = "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
, string acClassRef = "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
, string acClassComparison = "exact" // backward compat
) {
var nowish = getInstant();
var xml = _getXmlHeader();
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/SamlIdentityProviderServiceTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ component extends="testbox.system.BaseSpec" {
, postAuthHandler = "some.handler"
, entityIdSuffix = ""
, loginUrl = "/test/"
, acClassRef = "exact"
, acClassComparison = "test"
, acClassRef = "test"
, acClassComparison = "exact"
},
"JumpCloud" : {}
};
Expand Down

0 comments on commit 4eb9b42

Please sign in to comment.