Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Search] Prepare for GA release #39903

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<PackageReference Update="Azure.Storage.Common" Version="12.15.0" />
<PackageReference Update="Azure.Storage.Blobs" Version="12.16.0" />
<PackageReference Update="Azure.Storage.Queues" Version="12.14.0" />
<PackageReference Update="Azure.AI.OpenAI" Version="1.0.0-beta.5" />
<PackageReference Update="Azure.AI.OpenAI" Version="1.0.0-beta.9" />
<PackageReference Update="Azure.ResourceManager" Version="1.8.1" />

<!-- Other approved packages -->
Expand Down
14 changes: 7 additions & 7 deletions sdk/search/Azure.Search.Documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<!-- References required for sample snippet -->
<ItemGroup>
<ProjectReference Include="..\..\..\openai\Azure.AI.OpenAI\src\Azure.AI.OpenAI.csproj" />
<PackageReference Include="Azure.AI.OpenAI" />
</ItemGroup>

<!-- References required for test resource creation -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down