Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Update Version in Search Documents SDK (Azure#15630)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarangan12 authored Jun 21, 2021
1 parent c28ed01 commit 479f54e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sdk/search/perf-tests/search-documents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@azure/search-documents": "11.2.0-beta.3",
"@azure/search-documents": "11.3.0-beta.1",
"@azure/identity": "^1.1.0",
"@azure/test-utils-perfstress": "^1.0.0",
"dotenv": "^8.2.0"
Expand Down
17 changes: 16 additions & 1 deletion sdk/search/search-documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
# Release History

## 11.2.0-beta.3 (Unreleased)
## 11.3.0-beta.1 (Unreleased)

## 11.2.0 (2021-06-08)

The list of changes in 11.2.0 since 11.1.0 & 11.2.0-beta.2 are provided below:

**Changes since 11.1.0**

- Added support for Knowledge Store feature through the new `SearchIndexerKnowledgeStore` in the `SearchIndexerSkillset` object.
- The `skillsetCounter` property in `ServiceCounters` object has been made optional.
- Added Support for new datasource `adlsgen2`. Please refer [#14620](https://github.com/Azure/azure-sdk-for-js/pull/14620) for further details.
- Added Support for new skills such as `CustomEntityLookupSkill`, `DocumentExtractionSkill`, etc. Please refer [#14620](https://github.com/Azure/azure-sdk-for-js/pull/14620) for further details.

**Changes since 11.2.0-beta.2**

- Removed Support for Semantic Search and introduced new properties in `SearchOptions`, `SearchRequest`, `SearchResult` and `SearchDocumentsResult` objects.
- Removed Support for normalizers `LexicalNormalizer` & `CustomNormalizer`. Please refer [#14620](https://github.com/Azure/azure-sdk-for-js/pull/14620) for further details.

## 11.2.0-beta.2 (2021-05-11)

Expand Down
2 changes: 1 addition & 1 deletion sdk/search/search-documents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/search-documents",
"version": "11.2.0-beta.3",
"version": "11.3.0-beta.1",
"description": "Azure client library to use Cognitive Search for node.js and browser.",
"sdk-type": "client",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/search/search-documents/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const SDK_VERSION: string = "11.2.0-beta.3";
export const SDK_VERSION: string = "11.3.0-beta.1";
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "./models";

const packageName = "@azure/search-documents";
const packageVersion = "11.2.0-beta.3";
const packageVersion = "11.3.0-beta.1";

/** @internal */
export class SearchClientContext extends coreHttp.ServiceClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from "./models";

const packageName = "@azure/search-documents";
const packageVersion = "11.2.0-beta.3";
const packageVersion = "11.3.0-beta.1";

/** @internal */
export class SearchServiceClientContext extends coreHttp.ServiceClient {
Expand Down

0 comments on commit 479f54e

Please sign in to comment.