Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix integration test failures due to adding back sms OTP regex configuration #18469

Merged
merged 2 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@
"displayName": "User self registration SMS OTP expiry time",
"description": "Specify the expiry time in minutes for the SMS OTP."
},
{
"name": "SelfRegistration.SMSOTP.Regex",
"value": "[a-zA-Z0-9]{6}",
"displayName": "User self registration SMS OTP regex",
"description": "Regex for SMS OTP in format [allowed characters]{length}. Supported character ranges are a-z, A-Z, 0-9. Minimum OTP length is 4"
},
{
"name": "SelfRegistration.CallbackRegex",
"value": "[https://localhost:9443].*[/authenticationendpoint/login.do]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@
"name": "SelfRegistration.VerificationCode.SMSOTP.ExpiryTime",
"value": "1"
},
{
"name": "SelfRegistration.SMSOTP.Regex",
"value": "[a-zA-Z0-9]{6}"
},
{
"name": "SelfRegistration.CallbackRegex",
"value": "https:\\/\\/localhost:9853\\/.*"
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2283,7 +2283,7 @@
<properties>

<!--Carbon Identity Framework Version-->
<carbon.identity.framework.version>5.25.596</carbon.identity.framework.version>
<carbon.identity.framework.version>5.25.597</carbon.identity.framework.version>
<carbon.identity.framework.version.range>[5.14.67, 6.0.0]</carbon.identity.framework.version.range>

<!--SAML Common Utils Version-->
Expand All @@ -2294,7 +2294,7 @@
<carbon.consent.mgt.version>2.5.2</carbon.consent.mgt.version>

<!--Identity Governance Version-->
<identity.governance.version>1.8.96</identity.governance.version>
<identity.governance.version>1.8.97</identity.governance.version>

<!--Identity Carbon Versions-->
<identity.carbon.auth.saml2.version>5.8.5</identity.carbon.auth.saml2.version>
Expand Down