Skip to content

[Backport 8.6] Add release notes for 8.1.0. #7647

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
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
90 changes: 90 additions & 0 deletions docs/release-notes/release-notes-8.1.0.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
[[release-notes-8.1.0]]
== Release notes v8.1.0

A core theme of the 8.1.0 release is the reintroduction of many features which
were missing from the 8.0 releases. The 8.x client still does NOT have full
feature parity with NEST and we continue to work on closing these gaps.

[discrete]
=== Enhancements

[discrete]
==== Support for additional endpoints

Adds support for the following endpoints:

- Cluster.AllocationExplain
- Cluster.Stats
- Cluster.PendingTasks
- DanglingIndices.List
- Enrich.DeletePolicy
- Enrich.ExecutePolicy
- Enrich.PutPolicy
- Enrich.Stats
- Graph.Explore
- IndexManagement.UpdateAliases
- Ingest.GeoIpStats
- Ingest.GetPipeline
- Ingest.ProcessorGrok
- Ingest.PutPipeline
- Ingest.Simulate
- MultiTermVectors
- RenderSearchTemplate
- SearchTemplate
- Tasks.Cancel
- Tasks.Get
- Tasks.List
- TermVectors

[discrete]
==== Support for additional queries

Adds support for the following queries:

- Geo distance
- Geo bounding box
- Geo polygon
- Pinned
- Range queries (date and numeric)
- Raw (can be used as a client specific fallback for missing queries by sending raw JSON)

[discrete]
==== Support for additional aggregations

Adds support for the following aggregations:

- Boxplot
- Bucket sort
- Composite
- Cumulative sum
- Geo bounds
- Geo centroid
- Geo distance
- Geo line
- Geohash grid
- Geohex grid
- Geotile grid
- IP prefix
- Multi terms
- Rare terms
- Significant terms
- Weighted average

[discrete]
==== Other enhancements

- *Add support for geo distance sorting.*
Adds support for specifying a `GeoDistanceSort` on `SortOptions`.
- *Add support for weight score on FunctionScore.*
Adds support for specifying a weight score value on the `FunctionScore` type.
- *Code generate XML doc comments.*
The code generator now adds XML doc comments to types and members when present in
the Elasticsearch specification. This acts as an aid when exploring the API in an
IDE such as Visual Studio.
- *Add additional client overloads.*
Adds additional overloads to the `ElasticsearchClient` and namespaced sub-clients
that allow consumers to provide a descriptor instance used when building requests.
- *Add support for bool query operators in Query DSL for object initializer syntax*
Adds support for using operators `&&``, `||`, `!` and `+` to build up bool queries
using the object initializer syntax. NOTE: Operators are not yet supported for
combining queires defined using the fluent descriptor syntax.
6 changes: 6 additions & 0 deletions docs/release-notes/release-notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@

* <<breaking-changes-policy,Breaking changes policy>>

[discrete]
== Version 8.1

* <<release-notes-8.1.0,Release notes v8.1.0>>

[discrete]
== Version 8.0

Expand All @@ -19,6 +24,7 @@
* <<release-notes-8.0.0,Release notes v8.0.0>>

include::breaking-change-policy.asciidoc[]
include::release-notes-8.1.0.asciidoc[]
include::release-notes-8.0.10.asciidoc[]
include::release-notes-8.0.9.asciidoc[]
include::release-notes-8.0.8.asciidoc[]
Expand Down