-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Steve Gordon <[email protected]>
- Loading branch information
1 parent
0bf1dd1
commit b1f628c
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
... | ||
} | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters