Skip to content

Releases: elastic/elasticsearch-net

8.13.3

05 Apr 14:45
e0f6ce4
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.2...8.13.3

8.13.2

05 Apr 10:30
8602253
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.1...8.13.2

8.13.1

04 Apr 09:40
d3e81eb
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.0...8.13.1

8.13.0

03 Apr 14:39
0a4e6be
Compare
Choose a tag to compare

Introduction

This version of the client is the first one generated by a completely revised code generator. In addition to more than 200 new endpoints, which were not yet supported in 8.12.1, 8.13.0 finally supports all aggregations and many other previously unavailable features.

The support of these new functions is accompanied by some breaking changes. In the next section, we have been working to document all of these changes and show the new usage with code examples. If you come across any undocumented changes, please feel free to open an issue

Although the most common endpoints have been tested by hand, there is a possibility that this version contains a few minor bugs. If you come across such a bug, please let us know. Over the next few weeks, we will closely monitor the issue tracker and respond quickly with appropriate patch releases.

Breaking Changes

Aggregations

The aggregation name and the sub-aggregations property was pulled out of the actual aggregation variant classes. The usage changes from:

var aggExampleResponse = await client.SearchAsync<StockData>(s => s
    .Aggregations(aggs => aggs
        .DateHistogram("by-month", dh => dh
            .CalendarInterval(CalendarInterval.Month)
            .Field(fld => fld.Date)
            .Aggregations(subaggs => subaggs
                .Sum("trade-volumes", sum => sum.Field(fld => fld.Volume))
            )
        )
    )
);

to:

var aggExampleResponse = await client.SearchAsync<StockData>(s => s
    .Aggregations(aggs => aggs
        .Add("by-month", agg => agg
            .DateHistogram(dh => dh
                .CalendarInterval(CalendarInterval.Month)
                .Field(fld => fld.Date)
            )
            .Aggregations(subaggs => subaggs
                .Add("trade-volumes", agg => agg
                    .Sum(sum => sum.Field(fld => fld.Volume))
                )
            )
        )
    )
);

In the response, the sub-aggregations are no longer part of the bucket class itself, but must be accessed through the Aggregations property instead. Usage changes from:

var monthlyBuckets = aggExampleResponse.Aggregations?.GetDateHistogram("by-month")?.Buckets ?? Array.Empty<DateHistogramBucket>();

foreach (var monthlyBucket in monthlyBuckets)
{
    var volume = monthlyBucket.GetSum("trade-volumes");
    Console.WriteLine($"{monthlyBucket.Key} : {volume}");
}

to:

var monthlyBuckets = aggExampleResponse.Aggregations?.GetDateHistogram("by-month")?.Buckets ?? Array.Empty<DateHistogramBucket>();

foreach (var monthlyBucket in monthlyBuckets)
{
    var volume = monthlyBucket.Aggregations.GetSum("trade-volumes");
    Console.WriteLine($"{monthlyBucket.Key} : {volume}");
}

Please as well note, that it is no longer possible to compose a dictionary/list of aggregations using the && operator.

Query

Query variants no longer derive from SearchQuery. This has some implications on usage. Instead of being able to e.g. use logical operators on query variants like this:

var myQuery = new TermQuery("field") { Value = "a" } || new TermQuery("field") { Value = "b" };
// => BoolQuery variant

you have to wrap the query into the container first:

var myQuery = Query.Term(new("field") { Value = "a" }) || Query.Term(new("field") { Value = "b" });
// => Query container that wraps a BoolQuery variant

Deprecation of synchronous APIs

This version deprecates all synchronous endpoint API methods in the ElasticsearchClient class (and namespaced versions).

What's Changed

  • Regenerate client for 8.13 (#8071)

Full Changelog: 8.12.1...8.13.0

8.12.1

25 Mar 12:45
ba2b266
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 8.12.0...8.12.1

8.12.0

30 Jan 10:02
e94a8d9
Compare
Choose a tag to compare

8.11.0...8.12.0

Features & Enhancements

  • #8027 Regenerate client for 8.12

Bug Fixes

  • #8018 Fix serialisation of empty and single item Fields instances

View the full list of issues and PRs

8.11.0

15 Nov 09:02
eee1f08
Compare
Choose a tag to compare

8.10.0...8.11.0

Features & Enhancements

  • #7978 Regenerate client for 8.11

Bug fixes

  • #7979 Add workaround for stringified properties which are not marked properly in specification
  • #7965 Fix Stringified converters

View the full list of issues and PRs

8.10.0

04 Oct 13:33
e537b2e
Compare
Choose a tag to compare

8.9.3...8.10.0

Features & Enhancements

  • #7931 Refactor OpenTelemetry implementation with updated Transport (issue: #7885)

Bug fixes

View the full list of issues and PRs

8.9.3

14 Sep 07:08
9803079
Compare
Choose a tag to compare

8.9.2...8.9.3

Features & Enhancements

  • #7894 Reintroduce suggestion feature (issue: #7390)
  • #7923 Add PercentilesAggregation and PercentileRanksAggregation (issue: #7879)
  • #7914 Update Elastic.Transport dependency
  • #7920 Regenerate client using the latest specification

View the full list of issues and PRs

8.9.2

15 Aug 07:26
4060a50
Compare
Choose a tag to compare

8.9.1...8.9.2

Bug fixes

  • #7875 Fix aggregations property not being generated for MultisearchBody (issue #7873)
  • #7875 Remove invalid properties from SlowlogTresholds (issue #7865)
  • #7883 Remove leading / character from API urls (issue: #7878)

Features & Enhancements

  • #7869 Add support for SimpleQueryStringQuery.flags property (issue: #7863)

View the full list of issues and PRs