We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Enabling ignoring unknown properties will make it easier for keycloak-config-cli to continue working with future Keycloak server versions.
Register an ObjectMapper with:
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
in KeycloakProvider
No response
Keycloak-config-cli can work against a higher Keycloak version if no new feature is needed.
The text was updated successfully, but these errors were encountered:
Ignore unknown json properties from newer Keycloak versions
9d84f89
keycloak-config-cli should work with future versions of Keycloak server fixes adorsys#1265
18ac338
7e95262
Successfully merging a pull request may close this issue.
Problem Statement
Enabling ignoring unknown properties will make it easier for keycloak-config-cli to continue working with future Keycloak server versions.
Proposed Solution
Register an ObjectMapper with:
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
in KeycloakProvider
Environment
Additional information
No response
Acceptance Criteria
Keycloak-config-cli can work against a higher Keycloak version if no new feature is needed.
The text was updated successfully, but these errors were encountered: