We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096800a commit ce26ed2Copy full SHA for ce26ed2
sdk/search/Azure.Search.Documents/CHANGELOG.md
@@ -1,14 +1,9 @@
1
# Release History
2
3
-## 11.7.0-beta.5 (Unreleased)
4
-
5
-### Features Added
6
7
-### Breaking Changes
+## 11.7.0-beta.5 (2025-06-17)
8
9
### Bugs Fixed
10
11
-### Other Changes
+- Fixed a failure in the search response when the service returned a 206(Partial Content) status code.
12
13
## 11.7.0-beta.4 (2025-05-14)
14
sdk/search/Azure.Search.Documents/src/SearchClient.cs
@@ -1394,6 +1394,7 @@ private async Task<Response<SearchResults<T>>> SearchInternal<T>(
1394
switch (message.Response.Status)
1395
{
1396
case 200:
1397
+ case 206:
1398
1399
// Deserialize the results
1400
SearchResults<T> results = await SearchResults<T>.DeserializeAsync(
0 commit comments