Skip to content

Commit

Permalink
feat: changes for rc1 (#3836)
Browse files Browse the repository at this point in the history
* port: orchestrator package changes (#3824)

Fixes #3782

* chore: tests for cloud adapter (#3833)

* chore: tests for cloud adapter base

* chore: tests for cloud adapter

* fix: assert error messages

* fix: enable TeamsInfo methods to work with CloudAdapter (#3830)

* fix: trigger github workflows on 4.14

Co-authored-by: Michael Richardson <40401643+mdrichardson@users.noreply.github.com>
  • Loading branch information
Josh Gummersall and mdrichardson authored Jun 30, 2021
1 parent f193b32 commit befae3b
Show file tree
Hide file tree
Showing 15 changed files with 666 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/depcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-consumer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-repoutils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
- main
- '4.12'
- '4.13'
- '4.14'
pull_request:
branches:
- main
- '4.12'
- '4.13'
- '4.14'

jobs:
ci:
Expand Down
3 changes: 2 additions & 1 deletion libraries/botbuilder-ai-orchestrator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "botbuilder-ai-orchestrator",
"author": "Microsoft Corp.",
"description": "Orchestrator recognizer",
"description": "The Orchestrator package contains Bot Framework recognizer for detecting and routing user intents.",
"homepage": "https://aka.ms/bf-orchestrator-package-readme",
"version": "4.1.6",
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/src/cloudAdapterBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export abstract class CloudAdapterBase extends BotAdapter {
/**
* @inheritdoc
*/
sendActivities(context: TurnContext, activities: Partial<Activity>[]): Promise<ResourceResponse[]> {
async sendActivities(context: TurnContext, activities: Partial<Activity>[]): Promise<ResourceResponse[]> {
if (!context) {
throw new TypeError('`context` parameter required');
}
Expand Down
Loading

0 comments on commit befae3b

Please sign in to comment.