We have integrated our application with Auth0, and previously, validations such as blocked user checks were working correctly. We are using the following Lock file:
<script src="https://cdn.auth0.com/js/lock/11.16.0/lock.min.js"></script>
However, after updating to Node.js 22, these validations are no longer working as expected.
Specifically, when a blocked user attempts to log in, it displays a flash message:
“The user is blocked.”
Now, instead of showing this message, an error is raised on our application side like
“OneLogin::RubySaml::ValidationError in Devise::SamlSessionsController#create
Issuer of the Assertion not found or multiple.”
Is this need any additional configuration for node 22 working with the auth lock script?
Could any one please assist us in resolving this issue?