Skip to content

Releases: elastic/elasticsearch-java

v8.18.5

13 Aug 09:29
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.4...v8.18.5

v8.17.10

12 Aug 15:22
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.17.9...v8.17.10

v9.1.0

13 Aug 09:36
Compare
Choose a tag to compare

What's Changed

Check the official release notes - in particular the breaking changes.

Features and Enhancements:

  • Fixed GetAliasResponse bug (see #1033, #900)
  • Opentelemetry update to stable conventions

Full Changelog: v9.0.4...v9.1.0

v8.19.0

13 Aug 09:30
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.4...v8.19.0

v8.17.9

25 Jul 11:10
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.17.8...v8.17.9

v9.0.4

18 Jul 12:29
Compare
Choose a tag to compare

What's Changed

Reintroduced callback functions to allow in depth configuration of Rest5ClientBuilder, like the legacy RestClientBuilder has.
Examples:

Rest5ClientBuilder builder = Rest5Client
    .builder(new HttpHost("localhost", 9200))
    .setHttpClientConfigCallback(c -> c
        .setIOReactorConfig(IOReactorConfig.custom()
            .setIoThreadCount(1).build()
        )
    );
Rest5ClientBuilder builder = Rest5Client
    .builder(new HttpHost("localhost", 9200))
    .setRequestConfigCallback(r -> r
        .setConnectTimeout(Timeout.of(5000, TimeUnit.MILLISECONDS))
        .setResponseTimeout(Timeout.of(30000, TimeUnit.MILLISECONDS))
        .build()
    );

Full Changelog: v9.0.3...v9.0.4

v8.18.4

25 Jul 11:10
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.3...v8.18.4

v9.0.3

01 Jul 09:11
cec17e7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.2...v9.0.3

v8.18.3

01 Jul 09:11
212a483
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.2...v8.18.3

v8.17.8

01 Jul 09:10
238d93f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.17.7...v8.17.8