Version Update Change for search-documents May 21 (#15151)
* Version Update Change for search-documents May 21 * Update Version in Perf
This commit is contained in:
Родитель
0349c07cd4
Коммит
bb436f862f
|
@ -7,7 +7,7 @@
|
|||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@azure/search-documents": "11.2.0-beta.1",
|
||||
"@azure/search-documents": "11.2.0-beta.2",
|
||||
"@azure/identity": "^1.1.0",
|
||||
"@azure/test-utils-perfstress": "^1.0.0",
|
||||
"dotenv": "^8.2.0"
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Release History
|
||||
|
||||
## 11.2.0-beta.2 (2021-05-11)
|
||||
|
||||
- Added Support for Semantic Search and introduced new properties in `SearchOptions`, `SearchRequest`, `SearchResult` and `SearchDocumentsResult` objects.
|
||||
- Added support for Knowledge Store feature through the new `SearchIndexerKnowledgeStore` in the `SearchIndexerSkillset` object.
|
||||
- The `skillsetCounter` property in `ServiceCounters` object has been made optional.
|
||||
|
||||
## 11.2.0-beta.1 (2021-04-06)
|
||||
|
||||
- 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.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@azure/search-documents",
|
||||
"version": "11.2.0-beta.1",
|
||||
"version": "11.2.0-beta.2",
|
||||
"description": "Azure client library to use Cognitive Search for node.js and browser.",
|
||||
"sdk-type": "client",
|
||||
"main": "dist/index.js",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT license.
|
||||
|
||||
export const SDK_VERSION: string = "11.2.0-beta.1";
|
||||
export const SDK_VERSION: string = "11.2.0-beta.2";
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
} from "./models";
|
||||
|
||||
const packageName = "@azure/search-documents";
|
||||
const packageVersion = "11.2.0-beta.1";
|
||||
const packageVersion = "11.2.0-beta.2";
|
||||
|
||||
/** @internal */
|
||||
export class SearchClientContext extends coreHttp.ServiceClient {
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
} from "./models";
|
||||
|
||||
const packageName = "@azure/search-documents";
|
||||
const packageVersion = "11.2.0-beta.1";
|
||||
const packageVersion = "11.2.0-beta.2";
|
||||
|
||||
/** @internal */
|
||||
export class SearchServiceClientContext extends coreHttp.ServiceClient {
|
||||
|
|
Загрузка…
Ссылка в новой задаче