- The default URL path encoding has been changed to be more conservative. Previously the
!,$,&,',(,),*,+,,,;,=,@and:characters were left un-encoded, they will now be percent-encoded. If you require the previous behavior you can specify theorg.opensearch.path.encoding=HTTP_CLIENT_V4_EQUIVsystem property.
- Changed SearchAfter of SearchRequest type to FieldValue instead of String (#769)
- Consider using
FieldValue.ofto make string type values compatible.
Before:
.searchAfter("string")
.searchAfter("string1", "string2")
.searchAfter(List.of("String"))
After:
.searchAfter(FieldValue.of("string"))
.searchAfter(FieldValue.of("string1"), FieldValue.of("string2"))
.searchAfter(List.of(FieldValue.of("String")))
- The type of
DanglingIndex'screationDateMillisfield has been corrected from aStringto along.
- The type of the
total,successfulandfailedfields has been corrected fromNumbertoint. - The type of the
skippedfield has been corrected fromNumbertoInteger.