Skip to content

Releases: elastic/elasticsearch-net

8.14.4

01 Jul 10:09
a51e869
Compare
Choose a tag to compare

What's Changed

  • Generate untagged variants by @flobernd in #8249
    • This adds proper support for:
      • RangeQuery
      • DistanceFeatureQuery
      • DecayFunction

Full Changelog: 8.14.3...8.14.4

Breaking Changes

RangeQuery is no longer a union. Usage changes from:

var response = await client.SearchAsync<Person>(q => q.Query(q => q.Range(new RangeQuery(new NumberRangeQuery("age"!))
{
    Gt = 42
})));

to:

var response = await client.SearchAsync<Person>(q => q.Query(q => q.Range(new NumberRangeQuery("age"!)
{
    Gt = 42
})));

or alternatively using a full descriptor based syntax:

await client.SearchAsync<Person>(q => q.Query(q => q.Range(r => r.NumberRange(n => n.Field("age"!).Gte(42)))));

The built-in range query types are: NumberRangeQuery, DateRangeQuery and TermRangeQuery. For an untyped version that accepts all object types, you can additionally use UntypedRangeQuery.

8.14.3

20 Jun 11:05
2015660
Compare
Choose a tag to compare

What's Changed

  • Regenerate client using the latest spec by @flobernd in #8245
    • Fixes deserialization of DynamicTemplate
    • Fixes deserialization of some "single-or-many" types
    • General specification driven improvements and bug-fixes

Full Changelog: 8.14.2...8.14.3

Serverless 1.1.0

28 Jun 12:02
a65b06b
Compare
Choose a tag to compare

What's Changed

8.14.2

13 Jun 08:20
91b0bde
Compare
Choose a tag to compare

What's Changed

  • Regenerate client using the latest spec by @flobernd in #8234
    • Fix InferTrainedModel endpoint
    • Fix deserialization of IndexSettings

New Contributors

Full Changelog: 8.14.1...8.14.2

8.14.1

11 Jun 13:34
3d795e8
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 8.14.0...8.14.1

8.14.0

06 Jun 07:59
f8c8ed2
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.15...8.14.0

8.13.15

29 May 10:22
e430f1d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.14...8.13.15

8.13.14

29 May 09:19
04fb67a
Compare
Choose a tag to compare

What's Changed

  • Fix type of settings in PutTemplate to provide much easier access to the individual settings
  • Fix deserialization of unknown Analysis.INormalizer variants
  • Fix deserialization of mapping limits
  • More specification improvements

Full Changelog: 8.13.13...8.13.14

8.13.13

28 May 11:49
1bcfeee
Compare
Choose a tag to compare

What's Changed

Full Changelog: 8.13.12...8.13.13

8.13.12

02 May 08:11
946db96
Compare
Choose a tag to compare

What's Changed

  • Fix MultiSearch functionality by @flobernd in #8176
    • Implement IStreamSerializable for array request descriptors
    • Do not automatically infer index for optional Indices parameters

Full Changelog: 8.13.11...8.13.12