Skip to content

Commit 25464c7

Browse files
authored
November release changes (Azure#12342)
* November Release Changes * Format
1 parent 6f4e75b commit 25464c7

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

sdk/search/search-documents/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Release History
22

3-
## 11.1.0-beta.2 (Unreleased)
3+
## 11.1.0-beta.2 (2020-11-10)
44

5+
- [Breaking] Hidden the constructor of `SearchIndexingBufferedSender` and made it to an interface. Please refer [#11785](https://github.com/Azure/azure-sdk-for-js/pull/11785) for further details.
6+
- Added `encryptionKey` property to `SearchIndexerDataSource`, `SearchIndexer` and `SearchIndexerSkillSet` objects. Please refer [#12275](https://github.com/Azure/azure-sdk-for-js/pull/12275) for further details.
7+
- Added user configurable properties such as `flushWindowInMs`, `initialBatchActionCount`, `maxRetries`, etc to the `SearchIndexingBufferedSenderOptions` object. Please refer [#12297](https://github.com/Azure/azure-sdk-for-js/pull/12297) for further details.
58

69
## 11.1.0-beta.1 (2020-10-05)
710

sdk/search/search-documents/samples/typescript/src/bufferedSender/uploadDocuments/autoFlushSizeBased.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import {
88
import { createIndex, WAIT_TIME } from "../../utils/setup";
99
import { Hotel } from "../../utils/interfaces";
1010
import { delay } from "@azure/core-http";
11+
import * as dotenv from "dotenv";
12+
dotenv.config();
1113

1214
/**
1315
* This sample is to demonstrate the use of SearchIndexingBufferedSender.

sdk/search/search-documents/samples/typescript/src/bufferedSender/uploadDocuments/autoFlushTimerBased.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import {
99
import { createIndex, WAIT_TIME } from "../../utils/setup";
1010
import { Hotel } from "../../utils/interfaces";
1111
import { delay } from "@azure/core-http";
12+
import * as dotenv from "dotenv";
13+
dotenv.config();
1214

1315
/**
1416
* This sample is to demonstrate the use of SearchIndexingBufferedSender.

sdk/search/search-documents/samples/typescript/src/bufferedSender/uploadDocuments/manualFlush.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import {
88
import { createIndex, WAIT_TIME } from "../../utils/setup";
99
import { Hotel } from "../../utils/interfaces";
1010
import { delay } from "@azure/core-http";
11+
import * as dotenv from "dotenv";
12+
dotenv.config();
1113

1214
/**
1315
* This sample is to demonstrate the use of SearchIndexingBufferedSender.

0 commit comments

Comments
 (0)