Skip to content

Commit 32ae93a

Browse files
bump up directline (#5686)
* bump up directline * changelog entry * modify changelog entry
1 parent e78ed2d commit 32ae93a

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ Breaking changes in this release:
320320
- Text attachment and related components, in PR [#5670](https://github.com/microsoft/BotFramework-WebChat/pull/5670), by [@OEvgeny](https://github.com/OEvgeny)
321321
- (Experimental) Added custom variants support for `botframework-webchat-fluent-theme` package, in PR [#5675](https://github.com/microsoft/BotFramework-WebChat/pull/5675), by [@OEvgeny](https://github.com/OEvgeny)
322322
- Improved adaptive cards rendering in copilot variant, in PR [#5682](https://github.com/microsoft/BotFramework-WebChat/pull/5682), by [@OEvgeny](https://github.com/OEvgeny)
323+
- Bumped to [`botframework-directlinejs@0.15.8`](https://www.npmjs.com/package/botframework-directlinejs/v/0.15.8) to include support for the new `streaming` property, by [@pranavjoshi001](https://github.com/pranavjoshi001), in PR [#5686](https://github.com/microsoft/BotFramework-WebChat/pull/5686)
323324

324325
### Deprecated
325326

package-lock.json

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

packages/bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
"dependencies": {
220220
"@babel/runtime": "7.28.4",
221221
"adaptivecards": "3.0.5",
222-
"botframework-directlinejs": "0.15.6",
222+
"botframework-directlinejs": "0.15.8",
223223
"botframework-directlinespeech-sdk": "0.0.0-0",
224224
"botframework-webchat-api": "0.0.0-0",
225225
"botframework-webchat-component": "0.0.0-0",

packages/bundle/src/createDirectLine.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ type CreateDirectLineOptions = {
88
fetch?: typeof window.fetch;
99
pollingInterval?: number;
1010
secret?: string;
11+
streaming?: boolean;
1112
streamUrl?: string;
1213
token?: string;
1314
watermark?: string;
@@ -22,6 +23,7 @@ export default function createDirectLine({
2223
fetch,
2324
pollingInterval,
2425
secret,
26+
streaming,
2527
streamUrl,
2628
token,
2729
watermark,
@@ -36,6 +38,7 @@ export default function createDirectLine({
3638
fetch,
3739
pollingInterval,
3840
secret,
41+
streaming,
3942
streamUrl,
4043
token,
4144
watermark,

packages/repack/botframework-directlinejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"pinDependencies": {},
2323
"localDependencies": {},
2424
"dependencies": {
25-
"botframework-directlinejs": "0.15.6"
25+
"botframework-directlinejs": "0.15.8"
2626
},
2727
"devDependencies": {
2828
"esbuild": "^0.27.2"

0 commit comments

Comments
 (0)