Skip to content

Commit 7f31a2e

Browse files
[Search] Update public types as per API review (Azure#21259)
* Update code with GA swagger changes * Update version and changelog * Update public API file * Remove dependency from Azure.Core.Experimental Update namespace of Azure.GeoJson * Update public API after ns changes * Remove SearchQueryType.Semantic and RerankerScore * Remove RerankerScore from public API * Remove AnswerResult and CaptionResult * Remove ServiceVersion.V2020_06_30_Preview Update test session records * Undo changes in RecordMatcher.cs * Update Changelog for 11.3.0 release * Merge auto-generated model factory class with existing one * Mark CharFilterName as internal Change type of CustomEntityLookupSkill.EntitiesDefinitionUri to Uri. * Use extensible enum types where available * Rename KnowledgeStore types Make non-leaf ProjectionSelector types abstract * Update sample md file * Update RoundtripAllSkills test session record * Name property to match type in KnowledgeStoreProjection * Remove model factory method in favor of existing one * Increment version for search releases (Azure#21779) Increment package version after release of Azure.Search.Documents * Update to the latest preview rest spec Keep the desirable transform changes Co-authored-by: Azure SDK Bot <[email protected]>
1 parent 5960ba7 commit 7f31a2e

File tree

58 files changed

+903
-1029
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+903
-1029
lines changed

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

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

3-
## 11.3.0-beta.3 (Unreleased)
3+
## 11.4.0-beta.1 (Unreleased)
44

55

6+
## 11.3.0 (2021-06-08)
7+
8+
### Added
9+
- Adds stable features and bug fixes from the [11.3.0-beta.1](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Search.Documents_11.3.0-beta.1/sdk/search/Azure.Search.Documents/CHANGELOG.md#1130-beta1-2021-04-06) and [11.3.0-beta.2](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Search.Documents_11.3.0-beta.2/sdk/search/Azure.Search.Documents/CHANGELOG.md#1130-beta2-2021-05-11) releases. Preview service features not generally available yet, like Semantic Search and Normalizers, are not included in this GA release.
10+
611
## 11.3.0-beta.2 (2021-05-11)
712

813
### Added

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

Lines changed: 46 additions & 65 deletions
Large diffs are not rendered by default.

sdk/search/Azure.Search.Documents/samples/Sample02_Service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ SearchIndexerSkillset skillset = new SearchIndexerSkillset(
184184
{
185185
CognitiveServicesAccount = new CognitiveServicesAccountKey(
186186
Environment.GetEnvironmentVariable("COGNITIVE_SERVICES_KEY")),
187-
KnowledgeStore = new SearchIndexerKnowledgeStore(
187+
KnowledgeStore = new KnowledgeStore(
188188
Environment.GetEnvironmentVariable("STORAGE_CONNECTION_STRING"),
189-
new List<SearchIndexerKnowledgeStoreProjection>()),
189+
new List<KnowledgeStoreProjection>()),
190190
};
191191

192192
await indexerClient.CreateSkillsetAsync(skillset);

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<AssemblyTitle>Microsoft Azure.Search.Documents client library</AssemblyTitle>
4-
<Version>11.3.0-beta.3</Version>
5-
<ApiCompatVersion>11.2.0</ApiCompatVersion>
4+
<Version>11.4.0-beta.1</Version>
5+
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
6+
<ApiCompatVersion>11.3.0</ApiCompatVersion>
67
<Description>
78
This is the Azure Cognitive Search client library for developing .NET
89
applications with rich search experiences. It enables you to query your

sdk/search/Azure.Search.Documents/src/Generated/Models/CustomEntityLookupSkill.Serialization.cs

Lines changed: 4 additions & 3 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/CustomEntityLookupSkill.cs

Lines changed: 1 addition & 3 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/DocumentExtractionSkill.Serialization.cs

Lines changed: 7 additions & 7 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/DocumentExtractionSkill.cs

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

0 commit comments

Comments
 (0)