From 7d67f262c965db27948f5d64352ddd6ce5e51ecd Mon Sep 17 00:00:00 2001 From: William Wong Date: Fri, 13 Dec 2019 01:42:19 +0800 Subject: [PATCH] Add Object.is (#2719) --- CHANGELOG.md | 7 ++++--- packages/bundle/src/index-es5.ts | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fba3249d91..3aa4d8e60a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,9 +75,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixes [#2700](https://github.com/microsoft/BotFramework-WebChat/issues/2700). Enable `` and Adaptive Cards in recompose story, in PR [#2649](https://github.com/microsoft/BotFramework-WebChat/pull/2649) - Moved `` from `` to `` - Moved WebSpeechPonyfill patching code from `` to `` -- Fixes [#2699](https://github.com/microsoft/BotFramework-WebChat/issues/2699). Disable speech recognition and synthesis when using Direct Line Speech under IE11, in PR [#2649](https://github.com/microsoft/BotFramework-WebChat/pull/2649) -- Fixes [#2709](https://github.com/microsoft/BotFramework-WebChat/issues/2709). Reduce wasted render of activities by memoizing partial result of ``, in PR [#2710](https://github.com/microsoft/BotFramework-WebChat/pull/2710) -- Fixes [#2710](https://github.com/microsoft/BotFramework-WebChat/issues/2710). Suggested actions container should persist for AT, by [@corinagum](https://github.com/corinagum) in PR [#2710](https://github.com/microsoft/BotFramework-WebChat/pull/2710 +- Fixes [#2699](https://github.com/microsoft/BotFramework-WebChat/issues/2699). Disable speech recognition and synthesis when using Direct Line Speech under IE11, by [@compulim](https://github.com/compulim), in PR [#2649](https://github.com/microsoft/BotFramework-WebChat/pull/2649) +- Fixes [#2709](https://github.com/microsoft/BotFramework-WebChat/issues/2709). Reduce wasted render of activities by memoizing partial result of ``, by [@compulim](https://github.com/compulim) in PR [#2710](https://github.com/microsoft/BotFramework-WebChat/pull/2710) +- Fixes [#2710](https://github.com/microsoft/BotFramework-WebChat/issues/2710). Suggested actions container should persist for AT, by [@corinagum](https://github.com/corinagum) in PR [#2710](https://github.com/microsoft/BotFramework-WebChat/pull/2710) +- Fixes [#2718](https://github.com/microsoft/BotFramework-WebChat/issues/2718). Add `Object.is` polyfill for IE11, by [@compulim](https://github.com/compulim) in PR [#2719](https://github.com/microsoft/BotFramework-WebChat/pull/2719) ### Changed diff --git a/packages/bundle/src/index-es5.ts b/packages/bundle/src/index-es5.ts index da7df07edb..f882a0b02d 100644 --- a/packages/bundle/src/index-es5.ts +++ b/packages/bundle/src/index-es5.ts @@ -13,6 +13,7 @@ import 'core-js/features/dom-collections'; import 'core-js/features/math/sign'; import 'core-js/features/number/is-finite'; import 'core-js/features/object/assign'; +import 'core-js/features/object/is'; import 'core-js/features/object/values'; import 'core-js/features/promise'; import 'core-js/features/promise/finally';