Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/release-notes/9-2-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,17 @@ try (ElasticsearchClient client = ElasticsearchClient.of(e -> e
```
::::

::::{dropdown} elasticsearch-rest5-client as seperate jar
The Elasticsearch Java client historically used a "Low Level Rest Client" (LLRC) based on Apache http client version 4 to handle http communications and distribution of requests among the nodes of a cluster.

This directory is a port of this client to Apache http client version 5 that is mostly a drop-in replacement, except for the initialization phase.

It is provided as an independent library as a convenience to users who have an existing code based on LLRC and would like to migrate to the more modern Apache http 5 library.

https://mvnrepository.com/artifact/co.elastic.clients/elasticsearch-rest5-client

::::

## Deprecations [elasticsearch-java-client-920-deprecations]

Nothing was deprecated in this version of the client.
Loading