Skip to content

Commit

Permalink
Merge branch 'main' into feat-flipper-next-previous
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim authored Feb 16, 2023
2 parents a8607e6 + 30b6b3c commit 4b735b0
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

- Resolved [#4643](https://github.com/microsoft/BotFramework-WebChat/issues/4643). Decoupling `botframework-directlinejs` from business logic of Web Chat for better tree-shaking, by [@compulim](https://github.com/compulim), in PR [#4645](https://github.com/microsoft/BotFramework-WebChat/pull/4645)

### Fixed

- Fixes [#4557](https://github.com/microsoft/BotFramework-WebChat/issues/4557). Flipper buttons in carousels and suggested actions is now renamed to "next/previous" from "left/right", by [@compulim](https://github.com/compulim), in PR [#4646](https://github.com/microsoft/BotFramework-WebChat/pull/4646)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botframework-webchat-root",
"version": "4.15.7",
"version": "4.15.8-0",
"private": true,
"files": [
"lib/**/*"
Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/sagas/connectSaga.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { call, cancel, cancelled, fork, put, race, take } from 'redux-saga/effects';

import { ConnectionStatus } from 'botframework-directlinejs';
import decode from 'jwt-decode';

import { CONNECT } from '../actions/connect';
Expand All @@ -15,7 +14,9 @@ import { DISCONNECT, DISCONNECT_PENDING, DISCONNECT_FULFILLED } from '../actions

import { RECONNECT } from '../actions/reconnect';

const { Connecting: CONNECTING, Online: ONLINE, Uninitialized: UNINITIALIZED } = ConnectionStatus;
const CONNECTING = 1;
const ONLINE = 2;
const UNINITIALIZED = 0;

function randomUserID() {
return `r_${uniqueID().substr(0, 10)}`;
Expand Down
11 changes: 11 additions & 0 deletions packages/embed/servicingPlan.json
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,17 @@
"sha384-Ik2jNknNTBCaI/NP3GRMfDCWKnApGSdYMcdA6EtEJkL1LtUZEdNdjeNkfZZk3UlS"
]
],
"deprecation": "This version of Web Chat is deprecated. Please upgrade as soon as possible. We will automatically upgrade this site on or after 2025-02-15.",
"private": true,
"versionFamily": "4"
},
"4.15.7": {
"assets": [
[
"https://cdn.botframework.com/botframework-webchat/4.15.7/webchat-es5.js",
"sha384-1T+LvOs6/1ShG/+c7tarxIR/J0dUIjrba2M9SbyOv9Ls8ElcnhLZFnLGdiVf/u4W"
]
],
"private": true,
"versionFamily": "4"
},
Expand Down

0 comments on commit 4b735b0

Please sign in to comment.