Skip to content

Commit

Permalink
[Streaming, Preview] Update 4.6-preview-streaming branch with 4.6.1 r…
Browse files Browse the repository at this point in the history
…elease (#1424)

* [QnAMaker] Active learning low score variation multiplier value (#1359) (#1361)

Active learning low score variation multiplier value
- PreviousLowScoreVariationMultiplier to 0.7
- MaxLowScoreVariationMultiplier to 1.0

* [4.6] cherry-pick #1363 CosmosClientOptions fix (#1367)

* cherry-pick #1363 CosmosClientOptions fix

* Fixed passing of CosmosClientOptions

* added test for CosmosClientOptions

* remove .js and .ts from .gitignore, change *.map to *.js.map (#1364)

* [4.6.1] Manually Cherry-pick #1392 & #1390 to 4.6 branch (#1397)

* manually cherry-pick #1390 to 4.6 branch

* manually cherry-pick #1392 to 4.6

* [Fix #1404, Transcripts] Fix for TranscriptLoggerMiddleware not checking responses type (#1409)

* add test to reproduce issue #1404

* add test or Transcripts where SendActivitiesHandler is not properly implemented

* add bug fix for #1404, more tests

* apply PR feedback and refactor code

* Choice prompt null locale fix [Cherry-pick against 4.6] (#1411)

* parity ChoicePrompt fix with dotnet

(cherry picked from commit 3985a06)

* added confirmPrompt test for null locale

(cherry picked from commit ea2652a)

* typo fix
  • Loading branch information
stevengum authored Nov 17, 2019
1 parent e1411c0 commit dba9cf6
Show file tree
Hide file tree
Showing 19 changed files with 1,474 additions and 1,055 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -308,4 +308,4 @@ __pycache__/
package-lock.json

*.tsbuildinfo
*.map
*.js.map
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class CosmosDbPartitionedStorage implements Storage {
this.client = new CosmosClient({
endpoint: this.cosmosDbStorageOptions.cosmosDbEndpoint,
key: this.cosmosDbStorageOptions.authKey,
...this.cosmosDbStorageOptions,
...this.cosmosDbStorageOptions.cosmosClientOptions,
});
}

Expand Down
Loading

0 comments on commit dba9cf6

Please sign in to comment.