File tree 2 files changed +74
-0
lines changed
2 files changed +74
-0
lines changed Original file line number Diff line number Diff line change
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
+ ----
Original file line number Diff line number Diff line change 6
6
[discrete]
7
7
== Version 8.1
8
8
9
+ * <<release-notes-8.1.1,Release notes v8.1.1>>
9
10
* <<release-notes-8.1.0,Release notes v8.1.0>>
10
11
11
12
[discrete]
24
25
* <<release-notes-8.0.0,Release notes v8.0.0>>
25
26
26
27
include::breaking-change-policy.asciidoc[]
28
+ include::release-notes-8.1.1.asciidoc[]
27
29
include::release-notes-8.1.0.asciidoc[]
28
30
include::release-notes-8.0.10.asciidoc[]
29
31
include::release-notes-8.0.9.asciidoc[]
You can’t perform that action at this time.
0 commit comments