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] Update changelog for "11.5.0-beta.5" release #39102

Merged
merged 4 commits into from
Oct 5, 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
18 changes: 13 additions & 5 deletions sdk/search/Azure.Search.Documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Release History

## 11.5.0-beta.5 (Unreleased)
## 11.5.0-beta.5 (2023-10-09)

### Features Added
- Added support for `VectorSearch.Vectorizers`, which contains configuration options for vectorizing text vector queries, and `VectorSearch.Profiles`, which define combinations of configurations to use with vector search.
- Added the `VectorSearchAlgorithmConfiguration` base type, containing configuration options specific to the algorithm used during indexing and/or querying. Derived classes include `ExhaustiveKnnVectorSearchAlgorithmConfiguration` and `HnswVectorSearchAlgorithmConfiguration`.
- Added the `SearchOptions.VectorQueries` base type, which is used for the query parameters for vector and hybrid search queries. Derived classes include `VectorizableTextQuery` and `RawVectorQuery`. With `RawVectorQuery`, users can pass raw vector values for vector search, while `VectorizableTextQuery` allows the passing of text values to be vectorized for vector search.
- Added `SearchOptions.VectorFilterMode`, determining whether filters are applied before or after vector search is executed.
- Added `SearchOptions.SemanticQuery`, which enables the setting of a dedicated search query for semantic reranking, semantic captions, and semantic answers.
- Added support for `AzureOpenAIEmbeddingSkill`, which enables the generation of vector embeddings for given text inputs using the Azure Open AI service.
- Added `SearchIndexStatistics.VectorIndexSize`, which reports the amount of memory consumed by vectors in the index.
- Added `KnowledgeStore.Parameters`, which defines a dictionary of knowledge store-specific configuration properties.
- Added `SearchIndexerSkillset.IndexProjections`, which specifies additional projections to secondary search indexes.

### Breaking Changes

### Bugs Fixed

### Other Changes
- In `SearchOptions`, the `IList<SearchQueryVector> Vectors` property has been removed in favor of the abstract base type `IList<VectorQuery> VectorQueries`.
- In `SearchField`, the `vectorSearchConfiguration` property has been removed in favor of the new `VectorSearchProfile` property.
- In `VectorSearch`, `AlgorithmConfigurations` has been renamed to `Algorithms`.

## 11.5.0-beta.4 (2023-08-07)

Expand Down
2 changes: 1 addition & 1 deletion sdk/search/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extends:
CloudConfig:
Preview:
SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources-preview)
Location: 'eastus2euap'
Location: 'westcentralus'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have the changes reached westcentralus?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, all the changes are available in these regions

image

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You may need to move this back to EUAP when you start with GA swagger.

Copy link
Member Author

@ShivangiReja ShivangiReja Oct 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some of the existing test cases where we use SEARCH_COGNITIVE_KEY test resource was failing with this error:

Error Message:Azure.RequestFailedException : Provided key is not a valid CognitiveServices type key for the region of your search service.
Status: 400 (Bad Request

Updating the westcentralus region works well for all the resources.

UsGov:
SubscriptionConfiguration: $(sub-config-gov-test-resources)
China:
Expand Down