Releases: microsoft/BotFramework-WebChat
Releases · microsoft/BotFramework-WebChat
[4.18.0] - 2024-07-10
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-YCF4860lf811lnrrIBL4pfZ+UqiNit+8lXEhSY3R+dSc+C1rg6UnEQR5avdOTbj0"
src="https://cdn.botframework.com/botframework-webchat/4.18.0/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-RuyQM7i2h9QDvJTm5quFymi0qfuWyIZocRdsgUaPIhlZnAM/Qz1/YnUxH55Dt9Rd"
src="https://cdn.botframework.com/botframework-webchat/4.18.0/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-YXzfTEuq6x+8VEBZcHmPE9rM+NpSTVfRQsU1X0v4drgjp3S4F8d8rnq/anR3WLpj"
src="https://cdn.botframework.com/botframework-webchat/4.18.0/webchat-minimal.js"
></script>
Changelog
[4.18.0] - 2024-07-10
Added
Fixed
- Read deeper into citation objects in order to provide names, in PR #5215, by @beyackle2
- Improved performance for
useActivityWithRenderer
, in PR #5172, by @OEvgeny - Fixes #5162. Improved performance for
useActivityTreeWithRenderer
, in PR #5163, by @compulim - Fixes #5175.
PrecompiledGlobalize.js
is emitted instead of.cjs
, by @compulim in PR #5181 - Improved performance for
BasicTranscript
, in PR #5183, by @OEvgeny - Fixed potential memory usage issues caused by
useActivitiesWithRenderer
, in PR #5183, by @OEvgeny - Improved performance for
useMemoized
, in PR #5190, by @OEvgeny - Fixed send box zoomed in when clicked on mobile Safari, in PR #5192, by @OEvgeny
- Added missing support for chat history scroll with keyboard when Fluent send box is focused, in PR #5191, by @OEvgeny
- Fixed DTMF command usage sent by telephone keypad, in PR #5198, by @OEvgeny
- Fixed decorator import in legacy CommonJS environments, in #5231, by @OEvgeny
Changed
- Bumped all dependencies to the latest versions, by @compulim in PR #5174 and PR #5181
- Production dependencies
- Development dependencies
@fluentui/react-components@9.49.2
@types/node@20.12.11
@typescript-eslint/eslint-plugin@7.8.0
@typescript-eslint/parser@7.8.0
adm-zip@0.5.12
dotenv@16.4.5
esbuild@0.21.1
eslint-plugin-import@2.29.1
eslint-plugin-prettier@5.1.3
eslint-plugin-react-hooks@4.6.2
eslint-plugin-react@7.34.1
eslint-plugin-security@3.0.0
eslint@8.57.0
html-webpack-plugin@5.6.0
husky@9.0.11
jest-image-snapshot@6.4.0
lint-staged@15.2.2
nodemon@3.1.0
nopt@7.2.1
p-defer@4.0.1
prettier@3.2.5
selenium-webdriver@4.20.0
serve@14.2.3
source-map-loader@5.0.0
terser-webpack-plugin@5.3.10
tsd@0.31.0
type-fest@4.18.2
typescript@5.4.5
webpack@5.91.0
[4.17.0] - 2024-05-07
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-JrrxPK4UiMUpQfRYck+TH35vDgpZLtot9HqkG6F/pbubNCnNyRCYEbQ0mXH2z8s2"
src="https://cdn.botframework.com/botframework-webchat/4.17.0/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-N+hZt09yrG7gT/xDkupYZeFnCoFR1S4ig9v3h1liavEgPm9C+Lt4MFPv85gfBp6E"
src="https://cdn.botframework.com/botframework-webchat/4.17.0/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-Z6hLc33tM1RVHGaYJbzrd6XkfxUwB+q4915W9K9ogwYqpIIew3oHhDfEzCfk1JgD"
src="https://cdn.botframework.com/botframework-webchat/4.17.0/webchat-minimal.js"
></script>
Changelog
[4.17.0] - 2024-05-06
Known issues
- Web Chat is not loading with error
Uncaught TypeError: Super constructor null of anonymous class is not a constructor
- A bug in webpack@>=5.84.1 is causing the issue. Please update to
webpack@>=5.90.0
- A bug in webpack@>=5.84.1 is causing the issue. Please update to
Breaking changes
useSendMessage
hook is updated to support sending attachments with a message. To reduce complexity, theuseSendFiles
hook is being deprecated. The hook will be removed on or after 2026-04-03styleOptions.uploadThumbnailHeight
andstyleOptions.uploadThumbnailWidth
must be anumber
of pixelsuseSuggestedActions
type is updated to align with its actual implementation, by @OEvgeny, in PR #5122- Removed deprecated code:
connect*
,useRenderActivity
,useRenderActivityStatus
,useRenderAvatar
, in PR #5148, by @compulim - Added named exports in both CommonJS and ES Modules module format, in PR #5148, by @compulim
- Removed deprecated
useFocusSendBox()
hook, please useuseFocus('sendBox')
instead, in PR #5150, by @OEvgeny - HTML-in-Markdown is now supported. To disable this feature, set
styleOptions.markdownRenderHTML
tofalse
Added
- Resolves #5083. Added
sendAttachmentOn
style option to send attachments and text in a single activity, by @ms-jb and @compulim, in PR #5123useSendMessage
hook is updated to support sending attachments with a messageuseSendBoxAttachments
hook is added to get/set attachments in the send box
- Resolves #5081. Added
uploadAccept
anduploadMultiple
style options, by @ms-jb, in PR #5048 - Added
sendBoxMiddleware
andsendBoxToolbarMiddleware
, by @compulim, in PR #5120 - (Experimental) Added
botframework-webchat-fluent-theme
package for applying Fluent UI theme to Web Chat, by @compulim and @OEvgeny- Initial commit, in PR #5120
- Inherits Fluent CSS palette if available, in PR #5122
- New send box with Fluent look-and-feel, in PR #5122
styleOptions.maxMessageLength
to specify maximum length of the outgoing message
- Drag-and-drop file support, in PR #5122
- Added telephone keypad (DTMF keypad), in PR #5122
- Fixed
botframework-webchat-fluent-theme/package.json
to export*.d.[m]ts
and default exports, in PR #5131 - Added support of
styleOptions.hideUploadButton
, in PR #5132 - Added
styleOptions.hideTelephoneKeypadButton
and default totrue
, in PR #5132 - Fit-and-finish on suggested actions and telephone keypad, in PR #5132
- Fixed to keep telephone keypad on-screen on click, in PR #5132
- Disabled send button and hid message length when telephone keypad is shown, in PR #5136
- Added dark theme support, in PR #5138
- Added an information message to the telephone keypad, in PR #5140
- Added animation to focus indicator and pixel-perfected, in PR #5143
- Integrated focus management for send box, in PR #5150, by @OEvgeny
- Added keyboard navigation support into suggested actions, in PR #5154, by @OEvgeny
- Fixes #5166. Fixed "attach file" button in iOS Safari should looks the same as on other platforms, in PR #5167, by @compulim
- (Experimental) Added
<LocalizeString />
component which can be used to localize strings, by @OEvgeny in PR #5140 - Added
<ThemeProvider>
component to apply theme pack to Web Chat, by @compulim, in PR #5120 - Added
useMakeThumbnail
hook option to create a thumbnail from the file given, by @compulim, in PR #5123 and #5122 - Added
moduleFormat
andtranspiler
build info to<meta>
tag, in PR #5148, by @compulim - Added support of rendering HTML-in-Markdown, in PR #5161 and PR #5164, by @compulim, @beyackle2, and @OEvgeny
Fixed
- Fixes #5050. Fixed focus should not blur briefly after tapping on a suggested action, by @compulim, in PR #5097
- Fixes #5111. Fixed keyboard help screen to use HTML description list, by @compulim, in PR #5116
- Fixes #5080. Fixed
dateToLocaleISOString
for handling sub-hour, by @marclundgren, in PR #5114 - Fixes #5146. Fixed chat history focus indicator should not show up on tap, by @OEvgeny, in PR #5145
- Fixes type portability issues by exporting types from all exported code, in PR #5148, by @compulim
- Fixes missing exports of
useNotifications
, in PR #5148, by @compulim - Fixes suggested actions keyboard navigation skips actions after suggested actions got updated, in PR #5150, by @OEvgeny
- Fixes #5155. Fixed "Super constructor null of anonymous class is not a constructor" error in CDN bundle by bumping to
webpack@5.91.0
, in PR #5156, by @compulim
Changed
[4.16.0] - 2023-11-16
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-4LcbsBbx9Pr+/7Hm0HxHOuhHMFlbf4ecmHUekoAnbBRiURTJx3HaaLuo7PrP1aBD"
src="https://cdn.botframework.com/botframework-webchat/4.16.0/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-fhdXAQj5PD+9CBeiZ3dGYjJ3mzH1DePD30cKtJKWzGxyioYiNYOaw5oRw7+AMg+e"
src="https://cdn.botframework.com/botframework-webchat/4.16.0/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-7tv7NO7xJd/dCNFy3qBd+Nxqhbi2Zx+Voh6YuCr4BqwoIMRevb4O89giG8kshrCF"
src="https://cdn.botframework.com/botframework-webchat/4.16.0/webchat-minimal.js"
></script>
Changelog
Breaking changes
- Starting from 4.16.0, Internet Explorer is no longer supported
- After more than a year of the Internet Explorer 11 officially retirement, we decided to stop supporting Internet Explorer. This will help us to bring new features to Web Chat
- 4.15.9 is the last version which supports Internet Explorer in limited fashion
useTextBoxValue
setter will no longer replace emoticon with emoji, in PR #4861
Fixed
- Fixes #4865. Fixed CTRL + Z should undo correctly, by @compulim, in PR #4861
- Fixes #4863. Disable dark theme for link references until chat history has dark theme support, by @compulim, in PR #4864
- Fixes #4866. Citation modal show fill screen width on mobile device and various fit-and-finish, by @compulim, in PR #4867
- Fixes #4878.
createStore
should return type ofRedux.Store
, by @compulim, in PR #4877 - Fixes #4957. Native chevron of the accordion in citation should be hidden, by @compulim, in PR #4958
Added
- Resolves #4853. Shorten URLs in link definitions UI, by @compulim, in PR #4860
- Resolves #4840. Added feedback buttons in activity status, by @compulim, in PR #4846
- Resolves #4841. Added link definitions UI in Markdown, by @compulim, in PR #4846
- Resolves #4842. Added provenance in activity status, by @compulim, in PR #4846
- Resolves #4856. Added types for
useStyleSet
, by @compulim, in PR #4857
[4.15.9] - 2023-08-25
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-kr+6QqBRD45fWiraMYzQdm0CpHzmKMtNk0gRLBVqa379eQdjCHNnm8jfmAhiOQnI"
src="https://cdn.botframework.com/botframework-webchat/4.15.9/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-04jpTOxuj3fbYmyDC2/jU3rdwhoC4OWnNbo6zh6RNEq+qvzNggRWDzdN788GnXs6"
src="https://cdn.botframework.com/botframework-webchat/4.15.9/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-nCB7vnhkKK/wLHWq8fqOaZM5YlsR0X/6FcS31MOnl7aYmMB+qo3qPp0hacahdAbN"
src="https://cdn.botframework.com/botframework-webchat/4.15.9/webchat-minimal.js"
></script>
Changelog
Fixed
- Fixes #4718. In high contrast mode, Adaptive Card buttons, when pushed, should highlighted properly, by @compulim, in PR #4746
- Fixes #4721 and #4726. Adaptive Cards
TextBlock
heading elements should start at level 2, by @compulim, in PR #4747 - Fixes #3699. Correcting timestamp roundoff, by @compulim, in PR #4821
[4.15.8] - 2023-06-06
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-4vGD9F0KRTew8maUTxtkCq0vbJDB+o05wRdhSEP3HGU6P6Nob7gt+OG//fYfvbYL"
src="https://cdn.botframework.com/botframework-webchat/4.15.8/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-aMT2td/gP8Wy5N+3pVTV0Wc85z8P9UoNGMZbLEHr8kqbySXFXGLJ1uzwYUGVmIQe"
src="https://cdn.botframework.com/botframework-webchat/4.15.8/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-Tzp6VuLIY8CEHwULCIzP6jdMkjhjWK7M13mHKSObh5Rh0MQoptGsA11NDs9qpvL6"
src="https://cdn.botframework.com/botframework-webchat/4.15.8/webchat-minimal.js"
></script>
Changelog
Breaking changes
- When
activity.channelData['webchat:fallback-text']
is present but empty, it will no longer appliesaria-hidden
to the activity- The activity will not be narrated through live region. However, when navigating the transcript, it will be narrated as empty
- To make an activity presentational or hide from screen reader, please use
activityMiddleware
to customize the rendering
Added
- Resolved #4643. Decoupling
botframework-directlinejs
from business logic of Web Chat for better tree-shaking, by @compulim, in PR #4645 and PR #4648 - Resolved #4650. Added automated accessibility check using
axe-core
- Add
axe-core
in end-to-end tests, by @compulim, in PR #4704 - HTML test: using
<main>
for the root container, by @compulim, in PR #4684 and PR #4704 - HTML test: changed contrast ratio in tests that use different background colors, by @compulim, in PR #4686 and PR #4704
- Added
ponyfill
prop to<ReactWebChat>
/<Composer>
andcreateStoreWithOptions
, by @compulim, in PR #4662- This is for development scenarios where fake timer is needed and will only applies to Web Chat only
- HTML test: fix accessibility issues on HTML file, by @compulim, in PR #4685
- HTML test: ensure all images has alternate text, by @compulim, in PR #4704
- Adaptive Cards: always set
role
attribute, by @compulim, in PR #4704 - Adaptive Cards: update host config to use lighter color for disabled inputs, by @compulim, in PR #4704
- Keyboard help screen: remove
<header>
container, by @compulim, in PR #4704 - Live region: added
<label>
for input fields in Adaptive Cards, by @compulim, in PR #4704
- Add
Fixed
- Fixes #4557. Flipper buttons in carousels and suggested actions is now renamed to "next/previous" from "left/right", by @compulim, in PR #4646
- Fixes #4652. Keyboard help screen, activity focus traps, and chat history terminator should not be hidden behind
aria-hidden
because they are focusable, by @compulim, in PR #4659 - Fixes #4665. Updated development server with latest ESBuild API, by @compulim, in PR #4662.
- Fixes #4706. Send button and ENTER key should function after reconnected, by @compulim, in PR #4707.
- Fixes #4708. Should function properly in browsers without
setImmediate
or without passingstore
prop, by @compulim, in PR #4709.
Changed
- Bumped all dependencies to the latest versions, by @compulim in PR #4647, PR #4655, and PR #4737
- Production dependencies
- Development dependencies
@types/node@18.14.1
@types/react@18.0.28
@typescript-eslint/eslint-plugin@5.53.0
@typescript-eslint/parser@5.53.0
adm-zip@0.5.10
babel-jest@29.4.3
babel-loader@9.1.2
chalk@5.2.0
concurrently@7.6.0
core-js@3.28.0
dotenv@16.0.3
esbuild@0.17.10
eslint-config-prettier@8.6.0
eslint-plugin-react@7.32.2
eslint-plugin-security@1.7.1
eslint@8.34.0
express@4.18.2
glob@8.1.0
http-proxy-middleware@2.0.6
husky@8.0.3
jest-image-snapshot@6.1.0
jest-junit@15.0.0
jest@29.4.3
lerna@6.5.1
lint-staged@13.1.2
node-dev@8.0.0
node-fetch@2.6.9
nopt@7.0.0
prettier@2.8.4
restify@11.1.0
selenium-webdriver@4.8.1
serve-handler@6.1.5
serve@14.2.0
source-map-loader@4.0.1
typescript@4.9.5
webpack-cli@5.0.1
webpack-stats-plugin@1.1.1
webpack@5.75.0
- Sample dependencies
v4.15.7
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-fUKSEwGc3/WXaZ4SN0Mm5DglQXbtPJFIgeN79b369v6duzoU3wP1Ix9zdxugfDBR"
src="https://cdn.botframework.com/botframework-webchat/4.15.7/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-1T+LvOs6/1ShG/+c7tarxIR/J0dUIjrba2M9SbyOv9Ls8ElcnhLZFnLGdiVf/u4W"
src="https://cdn.botframework.com/botframework-webchat/4.15.7/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-kkb9jeNuZWQaueb4XkclbjwjfB0IOH2gjCFEHgKVVtrpqqdUmJtjXqGBeGsb2DZT"
src="https://cdn.botframework.com/botframework-webchat/4.15.7/webchat-minimal.js"
></script>
Changelog
Added
- Added function to emit status change telemetry event for activities, by @Erli-ms, in PR #4631
- Added ability for developers to customize Web Chat by extending the default UI without having to re-implement existing components, by @dawolff-ms, in PR #4539
Fixed
- Fixes #4558. In high contrast mode, "Retry" link button should use link color as defined by CSS System Colors, by @beyackle2 in PR #4537
- Fixes #4566. For YouTube and Vimeo
<iframe>
, addsandbox="allow-same-origin allow-scripts"
, by @compulim in PR #4567 - Fixes #4561. Header title of keyboard help dialog should be the
aria-labelledby
of the dialog and close button should be the first element of the header, by @compulim in PR #4609 - Fixes #4559. Keyboard help screen should be scrollable and its close button should appear correctly in light-themed high contrast mode, by @compulim in PR #4619
- Fixes #4623. Screen reader should read error when failed to send an empty message or offline, by @compulim in PR #4637
Changed
- Updated test harness to use Selenium Hub 4.6.0 and Chrome 107, by @compulim in PR #4540
[4.15.6] - 2022-12-01
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-BChMYgWOMDj3xBzl1hyoByer96YSj9RSbu55SgoyLhiGtCkcIPCTaMCfC81FdJra"
src="https://cdn.botframework.com/botframework-webchat/4.15.6/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-Ik2jNknNTBCaI/NP3GRMfDCWKnApGSdYMcdA6EtEJkL1LtUZEdNdjeNkfZZk3UlS"
src="https://cdn.botframework.com/botframework-webchat/4.15.6/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-PH82AmArERnsV9DCQozdeAUGwiuy/1cchDvHaQmgdS9+/qvWqX2lY3rwz7aPpCYN"
src="https://cdn.botframework.com/botframework-webchat/4.15.6/webchat-minimal.js"
></script>
Changelog
Fixed
- Fixes #4501. Outgoing activities restored from chat service should be marked as sent, by @compulim in PR #4532
Changed
- Fixes #4523. Bumped Microsoft Cognitive Services Speech SDK to
microsoft-cognitiveservices-speech-sdk@1.17.0
, by @compulim in PR #4533- Also bumped
web-speech-cognitive-services@7.1.3
- Also bumped
[4.15.5] - 2022-11-16
Subresource Integrity
The CDN URL will be online in about a day after we completed publish to NPM.
<script
crossorigin="anonymous"
integrity="sha384-yZ3Ugoikjn2nnqUATWlZR3e2PfDz/fopbI/J77anxs6pnoauHENVS3hObWSAOxmr"
src="https://cdn.botframework.com/botframework-webchat/4.15.5/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-t278QukjDZq/zQN4GdMwm+wPjb3glhiqydECL5o9le9PfgGwgACfwkARzlGj6GeI"
src="https://cdn.botframework.com/botframework-webchat/4.15.5/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-L/K5c9oKPS2+VbgxTOXnHL/fQQg9G+agAc1eB3I3t/+XnXdGHOqs8kMB9ViQTSMQ"
src="https://cdn.botframework.com/botframework-webchat/4.15.5/webchat-minimal.js"
></script>
Changelog
Fixed
- Card action image alt text should use
imageAltText
field and fallback totext
field, by @compulim in PR #4333 - Fixes #4472. Removed
role
attributes for notification bar and use<div>
instead of<ul>
/<li>
, by @compulim in PR #4475 - Fixes #4393. Renders
<section role="feed">
only if there are one or more activities contained within, by @beyackle2 and @compulim, in PR #4420 - Fixes #4473. Bumped
strip-ansi@6.0.1
fortest-harness
as@^7
does not support CommonJS project, by @compulim in PR #4474 - Fixes #4476. When focus on the keyboard help screen, it should focus on the close button, by @compulim in PR #4479
- Fixes #4442. Change the keyboard help screen string "Leave message" to "Exit message", by @compulim in PR #4479
Changed
- Bumped Adaptive Cards to
adaptivecards@2.11.1
, by @compulim in PR #4424 - Bumped Microsoft Cognitive Services Speech SDK to
microsoft-cognitiveservices-speech-sdk@1.23.0
, by @compulim in PR #4424- Also bumped
web-speech-cognitive-services@7.1.2
- Also bumped
- Bumped all dependencies to the latest versions, by @compulim in PR #4423 and #4435
- Production dependencies
- Development dependencies
@babel/core@7.19.1
@babel/plugin-transform-runtime@7.19.1
@babel/plugin-transform-typescript@7.19.1
@babel/preset-env@7.19.1
@babel/runtime@7.19.0
@types/node@18.7.22
@types/react@18.0.21
@typescript-eslint/eslint-plugin@5.38.0
@typescript-eslint/parser@5.38.0
babel-jest@29.0.3
concurrently@7.4.0
core-js@3.25.3
dotenv@16.0.2
esbuild@0.15.9
eslint-plugin-react@7.31.8
eslint@8.24.0
jest-image-snapshot@5.2.0
jest-junit@14.0.1
jest@29.0.3
lerna@5.5.2
nodemon@2.0.20
terser-webpack-plugin@5.3.6
typescript@4.8.3
webpack-stats-plugin@1.1.0
[4.15.4] - 2022-09-15
Subresource Integrity
<script
crossorigin="anonymous"
integrity="sha384-hm7B00mbtnkFvRyz6+PZuG2yfM3JaBdEUPYw7BEPKQWZqu1s3G8KFiyOIqOMEk+v"
src="https://cdn.botframework.com/botframework-webchat/4.15.4/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-9pDJTvPL0wLKBbhzIDeYtyOXpMQgf3VVqPMKPWKTs+p/J8oOqOEy0piRhj9Atlzz"
src="https://cdn.botframework.com/botframework-webchat/4.15.4/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-yyVMTpA21TwmR+Cfm3ktfuYwApD/XUCxVYOSfUssIKI05H25L/2D5bJQ817fFsMp"
src="https://cdn.botframework.com/botframework-webchat/4.15.4/webchat-minimal.js"
></script>
Changelog
Fixed
- Fixes #4403. Patched Unicode CLDR database which caused file upload in Polish to appear blank, by @compulim, in PR #4404
- Fixes #4412. Fixed inconsistent in
packages/support/cldr-data/package.json
, by @compulim, in PR #4411
Changed
- Bumped all dependencies to the latest versions, by @compulim in PR #4392
- Production dependencies
- Development dependencies
@babel/cli@7.18.10
@babel/core@7.18.10
@babel/plugin-proposal-class-properties@7.18.6
@babel/plugin-proposal-object-rest-spread@7.18.9
@babel/plugin-transform-runtime@7.18.10
@babel/plugin-transform-typescript@7.18.12
@babel/preset-env@7.18.10
@babel/preset-react@7.18.6
@babel/preset-typescript@7.18.6
@babel/runtime@7.18.9
@emotion/react@11.10.0
@fluentui/react@8.87.1
@types/node@18.7.1
@types/react@18.0.17
@typescript-eslint/eslint-plugin@5.33.0
@typescript-eslint/parser@5.33.0
babel-jest@28.1.3
babel-loader@8.2.5
babel-plugin-transform-inline-environment-variables@0.4.4
concurrently@7.3.0
core-js@3.24.1
dotenv@16.0.1
error-stack-parser@2.1.4
esbuild@0.15.1
eslint-plugin-prettier@4.2.1
eslint-plugin-react-hooks@4.6.0
eslint-plugin-react@7.30.1
eslint-plugin-security@1.5.0
eslint@8.21.0
express@4.18.1
http-proxy-middleware@2.0.6
husky@8.0.1
jest-environment-node@28.1.3
jest-image-snapshot@5.1.0
jest-junit@14.0.0
jest-trx-results-processor@3.0.1
jest@28.1.3
lerna@5.4.0
lint-staged@13.0.3
node-dev@7.4.3
nodemon@2.0.19
nopt@6.0.0
prettier@2.7.1
react-scripts@5.0.1
selenium-webdriver@4.4.0
serve@14.0.1
source-map-loader@4.0.0
strip-ansi@7.0.1
terser-webpack-plugin@5.3.3
typescript@4.7.4
webpack-cli@4.10.0
webpack@5.74.0
[4.14.2] - 2022-09-06
Subresource Integrity
<script
crossorigin="anonymous"
integrity="sha384-TX+6Xqq20HcCfn9vFBfivPrnGantvLj6bVoeZMiRt3TDf7QL0l3y0h5NfXPHeMYD"
src="https://cdn.botframework.com/botframework-webchat/4.14.2/webchat.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-rICoECir+m94sA3D9FN2nWP76JKfcGJA5uhCZ/nSM3JNYWtnqUk5mHCgVvgWE+if"
src="https://cdn.botframework.com/botframework-webchat/4.14.2/webchat-es5.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-FDtL64x1C0SfN3jynhpEExETYworgZHfADHx+04wRT4RGxeXQulwMv7u9s8gUkkZ"
src="https://cdn.botframework.com/botframework-webchat/4.14.2/webchat-minimal.js"
></script>