-
Notifications
You must be signed in to change notification settings - Fork 16
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
Support lists of primitives. #1249
Conversation
Generate changelog in
|
_request.putAllHeaderParams( | ||
"Custom-Header1", | ||
customListHeader.stream() | ||
.map(_parameterSerializer::serializeString) |
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.
Debated adding some shared code for this, but generally in favour of generating as much as we can, as that's compile-time validation and breakable, as opposed to library code.
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!
Released 1.128.0 |
Before this PR
Need a custom param encoder for List.
After this PR
==COMMIT_MSG==
Support list-of-primitives header/query params.
==COMMIT_MSG==
Possible downsides?