Skip to content

05/15/2020

Compare
Choose a tag to compare
@garypretty garypretty released this 15 May 12:50
· 210 commits to develop since this release
d63bde1

UPDATED - Significant update to Google Adapter

This release sees a significant update to the Google adapter, aligning with the recent update to the Alexa adapter.

As part of the update the adapter has seen the following key improvements;

  • Smart concatenation of outgoing activities (meaning multiple activities can be send and will be combined into a single response for Alexa, including attachments and SSML markup).
  • Markdown parsing - the adapter will convert common markdown, such as lists, headings, links and paragraphs, into speakable sentences.

Also significant update to Google docs -> https://github.com/BotBuilderCommunity/botbuilder-community-dotnet/blob/develop/libraries/Bot.Builder.Community.Adapters.Google

NEW - New InfoBip WhatsApp adapter

The Infobip WhatsApp adapter enables receiving and sending WhatsApp messages. The Infobip adapter allows you to add an additional endpoint to your bot for receiving WhatsApp messages.

The adapter currently supports the following scenarios:

Send/receive text messages
Send/receive media messages (document, image, video, audio) - Supported formats for media message types available here
Send/receive location messages
Send template messages
Verification of incoming Infobip requests
Receive delivery reports
Receive seen reports
Callback data - You can add some data in every message and that data will be returned to bot in the delivery report for that message
Full incoming request from Infobip is added to the incoming activity as ChannelData

NEW - New Adaptive Dialog Actions for REST

his package contains additional adaptive dialogs, beyond those offered out of the box by the Bot Builder v4 .NET SDK. RestAction is the abstraction for accessing REST operations and their payload data types.

Thanks to @sbiaudet for effort and contribution!