Skip to content

Commit d2bcc63

Browse files
authored
Bumped Web Chat to 4.14.0 (#2275)
* Bumped Web Chat to 4.14.0 * Updated changelog * Removed @corinagum from code owners * Locked botframework-schema to 4.14.0
1 parent 1cd775d commit d2bcc63

File tree

12 files changed

+2106
-2182
lines changed

12 files changed

+2106
-2182
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# https://blog.github.com/2017-07-06-introducing-code-owners/
22

3-
* @a-b-r-o-w-n @compulim @corinagum @cwhitten @srinaath @tdurnford @tonyanziano
3+
* @a-b-r-o-w-n @compulim @cwhitten @srinaath @tdurnford @tonyanziano

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88
## Added
9+
- [client] Bumped `botframework-webchat` to v4.14.0 in PR [2275](https://github.com/microsoft/BotFramework-Emulator/pull/2275)
10+
11+
## v4.13.0 - 2021 - 4 - 14
12+
## Added
913
- [client] Bumped `botframework-webchat` to v4.13.0 in PR [2258](https://github.com/microsoft/BotFramework-Emulator/pull/2258)
1014

1115
## Fixed

package-lock.json

Lines changed: 2090 additions & 2168 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app/client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@
109109
"@uifabric/styling": "^5.20.0",
110110
"base64url": "3.0.0",
111111
"botframework-config": "4.4.0",
112-
"botframework-schema": "^4.3.4",
113-
"botframework-webchat": "4.13.0",
114-
"botframework-webchat-core": "4.13.0",
112+
"botframework-schema": "4.14.0",
113+
"botframework-webchat": "4.14.0",
114+
"botframework-webchat-core": "4.14.0",
115115
"core-js": "^3.6.5",
116116
"eslint-plugin-react": "^7.12.3",
117117
"markdown-it": "^8.4.2",

packages/app/main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"applicationinsights": "^1.0.8",
136136
"base64url": "3.0.0",
137137
"botframework-config": "4.4.0",
138-
"botframework-schema": "^4.3.4",
138+
"botframework-schema": "4.14.0",
139139
"chokidar": "^2.0.2",
140140
"command-line-args": "^5.0.2",
141141
"electron-updater": "4.3.5",

packages/app/main/src/server/routes/directLine/handlers/upload.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,8 @@ export function createUploadHandler(emulatorServer: EmulatorRestServer) {
7373
return;
7474
}
7575

76-
const form = new Formidable.IncomingForm();
76+
const form = new Formidable.IncomingForm({ keepExtensions: true, multiples: true });
7777

78-
form.multiples = true;
79-
form.keepExtensions = true;
8078
// TODO: Override form.onPart handler so it doesn't write temp files to disk.
8179
form.parse(req, async (err: any, fields: any, files: any) => {
8280
try {

packages/app/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@babel/runtime": "^7.1.5",
4444
"@bfemulator/sdk-shared": "^1.0.0",
4545
"botframework-config": "4.4.0",
46-
"botframework-schema": "^4.3.4",
46+
"botframework-schema": "4.14.0",
4747
"tslib": "^1.9.0"
4848
},
4949
"jest": {

packages/extensions/json/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@bfemulator/sdk-shared": "^1.0.0",
1212
"@bfemulator/app-shared": "^1.0.0",
1313
"@bfemulator/sdk-client": "^1.0.0",
14-
"botframework-schema": "^4.3.4",
14+
"botframework-schema": "4.14.0",
1515
"deep-diff": "^1.0.2",
1616
"react": "16.8.6",
1717
"react-dom": "16.8.6",

packages/extensions/luis/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@bfemulator/sdk-shared": "^1.0.0",
1212
"@bfemulator/ui-react": "^1.0.0",
1313
"botframework-config": "4.4.0",
14-
"botframework-schema": "^4.3.4",
14+
"botframework-schema": "4.14.0",
1515
"lscache": "^1.1.0",
1616
"luis-apis": "2.5.1",
1717
"react": "16.8.6",

packages/extensions/qnamaker/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@bfemulator/ui-react": "^1.0.0",
1111
"@uifabric/merge-styles": "^6.2.0",
1212
"botframework-config": "4.4.0",
13-
"botframework-schema": "^4.3.4",
13+
"botframework-schema": "4.14.0",
1414
"qnamaker": "^1.3.0",
1515
"react": "16.8.6",
1616
"react-dom": "16.8.6"

packages/sdk/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@babel/runtime": "^7.1.5",
4444
"@bfemulator/sdk-shared": "^1.0.0",
4545
"botframework-config": "4.4.0",
46-
"botframework-schema": "^4.3.4",
46+
"botframework-schema": "4.14.0",
4747
"tslib": "^1.9.0"
4848
}
4949
}

packages/sdk/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"dependencies": {
4545
"@babel/runtime": "^7.1.5",
4646
"botframework-config": "4.4.0",
47-
"botframework-schema": "^4.3.4",
47+
"botframework-schema": "4.14.0",
4848
"tslib": "^1.9.0",
4949
"uuid": "^3.3.2"
5050
},

0 commit comments

Comments
 (0)