Skip to content

Commit 3826c20

Browse files
authored
[Search] Apply Search GA feedback in preview (#53160)
1 parent 1ccfa3e commit 3826c20

18 files changed

+467
-36
lines changed

sdk/search/Azure.Search.Documents/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 11.7.0-beta.8 (Unreleased)
3+
## 11.8.0-beta.1 (Unreleased)
44

55
### Features Added
66

@@ -10,6 +10,23 @@
1010

1111
### Other Changes
1212

13+
## 11.7.0 (2025-10-09)
14+
15+
### Features Added
16+
- Added support for `2025-09-01` service version.
17+
- Support for reranker boosted scores in search results and the ability to sort results on either reranker or reranker boosted scores in `SemanticConfiguration.RankingOrder`.
18+
- Support for `VectorSearchCompression.RescoringOptions` to configure how vector compression handles the original vector when indexing and how vectors are used during rescoring.
19+
- Added `SearchIndex.Description` to provide a textual description of the index.
20+
- Support for `LexicalNormalizer` when defining `SearchIndex`, `SimpleField`, and `SearchableField` and the ability to use it when analyzing text with `SearchIndexClient.AnalyzeText`.
21+
- Support `DocumentIntelligenceLayoutSkill` skillset skill and `OneLake` `SearchIndexerDataSourceConnection` data source.
22+
- Support for `QueryDebugMode` in searching to retrieve detailed information about search processing. Only vector is supported for `QueryDebugMode`.
23+
24+
### Breaking Changes
25+
- `VectorSearchCompression.RerankWithOriginalVectors` and `VectorSearchCompression.DefaultOversampling` don't work with
26+
`2025-09-01` and were replaced by `VectorSearchCompression.RescoringOptions.EnabledRescoring` and
27+
`VectorSearchCompression.RescoringOptions.DefaultOversampling`. If using `2024-07-01` continue using the old properties,
28+
otherwise if using `2025-09-01` use the new properties in `RescoringOptions`.
29+
1330
## 11.7.0-beta.7 (2025-09-05)
1431

1532
### Features Added

sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.net8.0.cs

Lines changed: 19 additions & 3 deletions
Large diffs are not rendered by default.

sdk/search/Azure.Search.Documents/api/Azure.Search.Documents.netstandard2.0.cs

Lines changed: 19 additions & 3 deletions
Large diffs are not rendered by default.

sdk/search/Azure.Search.Documents/src/Azure.Search.Documents.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyTitle>Microsoft Azure.Search.Documents client library</AssemblyTitle>
4-
<Version>11.7.0-beta.8</Version>
4+
<Version>11.8.0-beta.1</Version>
55
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
6-
<ApiCompatVersion>11.6.1</ApiCompatVersion>
6+
<ApiCompatVersion>11.7.0</ApiCompatVersion>
77
<Description>
88
This is the Azure Cognitive Search client library for developing .NET
99
applications with rich search experiences. It enables you to query your
@@ -17,7 +17,6 @@
1717
<NoWarn>
1818
$(NoWarn);
1919
AZC0004;
20-
AZC0035; <!-- Missing model factory methods. #51224-->
2120
</NoWarn>
2221
</PropertyGroup>
2322

@@ -31,7 +30,6 @@
3130

3231
<ItemGroup>
3332
<PackageReference Include="Azure.Core" />
34-
<PackageReference Include="System.ClientModel" />
3533
<PackageReference Include="System.Threading.Channels" />
3634
</ItemGroup>
3735

sdk/search/Azure.Search.Documents/src/Generated/Models/BinaryQuantizationCompression.cs

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/search/Azure.Search.Documents/src/Generated/Models/ScalarQuantizationCompression.cs

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/search/Azure.Search.Documents/src/Generated/Models/UnknownVectorSearchCompression.cs

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/search/Azure.Search.Documents/src/Generated/Models/VectorSearchCompression.cs

Lines changed: 16 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/search/Azure.Search.Documents/src/Indexes/Models/AnalyzeTextOptions.cs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,6 @@ public AnalyzeTextOptions(string text, LexicalAnalyzerName analyzerName) : this(
2828
public AnalyzeTextOptions(string text, LexicalTokenizerName tokenizerName) : this(text)
2929
=> TokenizerName = tokenizerName;
3030

31-
/// <summary>
32-
/// Initializes a new instance of AnalyzeRequest.
33-
/// </summary>
34-
/// <param name="text">Required text to break into tokens.</param>
35-
/// <param name="normalizerName">The name of the tokenizer to use to break the given <paramref name="text"/>.</param>
36-
/// <exception cref="ArgumentNullException"><paramref name="text"/> is null.</exception>
37-
public AnalyzeTextOptions(string text, LexicalNormalizerName normalizerName) : this(text)
38-
=> NormalizerName = normalizerName;
39-
4031
/// <summary> The name of the analyzer to use to break the given text. </summary>
4132
[CodeGenMember("Analyzer")]
4233
public LexicalAnalyzerName? AnalyzerName { get; }
@@ -47,7 +38,7 @@ public AnalyzeTextOptions(string text, LexicalNormalizerName normalizerName) : t
4738

4839
/// <summary> The name of the normalizer to use to normalize the given text. </summary>
4940
[CodeGenMember("Normalizer")]
50-
public LexicalNormalizerName? NormalizerName { get; }
41+
public LexicalNormalizerName? NormalizerName { get; set; }
5142

5243
/// <summary> An optional list of token filters to use when breaking the given text. </summary>
5344
public IList<TokenFilterName> TokenFilters { get; }

0 commit comments

Comments
 (0)