Skip to content

Commit 455e9ad

Browse files
Add release notes for 8.1.1 (#7704) (#7711)
Co-authored-by: Steve Gordon <[email protected]>
1 parent 757cac8 commit 455e9ad

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
[[release-notes-8.1.1]]
2+
== Release notes v8.1.1
3+
4+
[discrete]
5+
=== Bug fixes
6+
7+
- https://github.com/elastic/elasticsearch-net/pull/7667[#7667] Fix SQL missing
8+
Rows on QueryResponse (issue: https://github.com/elastic/elasticsearch-net/issues/7663[#7663])
9+
- https://github.com/elastic/elasticsearch-net/pull/7676[#7676] Ensure async client
10+
methods pass through cancellation token (issue: https://github.com/elastic/elasticsearch-net/issues/7665[#7665])
11+
12+
[discrete]
13+
=== Enhancements
14+
15+
- https://github.com/elastic/elasticsearch-net/pull/7684[#7684] Regenerated code
16+
with latest spec fixes for 8.7
17+
18+
[discrete]
19+
=== Breaking changes
20+
21+
This release includes the following breaking changes as a result of specification fixes:
22+
23+
[discrete]
24+
==== AsyncSearch and MultisearchBody KnnQuery
25+
26+
The type for the `SubmitAsyncSearchRequest.Knn` and `MultisearchBody.Knn` properties
27+
has changed to an `ICollection<KnnQuery>` from a single `KnnQuery` since it is
28+
possible to include more than one query in a request.
29+
30+
*_Before_*
31+
32+
[source,csharp]
33+
----
34+
public sealed partial class SubmitAsyncSearchRequest
35+
{
36+
...
37+
public Elastic.Clients.Elasticsearch.KnnQuery? Knn { get; set; }
38+
...
39+
}
40+
----
41+
42+
[source,csharp]
43+
----
44+
public sealed partial class MultisearchBody
45+
{
46+
...
47+
public Elastic.Clients.Elasticsearch.KnnQuery? Knn { get; set; }
48+
...
49+
}
50+
----
51+
52+
*_After_*
53+
54+
[source,csharp]
55+
----
56+
public sealed partial class SubmitAsyncSearchRequest
57+
{
58+
...
59+
public ICollection<Elastic.Clients.Elasticsearch.KnnQuery>? Knn { get; set; }
60+
...
61+
}
62+
----
63+
64+
[source,csharp]
65+
----
66+
public sealed partial class MultisearchBody
67+
{
68+
...
69+
public ICollection<Elastic.Clients.Elasticsearch.KnnQuery>? Knn { get; set; }
70+
...
71+
}
72+
----

docs/release-notes/release-notes.asciidoc

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
[discrete]
77
== Version 8.1
88

9+
* <<release-notes-8.1.1,Release notes v8.1.1>>
910
* <<release-notes-8.1.0,Release notes v8.1.0>>
1011

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

2627
include::breaking-change-policy.asciidoc[]
28+
include::release-notes-8.1.1.asciidoc[]
2729
include::release-notes-8.1.0.asciidoc[]
2830
include::release-notes-8.0.10.asciidoc[]
2931
include::release-notes-8.0.9.asciidoc[]

0 commit comments

Comments
 (0)