Skip to content

Releases: microsoft/BotFramework-DirectLineJS

[0.12.0] - 2020-06-04

04 Jun 23:07
Compare
Choose a tag to compare

Added

  • Added support of Direct Line App Service Extension, by @ckkashyap, in PR #183 and #274
  • Added support for Retry-After header and version information to x-ms-bot-agent header, by @swagatmishra2007, in PR #247
    • Also improved testability of the package

Changed

[0.11.6] - 2019-10-25

25 Oct 18:38
Compare
Choose a tag to compare

NPM

npm install botframework-directlinejs@0.11.6

Bundle

<script
  crossorigin="anonymous"
  integrity="sha384-7aeOL7r9BM1QyTIsoLYJYNsRLfVnQCtLmwgXlxteDNhJf0xUGj9PKP8F5w2Fx92/"
  src="https://unpkg.com/botframework-directlinejs@0.11.6/dist/directline.js"
></script>

Changelog

Fixed

[0.11.5] - 2019-09-30

30 Sep 20:51
Compare
Choose a tag to compare

Subresource integrity

This link is for development use only.

<script
  crossorigin="anonymous"
  integrity="sha384-3mlfQLpRi0DiYXOTTCoxvCZcxBKMOEcoCiM29nT1MhaidO7OS772Pg0L3A0CQ0Th"
  src="https://github.com/microsoft/BotFramework-DirectLineJS/releases/download/v0.11.5/directLine.js"
></script>

Changelog

Breaking Changes

  • Build folders updated
    • /dist/ contains JavaScript bundle
      • /dist/directline.js is now in lowercase
    • /lib/ contains ES modules and type definitions
  • Build scripts updated
    • npm run build: Development build, with instrumentation code, one-off
    • npm run start: Development build, with instrumentation code, with watch
    • npm run prepublishOnly: Production build, minified, one-off

Changed

Added

  • Fix #235. Added metadata when uploading attachments, including thumbnailUrl, by @compulim, in PR #236

Fixed

  • Avoid posting an error on intentional end, by @orgads in PR #172
  • Surface Web Socket errors, by @orgads in PR #171

Continuous integration build for Direct Line Streaming Extensions

14 Sep 07:47
Compare
Choose a tag to compare

This build will be updated on every push. Please do not use it in production environment.

v0.11.4

04 Mar 21:30
Compare
Choose a tag to compare

Changed

  • Change reconnect delay to be a random amount between 3s and 15s, by @mingweiw in PR #164

Fixed

v0.11.4-0

01 Mar 23:15
Compare
Choose a tag to compare
0.11.4-0

v0.11.3

01 Mar 23:01
Compare
Choose a tag to compare
0.11.3

v0.11.2

06 Feb 01:19
Compare
Choose a tag to compare

Fixed

  • Fixed an issue where pollingInterval set to undefined would cause high polling rate, by @cwhitten and @compulim, in PR #157

Changed

  • Used @babel/preset-typescript and webpack@4 to build, in PR #156
    • Moved to inline source map for pre-bundle
    • Added .editorconfig and .vscode for new line and tab size rules

v0.11.1

31 Jan 18:04
Compare
Choose a tag to compare

Fixed

  • Fixed an issue causing a header to be incorrectly generated. #153

v0.11.0

28 Jan 22:06
Compare
Choose a tag to compare

Added

  • Added protection against user-given pollingInterval values #129
  • Added custom user agent and header #148

Fixed

  • errorConversationEnded no longer thrown when calling DirectLine#end, by @orgads, in PR #133