Skip to content
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

[Backport 8.3] Add release notes for 8.1.1. #7707

Merged
merged 1 commit into from
May 5, 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
72 changes: 72 additions & 0 deletions docs/release-notes/release-notes-8.1.1.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
[[release-notes-8.1.1]]
== Release notes v8.1.1

[discrete]
=== Bug fixes

- https://github.com/elastic/elasticsearch-net/pull/7667[#7667] Fix SQL missing
Rows on QueryResponse (issue: https://github.com/elastic/elasticsearch-net/issues/7663[#7663])
- https://github.com/elastic/elasticsearch-net/pull/7676[#7676] Ensure async client
methods pass through cancellation token (issue: https://github.com/elastic/elasticsearch-net/issues/7665[#7665])

[discrete]
=== Enhancements

- https://github.com/elastic/elasticsearch-net/pull/7684[#7684] Regenerated code
with latest spec fixes for 8.7

[discrete]
=== Breaking changes

This release includes the following breaking changes as a result of specification fixes:

[discrete]
==== AsyncSearch and MultisearchBody KnnQuery

The type for the `SubmitAsyncSearchRequest.Knn` and `MultisearchBody.Knn` properties
has changed to an `ICollection<KnnQuery>` from a single `KnnQuery` since it is
possible to include more than one query in a request.

*_Before_*

[source,csharp]
----
public sealed partial class SubmitAsyncSearchRequest
{
...
public Elastic.Clients.Elasticsearch.KnnQuery? Knn { get; set; }
...
}
----

[source,csharp]
----
public sealed partial class MultisearchBody
{
...
public Elastic.Clients.Elasticsearch.KnnQuery? Knn { get; set; }
...
}
----

*_After_*

[source,csharp]
----
public sealed partial class SubmitAsyncSearchRequest
{
...
public ICollection<Elastic.Clients.Elasticsearch.KnnQuery>? Knn { get; set; }
...
}
----

[source,csharp]
----
public sealed partial class MultisearchBody
{
...
public ICollection<Elastic.Clients.Elasticsearch.KnnQuery>? Knn { get; set; }
...
}
----
2 changes: 2 additions & 0 deletions docs/release-notes/release-notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[discrete]
== Version 8.1

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

[discrete]
Expand All @@ -24,6 +25,7 @@
* <<release-notes-8.0.0,Release notes v8.0.0>>

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