Skip to content

Latest commit

 

History

History
58 lines (35 loc) · 2.16 KB

CHANGELOG.md

File metadata and controls

58 lines (35 loc) · 2.16 KB

botbuilder-adapter-webex changelog

1.0.9

  • Test for presence of channelData before accessing it. Thanks @viveksyngh for the pull request

  • Update dependencies to Botkit 4.10, Bot Framework 4.10

1.0.8

  • Update dependencies to Botkit 4.9, Bot Framework 4.9
  • New: Add abilbity to start conversations or reply in a thread. Thanks to @billyzoellers for the pull request

1.0.6

  • Fix issue where empty files field would cause issues. Thanks to @viveksyngh - PR #1906
  • Update to latest Webex API client library.

1.0.5

  • Update to latest Webex API client library.
  • Fix to mention stripping to better support Webex web client formatting
  • Update dependencies (Bot Framework to 4.6, Botkit to 4.6)

1.0.3

Developers who wish to use this brand new feature should add the following lines to their bot.js file in order to create a dedicated webhook for receiving card submissions from the Webex client. Note that this is necessary due to a bug in the Webex webhook service, and will be removed from future versions.

controller.ready(async function() {
    await controller.adapter.registerAdaptiveCardWebhookSubscription('/api/messages');
});

Once enabled, your bot will receive attachmentActions events with message.inputs set to include values from the card.

1.0.2

  • Update dependencies (Bot Framework to 4.5.2, Botkit to 4.5)
  • Fix for file attachments

1.0.1

  • 1:1 messages between bot and user will now emit direct_message events instead of message events
  • Messages will now have orgId, appId and actorId fields
  • Add enable_incomplete option to allow adapter to start without a complete config.

1.0.0

First release