-
Notifications
You must be signed in to change notification settings - Fork 25.1k
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
Deprecate camelCase parameters used by SAML APIs #73984
Conversation
Pinging @elastic/es-security (Team:Security) |
Ping @elastic/kibana-security. We're considering deprecating the current parameter you use, and switching it to |
Thanks for the ping. Sure, we'll track this PR and update Kibana code base for 7.14 as soon as updated ES snapshot reaches our CI. |
...ain/java/org/elasticsearch/xpack/security/rest/action/saml/RestSamlCompleteLogoutAction.java
Outdated
Show resolved
Hide resolved
…ecurity/rest/action/saml/RestSamlCompleteLogoutAction.java Co-authored-by: Tim Vernum <tim@adjective.org>
@elasticmachine update branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Both SAML complete logout and SAML invalidate session APIs use a camelCase request parameter, queryString, while the convention is to use snake_case parameters. This PR deprecates queryString and replaces it with query_string. It is an error to if a request specifies both of them.
Both SAML complete logout and SAML invalidate session APIs use a camelCase request parameter, queryString, while the convention is to use snake_case parameters. This PR deprecates queryString and replaces it with query_string. It is an error to if a request specifies both of them.
Both SAML complete logout and SAML invalidate session APIs use a camelCase request parameter,
queryString
, while the convention is to use snake_case parameters. This PR deprecatesqueryString
and replaces it withquery_string
. It is an error to if a request specifies both of them.Resolves: #73543