From ba422cb345dd0aecc819bb5a0abe6471b83345cf Mon Sep 17 00:00:00 2001 From: Shivangi Reja Date: Fri, 10 Nov 2023 10:35:55 -0800 Subject: [PATCH 1/2] [Search] Prepare for GA release --- eng/Packages.Data.props | 2 +- sdk/search/Azure.Search.Documents/CHANGELOG.md | 14 +++++++------- .../tests/Azure.Search.Documents.Tests.csproj | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index f3613b1c0883..ec7a8cf57292 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -102,7 +102,7 @@ - + diff --git a/sdk/search/Azure.Search.Documents/CHANGELOG.md b/sdk/search/Azure.Search.Documents/CHANGELOG.md index 82a42c57aacd..d8ebe2fc61ca 100644 --- a/sdk/search/Azure.Search.Documents/CHANGELOG.md +++ b/sdk/search/Azure.Search.Documents/CHANGELOG.md @@ -1,14 +1,14 @@ # Release History -## 11.5.0 (Unreleased) +## 11.5.0 (2023-11-10) ### Features Added - -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Added support for [Vector Search](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/search/Azure.Search.Documents/samples/Sample07_VectorSearch.md). +- Added support for [Semantic Search](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/search/Azure.Search.Documents/samples/Sample08_SemanticSearch.md). +- Added support for [`PiiDetectionSkill`](https://learn.microsoft.com/azure/search/cognitive-search-skill-pii-detection). It allows you extracts personal information from an input text and gives you the option of masking it using the Text Analytics API. +- Added new languages for `OcrSkill` and `ImageAnalysisSkill` as we have upgraded them to use Cognitive Services Computer Vision v3.2, which now includes support for additional languages. Refer to the language lists [here](https://docs.microsoft.com/azure/cognitive-services/computer-vision/language-support). +- Added new languages for ` SplitSkill`. Language lists can be found [here](https://learn.microsoft.com/azure/search/cognitive-search-skill-textsplit#skill-parameters). +- Deprecated `SentimentSkill.SkillVersion.V1` and `EntityRecognitionSkill.SkillVersion.V1`; use `SentimentSkill.SkillVersion.V3` and `EntityRecognitionSkill.SkillVersion.V3` instead. ## 11.5.0-beta.5 (2023-10-09) diff --git a/sdk/search/Azure.Search.Documents/tests/Azure.Search.Documents.Tests.csproj b/sdk/search/Azure.Search.Documents/tests/Azure.Search.Documents.Tests.csproj index 273e7a624fbd..b23eadc79318 100644 --- a/sdk/search/Azure.Search.Documents/tests/Azure.Search.Documents.Tests.csproj +++ b/sdk/search/Azure.Search.Documents/tests/Azure.Search.Documents.Tests.csproj @@ -27,7 +27,7 @@ - + From 9d41b9af19f73691815dd302ea7eded69f3cf166 Mon Sep 17 00:00:00 2001 From: Shivangi Reja Date: Fri, 10 Nov 2023 11:18:27 -0800 Subject: [PATCH 2/2] Fix telemetry issue --- .../tests/Samples/Sample06_EncryptedIndex.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/search/Azure.Search.Documents/tests/Samples/Sample06_EncryptedIndex.cs b/sdk/search/Azure.Search.Documents/tests/Samples/Sample06_EncryptedIndex.cs index 86bee05e30fe..adbec3de355c 100644 --- a/sdk/search/Azure.Search.Documents/tests/Samples/Sample06_EncryptedIndex.cs +++ b/sdk/search/Azure.Search.Documents/tests/Samples/Sample06_EncryptedIndex.cs @@ -21,6 +21,8 @@ public class EncryptedIndex : SearchTestBase public EncryptedIndex(bool async, SearchClientOptions.ServiceVersion serviceVersion) : base(async, serviceVersion, null /* RecordedTestMode.Record /* to re-record */) { + // TODO: enable after new KeyValue is released (after Dec 2023) + TestDiagnostics = false; } [Test]