Skip to content

Commit

Permalink
Bumped Web Chat to 4.14.0 (#2275)
Browse files Browse the repository at this point in the history
* Bumped Web Chat to 4.14.0

* Updated changelog

* Removed @corinagum from code owners

* Locked botframework-schema to 4.14.0
  • Loading branch information
tonyanziano committed Jul 13, 2021
1 parent 1cd775d commit d2bcc63
Show file tree
Hide file tree
Showing 12 changed files with 2,106 additions and 2,182 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://blog.github.com/2017-07-06-introducing-code-owners/

* @a-b-r-o-w-n @compulim @corinagum @cwhitten @srinaath @tdurnford @tonyanziano
* @a-b-r-o-w-n @compulim @cwhitten @srinaath @tdurnford @tonyanziano
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased
## Added
- [client] Bumped `botframework-webchat` to v4.14.0 in PR [2275](https://github.com/microsoft/BotFramework-Emulator/pull/2275)

## v4.13.0 - 2021 - 4 - 14
## Added
- [client] Bumped `botframework-webchat` to v4.13.0 in PR [2258](https://github.com/microsoft/BotFramework-Emulator/pull/2258)

## Fixed
Expand Down
4,258 changes: 2,090 additions & 2,168 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@
"@uifabric/styling": "^5.20.0",
"base64url": "3.0.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-webchat": "4.13.0",
"botframework-webchat-core": "4.13.0",
"botframework-schema": "4.14.0",
"botframework-webchat": "4.14.0",
"botframework-webchat-core": "4.14.0",
"core-js": "^3.6.5",
"eslint-plugin-react": "^7.12.3",
"markdown-it": "^8.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/app/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"applicationinsights": "^1.0.8",
"base64url": "3.0.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"chokidar": "^2.0.2",
"command-line-args": "^5.0.2",
"electron-updater": "4.3.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,8 @@ export function createUploadHandler(emulatorServer: EmulatorRestServer) {
return;
}

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

form.multiples = true;
form.keepExtensions = true;
// TODO: Override form.onPart handler so it doesn't write temp files to disk.
form.parse(req, async (err: any, fields: any, files: any) => {
try {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@babel/runtime": "^7.1.5",
"@bfemulator/sdk-shared": "^1.0.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"tslib": "^1.9.0"
},
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@bfemulator/sdk-shared": "^1.0.0",
"@bfemulator/app-shared": "^1.0.0",
"@bfemulator/sdk-client": "^1.0.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"deep-diff": "^1.0.2",
"react": "16.8.6",
"react-dom": "16.8.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/luis/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@bfemulator/sdk-shared": "^1.0.0",
"@bfemulator/ui-react": "^1.0.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"lscache": "^1.1.0",
"luis-apis": "2.5.1",
"react": "16.8.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/qnamaker/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@bfemulator/ui-react": "^1.0.0",
"@uifabric/merge-styles": "^6.2.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"qnamaker": "^1.3.0",
"react": "16.8.6",
"react-dom": "16.8.6"
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@babel/runtime": "^7.1.5",
"@bfemulator/sdk-shared": "^1.0.0",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"tslib": "^1.9.0"
}
}
2 changes: 1 addition & 1 deletion packages/sdk/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"@babel/runtime": "^7.1.5",
"botframework-config": "4.4.0",
"botframework-schema": "^4.3.4",
"botframework-schema": "4.14.0",
"tslib": "^1.9.0",
"uuid": "^3.3.2"
},
Expand Down

0 comments on commit d2bcc63

Please sign in to comment.