Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PromptChoice case insensitive issue when matching options #2685

Conversation

ejadib
Copy link
Contributor

@ejadib ejadib commented May 2, 2017

Options matching was failing in a PromptChoice like the following:

 var severities = new string[] { "High", "Normal", "Low" };
PromptDialog.Choice(context, this.SeverityMessageReceivedAsync, severities, "Choose the severity");

due to missing case insensitive match. The user message is being converted to lower case, however, the option was maintaining the original case. This PR fix this by converting the option to lower case too.

@msft-shahins msft-shahins merged commit c7978b3 into microsoft:develop May 2, 2017
msft-shahins added a commit that referenced this pull request May 2, 2017
Merge master to develop
Squashed commit of the following:

commit a1c1c7b
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:49:39 2017 -0700

    Add default CancellationToken to Forward extension method (#2677)

commit af06e37
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:48:13 2017 -0700

    Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

commit 430a5ea
Merge: 3f3c13d 9df6cc3
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue May 2 10:06:23 2017 -0700

    Merge pull request #2362 from iMicknl/de-locale-node

    [Node SDK] Added German (de) locale for NodeJS BotBuilder

commit 3f3c13d
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 13:54:21 2017 -0700

    Fix failing BotDispatcher test after merge

commit 5ecf2d3
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 13:05:21 2017 -0700

    No null collections (#2673)

    * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

    * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

commit 682ed17
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 11:51:41 2017 -0700

    Add machine translated resource files for new resource strings

commit fb5314a
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 12:30:31 2017 -0700

    Api extensions (#2672)

    * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

    * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

    * GetValueOrDefault for IBotDataBag

    * IActivity.TryGetChannelData<T>(out T instance)

commit 0b0887f
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:27:22 2017 -0700

    Published beta 8

commit b19de3b
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:25:00 2017 -0700

    Support for updating & deleting existing messages.

commit 1e05916
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 15:09:48 2017 -0700

    Return ID's for sent messages.

commit 20c6493
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri Apr 28 16:50:43 2017 -0700

    Update assembly info for 3.5.8 release

commit db2b8f8
Author: Chris McConnell <chrimc@microsoft.com>
Date:   Fri Apr 21 13:06:49 2017 -0700

    Cherry-pick develop commit d23b639..57b7275

    Switch LUIS resolution to handle objects rather than just strings.

    Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
    Can modify the luis request through attributes, the service or the dialog.
    Made it so that sampling is allowed by default.
    Mark action binding as obsolete.

    [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

    * Added Min & Max to PromptInt64 & PromptDouble

    * Added speak parameter.

    * Added Speak to PromptDialog.Number

    * Add missing documentation

    [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    * Update PromptConfirm to internally use a PromptChoice

    [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

    * fix PromptChoice special case

    * fix range for RecognizeInteger

    * fix ordinal resources

    Fix build break after merge of pull requests

    Update issue template to remove #

    Partially address #2658

    Merge pull request #2659 from ejadib/patch-2

    Update issue template to remove #

    Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

commit c80cdce
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:25:20 2017 -0700

    Published new 3.8 beta7 build

commit 17e6381
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:16:36 2017 -0700

    Fixed RouteHandler spelling

commit c5bcfaf
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:13:02 2017 -0700

    Added comment for WaterfallDialog class.

commit baeaea0
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:10:46 2017 -0700

    Exposed new WaterfallDialog class.

commit 0df4849
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 13:22:14 2017 -0700

    Added automatic setting of allowSampling flag for LUIS

commit f089c1a
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 24 13:54:26 2017 -0700

    Added new IntentRecognizer bass class.

commit 0a702bc
Merge: 60d5a37 4df8945
Author: Nils <nils.whitmont@gmail.com>
Date:   Thu Apr 27 09:45:40 2017 -0700

    Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

    [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

commit 60d5a37
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 21 00:05:01 2017 -0700

    Fixed bug in ChatConnector

commit 8ee47d7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 20 15:29:47 2017 -0700

    Tweaks needed for MSTeams

commit 605eece
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 20 22:33:43 2017 -0700

    Update assembly info for 3.5.7-alpha release

commit f837319
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 6 18:15:48 2017 -0700

    cherry-pick develop commit 0a5262f..95a036e

    Update PromptConfirm's Options and Patterns getter (#2564)

    * Changed Options & Patterns getter

    * Apply feedback.

    Fix vulnerability in module base64url@1.0.6

    Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
    severity) introduced by concat-stream@1.4.10 as described here:
    https://snyk.io/test/npm/base64url/1.0.6

    Revert "Fix vulnerability in module base64url@1.0.6"

    This reverts commit a594363.

    Added spellCheck flag for LUIS to enable spell checking.

    Switch keyboards to suggested actions and deprecate KeyboardCards.

    Cleanup a few compiler warnings.

    *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

    Change IChannelCapability interface to return speak capabilities

    Add AutoInputHint IBotToUser and QueueDrainingDialogTask

    Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

    Add IMessageQueue and InputHintQueue

    Add tests for InputHintQueue

    Refresh tokens even when Forbidden is returned by channel.

    [C# SDK] Add SayAsync extension method (#2596)

    * Add SayAsync extension method

    * Fix typo on method documentation

    Update prompts to use new prompt recognizers (#2609)

    * Added PromptRecognizers & PromptOptions Speak related properties

    * Fix potential run condition when test PromptConfirm Options/Patterns

    * Update PromptStyler so it sets the message InputHint to ExpectingInput.

    * Cleanup code related to locale

    * Fix typo on IntegerOnly

    * changed PromptRecognizer resource keys to constants

    * implemented PromptChoice Options
     recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

    * fix PromptChoice with reverse ordinal selected

    * Added Localization tests for Prompts

    * Changed script for the message.InputHint

    * Moved PromptRecognizerTests resources

    * Extract IPromptRecognizers interface to use it in the PromptOptions

    * Changed RecognizeChoices signature

    * Added IPromptRecognizers documentation
    Changed name DefaultRecognizers to PromptRecognizers

    * consts PascalCase

    * Implemented PromptRecognizersCache with ConcurrentDictionary

    * Changed variable name synonyms

    * Updated multilingual files.

    * Update spanish XLF.

    * Added BooleanChoices to Spanish.

    * Added IPromptRecognizers Extension methods

    * Renamed PromptRecognizer

    * Fix Min/Max order

    * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

    Fix spanish xlf file and regenerate spanish resource file

    Fix different build warnings

    Fix typo in Luis swagger file

    Squashed commit of the following:

    commit 9891924
    Merge: 10233da 865b290
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 20 15:43:14 2017 -0700

        Merge pull request #2087 from tachyons/patch-1

        [Node SDK] Fixed typo in examples

    commit 10233da
    Merge: 86d4318 32adbd1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 13:16:26 2017 -0700

        Merge pull request #2623 from ejadib/patch-2

        Fix index when dealing with reverse ordinals

    commit 86d4318
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Wed Apr 19 15:57:31 2017 -0700

        Send "endOfConversation" activity to cortana now

    commit 32adbd1
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:40:37 2017 -0300

        Apply fix also to JS file

    commit 72dbcc3
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:35:23 2017 -0300

        Fix index when dealing with reverse ordinals

        When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

    commit a4dee8f
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 11:01:31 2017 -0700

        update issue issue template

    commit 6452560
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 10:44:22 2017 -0700

        update issue_template

    commit 5125d02
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 16:08:06 2017 -0700

        Added fix for MSTeams to allow starting of 1;1 chats.

    commit fc471c9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 15:57:46 2017 -0700

        Published v3.8.0-beta3 to npm @next tag

    commit aa9ae79
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:46:46 2017 -0700

        Removed speech sample. It's in the sample repository

    commit 7276470
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:45:02 2017 -0700

        Improvements to better support speech channels.

    commit d9fe548
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:49:41 2017 -0700

        Publisshed beta 2 of v3.8

    commit 0bd5c77
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:24:41 2017 -0700

        Tweeks needed to better support speech.

    commit e3f3826
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Thu Apr 13 16:57:43 2017 -0700

        Fix bug in suggested actions and update suggested actions sample

    commit 1cdcf7c
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:05:45 2017 -0700

        Fixes in suggested actions sample

    commit 6f54b90
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:03:58 2017 -0700

        Suggested actions support for Node.js with the new protocol

    commit 3ad8d42
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 22:07:06 2017 -0700

        Enable VSO build for bot builder nuget (#2597)

        Change bot builder app.config to copy always

        Add updateAssemblyInfo

        Add public key for delay signing the assmeblies

        Fix build issues with the public key path

        Fix Multilingual App toolkit build issue

        Remove samples from Release build

        Update builder.nuspec to only include relevant source code

    commit 51a6f33
    Merge: 9146eb7 4647095
    Author: dandriscoll <dan.driscoll@microsoft.com>
    Date:   Wed Apr 12 22:02:11 2017 -0700

        Merge pull request #2548 from Microsoft/feature/new-issue-template

        Create New Issue Template

    commit 9146eb7
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 16:20:00 2017 -0700

        Update assembly info for release

    commit 3ff57f6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:41:10 2017 -0700

        Update connector xml documentation

    commit 164e6db
    Merge: cedb5f3 b854967
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:39:00 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cedb5f3
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:34:14 2017 -0700

        Add Properties to ActivityEx object

    commit c5c03ef
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:31 2017 -0700

        Update connector assembly version

    commit a578760
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:17 2017 -0700

        Add EndOfConversationCodes

    commit b854967
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 11 09:06:13 2017 -0700

        Changed scale of calculated coverage scores.

    commit d5e21cc
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 20:36:23 2017 -0700

        Node SDK not always sending user-agent

    commit 48443a7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:29:39 2017 -0700

        Choice prompt giving wrong retry prompt.

    commit e82b3dd
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:23:30 2017 -0700

        Fixed out dated custom routes sample.

    commit ee0fb0b
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:40:02 2017 -0700

        Published beta1 release of 3.8

    commit 2818c69
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:20:00 2017 -0700

        New prompts & speech support fixes + tests

    commit 41726ff
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 7 12:27:04 2017 -0700

        New prompt system and added support for speech.

    commit 4647095
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:46:48 2017 -0700

        update issue_template.md

        Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

    commit a9c1b70
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:39:08 2017 -0700

        update issue_template.md

        Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

    commit 2725ef4
    Merge: cacbc6a 4b3ea78
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:20:58 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cacbc6a
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:17:19 2017 -0700

        Update namespace for InputHints

    commit 8622b09
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 12:56:36 2017 -0700

        Add InputHints to Activity

    commit 5f651c4
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:26:37 2017 -0700

        update md formatting of sublist items

        update formatting of sublist items in the Node/npm version section.

    commit ca3b89d
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:18:18 2017 -0700

        update issue_template.md

        Add suggestion to post issue on Stack Overflow & include link.

    commit 3312a82
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:02:56 2017 -0700

        Create issue_template.md

        Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

    commit 933995c
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:25:01 2017 -0700

        fix net45

    commit 9dff93c
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:05:54 2017 -0700

        move ctor params to be non-breaking

    commit dfcf928
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 08:34:56 2017 -0700

        update connector lib to newest swgger

    commit 410bd3c
    Merge: 0864169 2448cc9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Mar 21 16:25:47 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit 0864169
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:51:52 2017 -0800

        Update ISSUE_TEMPLATE

    commit a0d20ca
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:34:05 2017 -0800

        Update ISSUE_TEMPLATE

    commit cf265ff
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:33:32 2017 -0800

        Update ISSUE_TEMPLATE

    commit 556aa79
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:26:22 2017 -0800

        Create ISSUE_TEMPLATE

    commit 0623069
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Feb 7 14:38:15 2017 -0800

        Revert "Remove suggested actions from Activity"

        This reverts commit a71e64c.

    commit 865b290
    Author: Aboobacker MK <aboobackervyd@gmail.com>
    Date:   Sat Jan 21 22:59:26 2017 +0530

        Fixed typo in examples

commit 9891924
Merge: 10233da 865b290
Author: Nils <nils.whitmont@gmail.com>
Date:   Thu Apr 20 15:43:14 2017 -0700

    Merge pull request #2087 from tachyons/patch-1

    [Node SDK] Fixed typo in examples

commit 10233da
Merge: 86d4318 32adbd1
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 20 13:16:26 2017 -0700

    Merge pull request #2623 from ejadib/patch-2

    Fix index when dealing with reverse ordinals

commit 86d4318
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Wed Apr 19 15:57:31 2017 -0700

    Send "endOfConversation" activity to cortana now

commit 32adbd1
Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
Date:   Wed Apr 19 15:40:37 2017 -0300

    Apply fix also to JS file

commit 72dbcc3
Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
Date:   Wed Apr 19 15:35:23 2017 -0300

    Fix index when dealing with reverse ordinals

    When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

commit a4dee8f
Author: Nils Whitmont <nils.whitmont@gmail.com>
Date:   Wed Apr 19 11:01:31 2017 -0700

    update issue issue template

commit 6452560
Author: Nils Whitmont <nils.whitmont@gmail.com>
Date:   Wed Apr 19 10:44:22 2017 -0700

    update issue_template

commit 5125d02
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Tue Apr 18 16:08:06 2017 -0700

    Added fix for MSTeams to allow starting of 1;1 chats.

commit fc471c9
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Tue Apr 18 15:57:46 2017 -0700

    Published v3.8.0-beta3 to npm @next tag

commit aa9ae79
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Tue Apr 18 13:46:46 2017 -0700

    Removed speech sample. It's in the sample repository

commit 7276470
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Tue Apr 18 13:45:02 2017 -0700

    Improvements to better support speech channels.

commit d9fe548
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 14 16:49:41 2017 -0700

    Publisshed beta 2 of v3.8

commit 0bd5c77
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 14 16:24:41 2017 -0700

    Tweeks needed to better support speech.

commit e3f3826
Author: Carlos Castro <ccastro@microsoft.com>
Date:   Thu Apr 13 16:57:43 2017 -0700

    Fix bug in suggested actions and update suggested actions sample

commit 1cdcf7c
Author: Carlos Castro <ccastro@microsoft.com>
Date:   Mon Mar 27 15:05:45 2017 -0700

    Fixes in suggested actions sample

commit 6f54b90
Author: Carlos Castro <ccastro@microsoft.com>
Date:   Mon Mar 27 15:03:58 2017 -0700

    Suggested actions support for Node.js with the new protocol

commit 3ad8d42
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 12 22:07:06 2017 -0700

    Enable VSO build for bot builder nuget (#2597)

    Change bot builder app.config to copy always

    Add updateAssemblyInfo

    Add public key for delay signing the assmeblies

    Fix build issues with the public key path

    Fix Multilingual App toolkit build issue

    Remove samples from Release build

    Update builder.nuspec to only include relevant source code

commit 51a6f33
Merge: 9146eb7 4647095
Author: dandriscoll <dan.driscoll@microsoft.com>
Date:   Wed Apr 12 22:02:11 2017 -0700

    Merge pull request #2548 from Microsoft/feature/new-issue-template

    Create New Issue Template

commit 9146eb7
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 12 16:20:00 2017 -0700

    Update assembly info for release

commit 3ff57f6
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 12 15:41:10 2017 -0700

    Update connector xml documentation

commit 164e6db
Merge: cedb5f3 b854967
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 12 15:39:00 2017 -0700

    Merge remote-tracking branch 'botbuilder-public/master'

commit cedb5f3
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 12 15:34:14 2017 -0700

    Add Properties to ActivityEx object

commit c5c03ef
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue Apr 11 15:23:31 2017 -0700

    Update connector assembly version

commit a578760
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue Apr 11 15:23:17 2017 -0700

    Add EndOfConversationCodes

commit b854967
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Tue Apr 11 09:06:13 2017 -0700

    Changed scale of calculated coverage scores.

commit d5e21cc
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 10 20:36:23 2017 -0700

    Node SDK not always sending user-agent

commit 48443a7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 10 19:29:39 2017 -0700

    Choice prompt giving wrong retry prompt.

commit e82b3dd
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 10 19:23:30 2017 -0700

    Fixed out dated custom routes sample.

commit ee0fb0b
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 10 15:40:02 2017 -0700

    Published beta1 release of 3.8

commit 2818c69
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 10 15:20:00 2017 -0700

    New prompts & speech support fixes + tests

commit 41726ff
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 7 12:27:04 2017 -0700

    New prompt system and added support for speech.

commit 4647095
Author: Nils <nils.whitmont@gmail.com>
Date:   Fri Apr 7 12:46:48 2017 -0700

    update issue_template.md

    Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

commit a9c1b70
Author: Nils <nils.whitmont@gmail.com>
Date:   Fri Apr 7 12:39:08 2017 -0700

    update issue_template.md

    Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

commit 4df8945
Author: Nils Whitmont <nils.whitmont@gmail.com>
Date:   Wed Apr 5 15:39:29 2017 -0700

    Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

commit 2725ef4
Merge: cacbc6a 4b3ea78
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 5 13:20:58 2017 -0700

    Merge remote-tracking branch 'botbuilder-public/master'

commit cacbc6a
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 5 13:17:19 2017 -0700

    Update namespace for InputHints

commit 8622b09
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed Apr 5 12:56:36 2017 -0700

    Add InputHints to Activity

commit 5f651c4
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue Apr 4 11:26:37 2017 -0700

    update md formatting of sublist items

    update formatting of sublist items in the Node/npm version section.

commit ca3b89d
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue Apr 4 11:18:18 2017 -0700

    update issue_template.md

    Add suggestion to post issue on Stack Overflow & include link.

commit 3312a82
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue Apr 4 11:02:56 2017 -0700

    Create issue_template.md

    Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

commit 933995c
Author: Tom Laird-McConnell <tomlm@microsoft.com>
Date:   Thu Mar 23 10:25:01 2017 -0700

    fix net45

commit 9dff93c
Author: Tom Laird-McConnell <tomlm@microsoft.com>
Date:   Thu Mar 23 10:05:54 2017 -0700

    move ctor params to be non-breaking

commit dfcf928
Author: Tom Laird-McConnell <tomlm@microsoft.com>
Date:   Thu Mar 23 08:34:56 2017 -0700

    update connector lib to newest swgger

commit 410bd3c
Merge: 0864169 2448cc9
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue Mar 21 16:25:47 2017 -0700

    Merge remote-tracking branch 'botbuilder-public/master'

commit 9df6cc3
Author: Mick Vleeshouwer <mick@imick.nl>
Date:   Tue Feb 28 14:54:37 2017 +0100

    Add German translation (de)

commit 0864169
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Tue Feb 21 14:51:52 2017 -0800

    Update ISSUE_TEMPLATE

commit a0d20ca
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Tue Feb 21 14:34:05 2017 -0800

    Update ISSUE_TEMPLATE

commit cf265ff
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Tue Feb 21 14:33:32 2017 -0800

    Update ISSUE_TEMPLATE

commit 556aa79
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Tue Feb 21 14:26:22 2017 -0800

    Create ISSUE_TEMPLATE

commit 0623069
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue Feb 7 14:38:15 2017 -0800

    Revert "Remove suggested actions from Activity"

    This reverts commit a71e64c.

commit 865b290
Author: Aboobacker MK <aboobackervyd@gmail.com>
Date:   Sat Jan 21 22:59:26 2017 +0530

    Fixed typo in examples

(cherry picked from commit 524c149)

# Conflicts:
#	CSharp/Library/Microsoft.Bot.Builder/ConnectorEx/BotToUser.cs
#	CSharp/Library/Microsoft.Bot.Builder/Dialogs/IDialogContext.cs
#	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotDataTests.cs
#	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotTests.cs
#	CSharp/Tests/Microsoft.Bot.Builder.Tests/ChainTests.cs

fix promptChoice options match caseInsensitive (#2685)
(cherry picked from commit c7978b3)
@ejadib ejadib deleted the hotfix/prompt-choice-case-insensitive branch May 3, 2017 09:40
msft-shahins added a commit that referenced this pull request May 9, 2017
Squashed commit of the following:

commit 5bbe0ffa5894738f9594bb4d60beb32e01c14400
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 8 11:08:57 2017 -0700

    Add CustomRedirectHandler to handle 307 redirects

commit d1940518ce7b3c2137b7eb82b13c21666e8f3633
Author: Andrea Orimoto <andreo@microsoft.com>
Date:   Mon May 8 17:58:01 2017 -0700

    doc nav changes

commit 74c45e073fba9f3c80f85732216ff5e343a36072
Author: Johannes Goslar <jogo@kronberger-spiele.de>
Date:   Mon May 8 22:02:31 2017 +0200

    Fix public ICallConnectorSettings callbackUrl naming (#2440)

    Compare bots/CallConnector.ts:54

commit 28dc4efd9fb35498b55ecd39bc81e8019bdcd435
Author: Tommy Falgout <tommy@lastcoolnameleft.com>
Date:   Mon May 8 12:54:16 2017 -0700

    Update README.md (#2286)

    Updating documentation to include building core which is required to run any of the examples.

    Otherwise, you get:
    Error: Cannot find module 'url-join'

commit da4cc4638b42119c8f6bada8bd80a719b3c6318c
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 12:45:39 2017 -0700

    Updated RU and NL localization files.

commit 0759b20b5d4ceece949389aa4ec13d820ff4d35a
Author: Mick Vleeshouwer <t-mivlee@microsoft.com>
Date:   Mon May 8 21:39:54 2017 +0200

    Add Dutch translation (nl) (#2361)

commit 03dcf07a6d38bbc664e234283f336fcdf4d5b531
Author: Nikolay Mihailov <hardsky@yandex.ru>
Date:   Mon May 8 22:39:04 2017 +0300

    [Node SDK] 'ru' locale for NodeJs BotBuilder (#2085)

    * 'ru' locale for NodeJs BotBuilder

    * fix typo

    * fix typo

commit e26ea2404724238ac64c701e493c0f005b0f3444
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 12:20:47 2017 -0700

    Updated prompt localization files and built 3.8

commit 6b35e14ac7a2e554c4dba82310875c8c5d5b98b9
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 11:49:15 2017 -0700

    Interface cleanup

commit 755181f99b66ab1c71446eb9989c807d6b8b6e80
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:23:05 2017 -0700

    Removed "allowSampling" flag.
    - It's now "log" and true by default.

commit 6b672a05b094f09adf9ed4a20e3500a47876c978
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:20:59 2017 -0700

    Reference doc improvements

commit adf569ae3ab5d1896e532a5c650d32430f3987c7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:18:25 2017 -0700

    IMessage.localTimestamp field.
    - Added localTimestamp field.
    - Moved type aliases around.

commit bfc43fdb51eafd1af678ab90be77a3905e5dd150
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:16:31 2017 -0700

    Removed un-used label field.

commit feaaeb77519831dc9ee1dfd331f15ba94c1b3d59
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:15:36 2017 -0700

    Session.delay() changes
    - Fixed to Session.delay() method.
    - Added "delay" support to ConsoleConnector.
    - Removed sendBatch() call from sendTyping(). This will insert a 250ms delay for most people calling sendTyping() but it makes building a chain like "session.sendTyping().delay().say()" work as a single batch.

commit 6a8ba48ea195e053484d3c79cdac8dde32f6f402
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Fri May 5 15:42:55 2017 -0700

    Update README.md

commit b787116e86a6fabb44e30c92a802f9474650c151
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri May 5 11:00:44 2017 -0700

    Update assembly version for release

commit 6e39463ad5391dd22bde3fe76667cdf5dfda6a89
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 18:52:56 2017 -0700

    Update builder and connector nuspec to have the right dependency

commit 01fe69cbc985712a230eb92833a3fd401ae3ad43
Author: Will Portnoy <wportnoy@microsoft.com>
Date:   Thu Mar 9 15:43:33 2017 -0800

    Cherry-pick from develop e9a08cd..1e227b0

    add ScorableTriggerTests.TriggerAction demo

    (cherry picked from commit e9a08cdb383dfc1b724cea2214e900adeae70bb4)

    illustrate custom LuisModel for DispatchDialog
    (cherry picked from commit 2961750cdac09d79d0f5e3f6b9f21f896962e856)

    reset on end conversation, plus unit test
    (cherry picked from commit f170cd5e83d60e3f20c7aa4ebee2072161232f75)

    Enable ability/guidance to add registrations to Autofac container without Update

    https://github.com/Microsoft/BotBuilder/issues/1966
    (cherry picked from commit ebbe7ee812e1f3d1e96160177ddceaeae771ccfa)

    StrictEntityToType.Interpret method returns wrong values in some cases, plus tests

    https://github.com/Microsoft/BotBuilder/issues/2088
    https://github.com/Microsoft/BotBuilder/pull/2109
    (cherry picked from commit 885bbf9bf70a44d7bc27e9845358c3012f968abb)

    add delay message type in Session and implement in ChatConnector
    (cherry picked from commit 23f716bfdcf3bd9fa581b48693be733256c9b359)

    use value prop instead of text
    (cherry picked from commit b61d52cb6eed6317076ba6fe66c1de9f1a5deb60)

    Merge branch 'develop' into delay
    (cherry picked from commit f687699f3f4a38b8758ffa66dc21c4c3bbc72f5c)

    Merge pull request #2696 from codefoster/delay

    Add Session.delay() method
    (cherry picked from commit aac445b3aa2e7072811002cb67087368efbed568)

    Add SetLocalTimestampMapper
    (cherry picked from commit 6381c0feac4041b82b64ecc6a5572eaa308193be)

    Merge master to develop
    (cherry picked from commit ce71a2ce7ce2ba36a22ce645e49be58a05f2a158)

    Update LuisRequest for change to log flag and add extra parameters in case something is added in the future.
    (cherry picked from commit 1e227b06f629dcd8e15d31a8f529ffe636cf0ec4)

commit 734e3a9bdc5a0ed0beb3a269cf4868c2d2623269
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 14:09:49 2017 -0700

    Add JsonExtensionData to ChannelAccount and ConversationAccount

    Update Bot.Builder.Calling assembly version for release

commit 30002befec5a7ce867b24021d0323eb5198292ad
Author: Malar <malarch@microsoft.com>
Date:   Thu May 4 16:32:56 2017 -0700

    Moving classes needed for realtime media calling into a separate GIT repo (https://github.com/Microsoft/BotBuilder-RealTimeMediaCalling) & Adding MIT License (#2703)

    1. Fixing typo in ParsedCallingRequest SkypeChaindId as SkypeChainId
    2. Removing NotificationsConverter.cs, NotificationResponse.cs, NotificationBase.cs, CallStateChangeNotification.cs, NotificationType.cs as they are needed only for RealTimeMedia calling
    3. Removing validation of Action property from ActionBase.cs and validating in each action instead
    4. Removing NotificationConverter from list of converters in Serializer

commit 10aaff0669cebab2dab3b7482df16c1b8dac9adb
Author: brijrajsingh <brijrajsingh@gmail.com>
Date:   Fri May 5 03:50:09 2017 +0530

    fixed the Sample code to use the UniversalBot Class (#1711)

commit 87b9fbb0d236f0a5f758a9175f0e009dcf23e42d
Merge: 9154040 7efd75c
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 15:11:37 2017 -0700

    Merge pull request #2585 from nwhitmont/fix-vulnerability-in-base64url-module

    [Node SDK] Fix vulnerability in module base64url@1.0.6

commit 9154040a34c46947b20d7d6ef323ab79b189a4c5
Merge: 1e336b8 89915f5
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:30:44 2017 -0700

    Merge pull request #2686 from stevengum97/master

    [Node SDK] Add localization to EntityRecognizer.parseBoolean()

commit 1e336b89dedb9aa387854e1ab76adfafaf8155a1
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 13:34:43 2017 -0700

    Merge pull request #2696 from codefoster/delay

    Add Session.delay() method

commit 2554e7004f1e51a4150f83309814c2014990ea33
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 12:59:18 2017 -0700

    Add EndorsementsComparer and create a dictionary from distinct endorsements

commit 0f3df6a9f91804f07e3008b9a9dd448e56d57f39
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 17:59:42 2017 -0700

    Use ConcurrentDictionary for openIdMetadataCache

commit b82ec6b7226b84bd7424a6c235e87f4466b21968
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 16:18:57 2017 -0700

    node.js: Enforce endorsements if token's signing key has any endorsements associated with it

commit 9678752f071bbd485fa5fd12a7f21b6566831001
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 14:49:05 2017 -0700

    Enforce endorsements if token's signing key has any endorsements associated with it.

commit 2d8f3ed71e81e4b187176bde9cdd4796d24596f7
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 22:23:41 2017 -0700

    Validate serviceUrl of activity using serviceUrl in the claims.

commit 113ee6db35145b8554eedcb8709bdf96b4962114
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 15:09:17 2017 -0700

    Require minimum of RS256 signing algo on inbound tokens

commit 9057453a459cda573bd80894cca45691b570c1bb
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 12:37:47 2017 -0700

    update system info section as required

commit a3abb66c5eb5c8c3970ae9ccaca548b9819b7aec
Author: Robert Standefer <robstand@outlook.com>
Date:   Wed May 3 12:36:29 2017 -0700

    Fixed Gitter link

commit 8ba1cdb7aaa7ec61f30ac5f0facfb0aaa665d0c7
Merge: 005cc98 172f348
Author: Robert Standefer <robstand@outlook.com>
Date:   Wed May 3 12:30:29 2017 -0700

    Merge pull request #2688 from Microsoft/robstand-DocsChange

    [Docs] Updating README.md for documentation changes

commit 005cc980e26a586541418317d56739636818abee
Merge: 359ff24 102afc6
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 12:14:41 2017 -0700

    Merge pull request #2549 from nwhitmont/bug/BB-2546_add-missing-module-url-join

    [Node SDK] Fix for #2546 Add missing url-join module to package.json so examples run correctly.

commit 359ff244de02889aee90329d75418ca3f115fbb5
Merge: adf055b 730c330
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 10:27:26 2017 -0700

    Merge pull request #2648 from bartlannoeye/Documentation

    [Docs > C#] Bringing Dialog documentation in sync with code

commit adf055b1ced522620ea882ce12992e6be2ba2916
Merge: 1c54d50 b453ad6
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 10:24:52 2017 -0700

    Merge pull request #2458 from Microsoft/ms-code-of-conduct

    [Docs] Add Microsoft code of conduct

commit 1c54d504dba43a91927730b6f3c4568c55b1e41c
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue May 2 15:56:20 2017 -0700

    Cherry-pick from develop 524c149..c7978b3

    Merge master to develop
    Squashed commit of the following:

    commit a1c1c7ba8f947848aa864c6142b6504600d774a3
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:49:39 2017 -0700

        Add default CancellationToken to Forward extension method (#2677)

    commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:48:13 2017 -0700

        Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

    commit 430a5eabf1bf62451b9e0eec70845adcd236c555
    Merge: 3f3c13d 9df6cc3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue May 2 10:06:23 2017 -0700

        Merge pull request #2362 from iMicknl/de-locale-node

        [Node SDK] Added German (de) locale for NodeJS BotBuilder

    commit 3f3c13d747ff3aa8a5de518257eced189b26799a
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 13:54:21 2017 -0700

        Fix failing BotDispatcher test after merge

    commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 13:05:21 2017 -0700

        No null collections (#2673)

        * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

        * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

    commit 682ed1766713940c8bb382508b5ae68c216c7113
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 11:51:41 2017 -0700

        Add machine translated resource files for new resource strings

    commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 12:30:31 2017 -0700

        Api extensions (#2672)

        * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

        * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

        * GetValueOrDefault for IBotDataBag

        * IActivity.TryGetChannelData<T>(out T instance)

    commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:27:22 2017 -0700

        Published beta 8

    commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:25:00 2017 -0700

        Support for updating & deleting existing messages.

    commit 1e05916c809f71583920c8a7528dd509fec66837
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 15:09:48 2017 -0700

        Return ID's for sent messages.

    commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Fri Apr 28 16:50:43 2017 -0700

        Update assembly info for 3.5.8 release

    commit db2b8f860a3d8f7744a378930f93c4b0baa97978
    Author: Chris McConnell <chrimc@microsoft.com>
    Date:   Fri Apr 21 13:06:49 2017 -0700

        Cherry-pick develop commit d23b639..57b7275

        Switch LUIS resolution to handle objects rather than just strings.

        Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
        Can modify the luis request through attributes, the service or the dialog.
        Made it so that sampling is allowed by default.
        Mark action binding as obsolete.

        [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

        * Added Min & Max to PromptInt64 & PromptDouble

        * Added speak parameter.

        * Added Speak to PromptDialog.Number

        * Add missing documentation

        [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        * Update PromptConfirm to internally use a PromptChoice

        [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

        * fix PromptChoice special case

        * fix range for RecognizeInteger

        * fix ordinal resources

        Fix build break after merge of pull requests

        Update issue template to remove #

        Partially address https://github.com/Microsoft/BotBuilder/issues/2658

        Merge pull request #2659 from ejadib/patch-2

        Update issue template to remove #

        Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

    commit c80cdce10f69bc9a974159ca3ee187a08412036a
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:25:20 2017 -0700

        Published new 3.8 beta7 build

    commit 17e6381d61133c75573d5547635f8d527422b61b
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:16:36 2017 -0700

        Fixed RouteHandler spelling

    commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:13:02 2017 -0700

        Added comment for WaterfallDialog class.

    commit baeaea0f981050c1a11afc459fc6af292d925d35
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:10:46 2017 -0700

        Exposed new WaterfallDialog class.

    commit 0df48494cf578c7075a334049c2920dd05ba4635
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 13:22:14 2017 -0700

        Added automatic setting of allowSampling flag for LUIS

    commit f089c1a2a91082c513eb684224a92792d9c043b7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 24 13:54:26 2017 -0700

        Added new IntentRecognizer bass class.

    commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
    Merge: 60d5a37 4df8945
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 27 09:45:40 2017 -0700

        Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

        [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

    commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 21 00:05:01 2017 -0700

        Fixed bug in ChatConnector

    commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 15:29:47 2017 -0700

        Tweaks needed for MSTeams

    commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 20 22:33:43 2017 -0700

        Update assembly info for 3.5.7-alpha release

    commit f837319db27323c19886545c510c6e49be487cd9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 6 18:15:48 2017 -0700

        cherry-pick develop commit 0a5262f..95a036e

        Update PromptConfirm's Options and Patterns getter (#2564)

        * Changed Options & Patterns getter

        * Apply feedback.

        Fix vulnerability in module base64url@1.0.6

        Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
        severity) introduced by concat-stream@1.4.10 as described here:
        https://snyk.io/test/npm/base64url/1.0.6

        Revert "Fix vulnerability in module base64url@1.0.6"

        This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

        Added spellCheck flag for LUIS to enable spell checking.

        Switch keyboards to suggested actions and deprecate KeyboardCards.

        Cleanup a few compiler warnings.

        *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

        Change IChannelCapability interface to return speak capabilities

        Add AutoInputHint IBotToUser and QueueDrainingDialogTask

        Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

        Add IMessageQueue and InputHintQueue

        Add tests for InputHintQueue

        Refresh tokens even when Forbidden is returned by channel.

        [C# SDK] Add SayAsync extension method (#2596)

        * Add SayAsync extension method

        * Fix typo on method documentation

        Update prompts to use new prompt recognizers (#2609)

        * Added PromptRecognizers & PromptOptions Speak related properties

        * Fix potential run condition when test PromptConfirm Options/Patterns

        * Update PromptStyler so it sets the message InputHint to ExpectingInput.

        * Cleanup code related to locale

        * Fix typo on IntegerOnly

        * changed PromptRecognizer resource keys to constants

        * implemented PromptChoice Options
         recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

        * fix PromptChoice with reverse ordinal selected

        * Added Localization tests for Prompts

        * Changed script for the message.InputHint

        * Moved PromptRecognizerTests resources

        * Extract IPromptRecognizers interface to use it in the PromptOptions

        * Changed RecognizeChoices signature

        * Added IPromptRecognizers documentation
        Changed name DefaultRecognizers to PromptRecognizers

        * consts PascalCase

        * Implemented PromptRecognizersCache with ConcurrentDictionary

        * Changed variable name synonyms

        * Updated multilingual files.

        * Update spanish XLF.

        * Added BooleanChoices to Spanish.

        * Added IPromptRecognizers Extension methods

        * Renamed PromptRecognizer

        * Fix Min/Max order

        * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

        Fix spanish xlf file and regenerate spanish resource file

        Fix different build warnings

        Fix typo in Luis swagger file

        Squashed commit of the following:

        commit 989192449c6b02d1e9546cd4121761988c958447
        Merge: 10233da 865b290
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Thu Apr 20 15:43:14 2017 -0700

            Merge pull request #2087 from tachyons/patch-1

            [Node SDK] Fixed typo in examples

        commit 10233da2dbd57c6efc6565977c344a14b91cd058
        Merge: 86d4318 32adbd1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 20 13:16:26 2017 -0700

            Merge pull request #2623 from ejadib/patch-2

            Fix index when dealing with reverse ordinals

        commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Wed Apr 19 15:57:31 2017 -0700

            Send "endOfConversation" activity to cortana now

        commit 32adbd194c860b39b612de086ecced141dea86e1
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:40:37 2017 -0300

            Apply fix also to JS file

        commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:35:23 2017 -0300

            Fix index when dealing with reverse ordinals

            When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

        commit a4dee8f49658cfc24021182857f9614212b65cce
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 11:01:31 2017 -0700

            update issue issue template

        commit 645256010f2dc9ddb6831279e6757c8cbc85d408
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 10:44:22 2017 -0700

            update issue_template

        commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 16:08:06 2017 -0700

            Added fix for MSTeams to allow starting of 1;1 chats.

        commit fc471c9d0444e50ee113db95db19207d373f3cff
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 15:57:46 2017 -0700

            Published v3.8.0-beta3 to npm @next tag

        commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:46:46 2017 -0700

            Removed speech sample. It's in the sample repository

        commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:45:02 2017 -0700

            Improvements to better support speech channels.

        commit d9fe548747742375b70b34e25923bd6fb08b1162
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:49:41 2017 -0700

            Publisshed beta 2 of v3.8

        commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:24:41 2017 -0700

            Tweeks needed to better support speech.

        commit e3f38265dfc72ca0e3116be1005a84c130935fb5
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Thu Apr 13 16:57:43 2017 -0700

            Fix bug in suggested actions and update suggested actions sample

        commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:05:45 2017 -0700

            Fixes in suggested actions sample

        commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:03:58 2017 -0700

            Suggested actions support for Node.js with the new protocol

        commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 22:07:06 2017 -0700

            Enable VSO build for bot builder nuget (#2597)

            Change bot builder app.config to copy always

            Add updateAssemblyInfo

            Add public key for delay signing the assmeblies

            Fix build issues with the public key path

            Fix Multilingual App toolkit build issue

            Remove samples from Release build

            Update builder.nuspec to only include relevant source code

        commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
        Merge: 9146eb7 4647095
        Author: dandriscoll <dan.driscoll@microsoft.com>
        Date:   Wed Apr 12 22:02:11 2017 -0700

            Merge pull request #2548 from Microsoft/feature/new-issue-template

            Create New Issue Template

        commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 16:20:00 2017 -0700

            Update assembly info for release

        commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:41:10 2017 -0700

            Update connector xml documentation

        commit 164e6db689bb84a59e03cd9840074d5f59cad6da
        Merge: cedb5f3 b854967
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:39:00 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:34:14 2017 -0700

            Add Properties to ActivityEx object

        commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:31 2017 -0700

            Update connector assembly version

        commit a5787601c9f44457ff66fb839f123cbdecf37b80
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:17 2017 -0700

            Add EndOfConversationCodes

        commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 11 09:06:13 2017 -0700

            Changed scale of calculated coverage scores.

        commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 20:36:23 2017 -0700

            Node SDK not always sending user-agent

        commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:29:39 2017 -0700

            Choice prompt giving wrong retry prompt.

        commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:23:30 2017 -0700

            Fixed out dated custom routes sample.

        commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:40:02 2017 -0700

            Published beta1 release of 3.8

        commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:20:00 2017 -0700

            New prompts & speech support fixes + tests

        commit 41726fffd76f48a8c5876876f4221ab455fa9055
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 7 12:27:04 2017 -0700

            New prompt system and added support for speech.

        commit 46470951ea682ffd01ae788566342738b8b033c2
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:46:48 2017 -0700

            update issue_template.md

            Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

        commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:39:08 2017 -0700

            update issue_template.md

            Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

        commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
        Merge: cacbc6a 4b3ea78
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:20:58 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:17:19 2017 -0700

            Update namespace for InputHints

        commit 8622b09197431cb691194a262128708a1df44117
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 12:56:36 2017 -0700

            Add InputHints to Activity

        commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:26:37 2017 -0700

            update md formatting of sublist items

            update formatting of sublist items in the Node/npm version section.

        commit ca3b89d8e1b69acc1f223470cda186332d984b63
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:18:18 2017 -0700

            update issue_template.md

            Add suggestion to post issue on Stack Overflow & include link.

        commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:02:56 2017 -0700

            Create issue_template.md

            Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

        commit 933995cfe009976ca2f81340009eccf31dee7498
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:25:01 2017 -0700

            fix net45

        commit 9dff93c1d825418eac69360ab03f8d4d728b450b
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:05:54 2017 -0700

            move ctor params to be non-breaking

        commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 08:34:56 2017 -0700

            update connector lib to newest swgger

        commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
        Merge: 0864169 2448cc9
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Mar 21 16:25:47 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit 0864169b0088c0466dd2a959f94891c11ddb71c9
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:51:52 2017 -0800

            Update ISSUE_TEMPLATE

        commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:34:05 2017 -0800

            Update ISSUE_TEMPLATE

        commit cf265ff5a3407817b67c239a8d71f2de775010ee
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:33:32 2017 -0800

            Update ISSUE_TEMPLATE

        commit 556aa79c8893a16c200b1900f07561e5b24bb580
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:26:22 2017 -0800

            Create ISSUE_TEMPLATE

        commit 06230696e1a46cd5dabf1da005c867b5e963343c
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Feb 7 14:38:15 2017 -0800

            Revert "Remove suggested actions from Activity"

            This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

        commit 865b29022061df55f0aad0259cb936697e9936d3
        Author: Aboobacker MK <aboobackervyd@gmail.com>
        Date:   Sat Jan 21 22:59:26 2017 +0530

            Fixed typo in examples

    commit 989192449c6b02d1e9546cd4121761988c958447
    Merge: 10233da 865b290
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 20 15:43:14 2017 -0700

        Merge pull request #2087 from tachyons/patch-1

        [Node SDK] Fixed typo in examples

    commit 10233da2dbd57c6efc6565977c344a14b91cd058
    Merge: 86d4318 32adbd1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 13:16:26 2017 -0700

        Merge pull request #2623 from ejadib/patch-2

        Fix index when dealing with reverse ordinals

    commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Wed Apr 19 15:57:31 2017 -0700

        Send "endOfConversation" activity to cortana now

    commit 32adbd194c860b39b612de086ecced141dea86e1
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:40:37 2017 -0300

        Apply fix also to JS file

    commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:35:23 2017 -0300

        Fix index when dealing with reverse ordinals

        When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

    commit a4dee8f49658cfc24021182857f9614212b65cce
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 11:01:31 2017 -0700

        update issue issue template

    commit 645256010f2dc9ddb6831279e6757c8cbc85d408
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 10:44:22 2017 -0700

        update issue_template

    commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 16:08:06 2017 -0700

        Added fix for MSTeams to allow starting of 1;1 chats.

    commit fc471c9d0444e50ee113db95db19207d373f3cff
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 15:57:46 2017 -0700

        Published v3.8.0-beta3 to npm @next tag

    commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:46:46 2017 -0700

        Removed speech sample. It's in the sample repository

    commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:45:02 2017 -0700

        Improvements to better support speech channels.

    commit d9fe548747742375b70b34e25923bd6fb08b1162
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:49:41 2017 -0700

        Publisshed beta 2 of v3.8

    commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:24:41 2017 -0700

        Tweeks needed to better support speech.

    commit e3f38265dfc72ca0e3116be1005a84c130935fb5
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Thu Apr 13 16:57:43 2017 -0700

        Fix bug in suggested actions and update suggested actions sample

    commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:05:45 2017 -0700

        Fixes in suggested actions sample

    commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:03:58 2017 -0700

        Suggested actions support for Node.js with the new protocol

    commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 22:07:06 2017 -0700

        Enable VSO build for bot builder nuget (#2597)

        Change bot builder app.config to copy always

        Add updateAssemblyInfo

        Add public key for delay signing the assmeblies

        Fix build issues with the public key path

        Fix Multilingual App toolkit build issue

        Remove samples from Release build

        Update builder.nuspec to only include relevant source code

    commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
    Merge: 9146eb7 4647095
    Author: dandriscoll <dan.driscoll@microsoft.com>
    Date:   Wed Apr 12 22:02:11 2017 -0700

        Merge pull request #2548 from Microsoft/feature/new-issue-template

        Create New Issue Template

    commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 16:20:00 2017 -0700

        Update assembly info for release

    commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:41:10 2017 -0700

        Update connector xml documentation

    commit 164e6db689bb84a59e03cd9840074d5f59cad6da
    Merge: cedb5f3 b854967
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:39:00 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:34:14 2017 -0700

        Add Properties to ActivityEx object

    commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:31 2017 -0700

        Update connector assembly version

    commit a5787601c9f44457ff66fb839f123cbdecf37b80
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:17 2017 -0700

        Add EndOfConversationCodes

    commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 11 09:06:13 2017 -0700

        Changed scale of calculated coverage scores.

    commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 20:36:23 2017 -0700

        Node SDK not always sending user-agent

    commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:29:39 2017 -0700

        Choice prompt giving wrong retry prompt.

    commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:23:30 2017 -0700

        Fixed out dated custom routes sample.

    commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:40:02 2017 -0700

        Published beta1 release of 3.8

    commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:20:00 2017 -0700

        New prompts & speech support fixes + tests

    commit 41726fffd76f48a8c5876876f4221ab455fa9055
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 7 12:27:04 2017 -0700

        New prompt system and added support for speech.

    commit 46470951ea682ffd01ae788566342738b8b033c2
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:46:48 2017 -0700

        update issue_template.md

        Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

    commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:39:08 2017 -0700

        update issue_template.md

        Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

    commit 4df894563f761c52324cdc961d880916ea9cf1fc
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 5 15:39:29 2017 -0700

        Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

    commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
    Merge: cacbc6a 4b3ea78
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:20:58 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:17:19 2017 -0700

        Update namespace for InputHints

    commit 8622b09197431cb691194a262128708a1df44117
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 12:56:36 2017 -0700

        Add InputHints to Activity

    commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:26:37 2017 -0700

        update md formatting of sublist items

        update formatting of sublist items in the Node/npm version section.

    commit ca3b89d8e1b69acc1f223470cda186332d984b63
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:18:18 2017 -0700

        update issue_template.md

        Add suggestion to post issue on Stack Overflow & include link.

    commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:02:56 2017 -0700

        Create issue_template.md

        Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

    commit 933995cfe009976ca2f81340009eccf31dee7498
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:25:01 2017 -0700

        fix net45

    commit 9dff93c1d825418eac69360ab03f8d4d728b450b
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:05:54 2017 -0700

        move ctor params to be non-breaking

    commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 08:34:56 2017 -0700

        update connector lib to newest swgger

    commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
    Merge: 0864169 2448cc9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Mar 21 16:25:47 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit 9df6cc32f864bbe04449436cd2628e9a12395d42
    Author: Mick Vleeshouwer <mick@imick.nl>
    Date:   Tue Feb 28 14:54:37 2017 +0100

        Add German translation (de)

    commit 0864169b0088c0466dd2a959f94891c11ddb71c9
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:51:52 2017 -0800

        Update ISSUE_TEMPLATE

    commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:34:05 2017 -0800

        Update ISSUE_TEMPLATE

    commit cf265ff5a3407817b67c239a8d71f2de775010ee
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:33:32 2017 -0800

        Update ISSUE_TEMPLATE

    commit 556aa79c8893a16c200b1900f07561e5b24bb580
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:26:22 2017 -0800

        Create ISSUE_TEMPLATE

    commit 06230696e1a46cd5dabf1da005c867b5e963343c
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Feb 7 14:38:15 2017 -0800

        Revert "Remove suggested actions from Activity"

        This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

    commit 865b29022061df55f0aad0259cb936697e9936d3
    Author: Aboobacker MK <aboobackervyd@gmail.com>
    Date:   Sat Jan 21 22:59:26 2017 +0530

        Fixed typo in examples

    (cherry picked from commit 524c14909233cbc57a910e29b57a214afd6dc1a3)

    # Conflicts:
    #	CSharp/Library/Microsoft.Bot.Builder/ConnectorEx/BotToUser.cs
    #	CSharp/Library/Microsoft.Bot.Builder/Dialogs/IDialogContext.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotDataTests.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotTests.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/ChainTests.cs

    fix promptChoice options match caseInsensitive (#2685)
    (cherry picked from commit c7978b3015d10d68d902ec5a42fce54ae8417a8c)

commit 89915f54b27393e8a0c218df2d02102c61f7c838
Author: Steven Gum <steven.gum@gmail.com>
Date:   Tue May 2 16:02:16 2017 -0700

    Update EntityRecognizer.ts

    Change EntityRecognizer.ts to reflect new location of IRecognizeContext

commit 172f34861478e061842efd639670c023d99a3f3f
Author: Robert Standefer <rstand@microsoft.com>
Date:   Tue May 2 15:03:58 2017 -0700

    Updating README.md for documentation changes

commit 30e1e85e37df709c501fd03fd50cacb47dd7b6b0
Author: stevengum97 <steven.gum@gmail.com>
Date:   Tue May 2 11:21:20 2017 -0700

    Added yesExp and noExp to deutsch locale

commit e8b1d7ef0da3d48d463043a8e476f3edb60b6380
Merge: a1c1c7b cbfa7b5
Author: stevengum97 <steven.gum@gmail.com>
Date:   Tue May 2 11:17:23 2017 -0700

    Merge branch 'EntityRecognizer'

commit a1c1c7ba8f947848aa864c6142b6504600d774a3
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:49:39 2017 -0700

    Add default CancellationToken to Forward extension method (#2677)

commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:48:13 2017 -0700

    Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

commit 430a5eabf1bf62451b9e0eec70845adcd236c555
Merge: 3f3c13d 9df6cc3
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue May 2 10:06:23 2017 -0700

    Merge pull request #2362 from iMicknl/de-locale-node

    [Node SDK] Added German (de) locale for NodeJS BotBuilder

commit 3f3c13d747ff3aa8a5de518257eced189b26799a
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 13:54:21 2017 -0700

    Fix failing BotDispatcher test after merge

commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 13:05:21 2017 -0700

    No null collections (#2673)

    * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

    * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

commit 682ed1766713940c8bb382508b5ae68c216c7113
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 11:51:41 2017 -0700

    Add machine translated resource files for new resource strings

commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 12:30:31 2017 -0700

    Api extensions (#2672)

    * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

    * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

    * GetValueOrDefault for IBotDataBag

    * IActivity.TryGetChannelData<T>(out T instance)

commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:27:22 2017 -0700

    Published beta 8

commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:25:00 2017 -0700

    Support for updating & deleting existing messages.

commit 1e05916c809f71583920c8a7528dd509fec66837
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 15:09:48 2017 -0700

    Return ID's for sent messages.

commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri Apr 28 16:50:43 2017 -0700

    Update assembly info for 3.5.8 release

commit db2b8f860a3d8f7744a378930f93c4b0baa97978
Author: Chris McConnell <chrimc@microsoft.com>
Date:   Fri Apr 21 13:06:49 2017 -0700

    Cherry-pick develop commit d23b639..57b7275

    Switch LUIS resolution to handle objects rather than just strings.

    Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
    Can modify the luis request through attributes, the service or the dialog.
    Made it so that sampling is allowed by default.
    Mark action binding as obsolete.

    [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

    * Added Min & Max to PromptInt64 & PromptDouble

    * Added speak parameter.

    * Added Speak to PromptDialog.Number

    * Add missing documentation

    [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    * Update PromptConfirm to internally use a PromptChoice

    [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

    * fix PromptChoice special case

    * fix range for RecognizeInteger

    * fix ordinal resources

    Fix build break after merge of pull requests

    Update issue template to remove #

    Partially address https://github.com/Microsoft/BotBuilder/issues/2658

    Merge pull request #2659 from ejadib/patch-2

    Update issue template to remove #

    Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

commit c80cdce10f69bc9a974159ca3ee187a08412036a
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:25:20 2017 -0700

    Published new 3.8 beta7 build

commit 17e6381d61133c75573d5547635f8d527422b61b
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:16:36 2017 -0700

    Fixed RouteHandler spelling

commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:13:02 2017 -0700

    Added comment for WaterfallDialog class.

commit baeaea0f981050c1a11afc459fc6af292d925d35
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:10:46 2017 -0700

    Exposed new WaterfallDialog class.

commit 0df48494cf578c7075a334049c2920dd05ba4635
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 13:22:14 2017 -0700

    Added automatic setting of allowSampling flag for LUIS

commit f089c1a2a91082c513eb684224a92792d9c043b7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 24 13:54:26 2017 -0700

    Added new IntentRecognizer bass class.

commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
Merge: 60d5a37 4df8945
Author: Nils <nils.whitmont@gmail.com>
Date:   Thu Apr 27 09:45:40 2017 -0700

    Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

    [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

commit cbfa7b5869c3d9791527f9e138c0dd143cf046e0
Author: stevengum97 <steven.gum@gmail.com>
Date:   Wed Apr 26 17:00:33 2017 -0700

    added localization to EntityRecognizer.parseBoolean, added basic regExp patterns to BotBuilder.json files

commit 730c330db7066e03d08d4b1b5f5064c90b1c3f0a
Author: Bart Lannoeye <bart.lannoeye@gmail.com>
Date:   Tue Apr 25 18:47:24 2017 +0200

    Bringing documentation in sync with the included code

commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 21 00:05:01 2017 -0700

    Fixed bug in ChatConnector

commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 20 15:29:47 2017 -0700

    Tweaks needed for MSTeams

commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 20 22:33:43 2017 -0700

    Update assembly info for 3.5.7-alpha release

commit f837319db27323c19886545c510c6e49be487cd9
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 6 18:15:48 2017 -0700

    cherry-pick develop commit 0a5262f..95a036e

    Update PromptConfirm's Options and Patterns getter (#2564)

    * Changed Options & Patterns getter

    * Apply feedback.

    Fix vulnerability in module base64url@1.0.6

    Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
    severity) introduced by concat-stream@1.4.10 as described here:
    https://snyk.io/test/npm/base64url/1.0.6

    Revert "Fix vulnerability in module base64url@1.0.6"

    This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

    Added spellCheck flag for LUIS to enable spell checking.

    Switch keyboards to suggested actions and deprecate KeyboardCards.

    Cleanup a few compiler warnings.

    *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

    Change IChannelCapability interface to return speak capabilities

    Add AutoInputHint IBotToUser and QueueDrainingDialogTask

    Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

    Add IMessageQueue and InputHintQueue

    Add tests for InputHintQueue

    Refresh tokens even when Forbidden is returned by channel.

    [C# SDK] Add SayAsync extension method (#2596)

    * Add SayAsync extension method

    * Fix typo on method documentation

    Update prompts to use new prompt recognizers (#2609)

    * Added PromptRecognizers & PromptOptions Speak related properties

    * Fix potential run condition when test PromptConfirm Options/Patterns

    * Update PromptStyler so it sets the message InputHint to ExpectingInput.

    * Cleanup code related to locale

    * Fix typo on IntegerOnly

    * changed PromptRecognizer resource keys to constants

    * implemented PromptChoice Options
     recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

    * fix PromptChoice with reverse ordinal selected

    * Added Localization tests for Prompts

    * Changed script for the message.InputHint

    * Moved PromptRecognizerTests resources

    * Extract IPromptRecognizers interface to use it in the PromptOptions

    * Changed RecognizeChoices signature

    * Added IPromptRecognizers documentation
    Changed name DefaultRecognizers to PromptRecognizers

    * consts PascalCase

    * Implemented PromptRecognizersCache with ConcurrentDictionary

    * Changed variable name synonyms

    * Updated multilingual files.

    * Update spanish XLF.

    * Added BooleanChoices to Spanish.

    * Added IPromptRecognizers Extension methods

    * Renamed PromptRecognizer

    * Fix Min/Max order

    * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

    Fix spanish xlf file and regenerate spanish resource file

    Fix different build warnings

    Fix typo in Luis swagger file

    Squashed commit of the following:

    commit 989192449c6b02d1e9546cd4121761988c958447
    Merge: 10233da 865b290
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 20 15:43:14 2017 -0700

        Merge pull request #2087 from tachyons/patch-1

        [Node SDK] Fixed typo in examples

    commit 10233da2dbd57c6efc6565977c344a14b91cd058
    Merge: 86d4318 32adbd1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 13:16:26 2017 -0700

        Merge pull request #2623 from ejadib/patch-2

        Fix index when dealing with reverse ordinals

    commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Wed Apr 19 15:57:31 2017 -0700

        Send "endOfConversation" activity to cortana now

    commit 32adbd194c860b39b612de086ecced141dea86e1
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:40:37 2017 -0300

        Apply fix also to JS file

    commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:35:23 2017 -0300

        Fix index when dealing with reverse ordinals

        When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

    commit a4dee8f49658cfc24021182857f9614212b65cce
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 11:01:31 2017 -0700

        update issue issue template

    commit 645256010f2dc9ddb6831279e6757c8cbc85d408
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 10:44:22 2017 -0700

        update issue_template

    commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 16:08:06 2017 -0700

        Added fix for MSTeams to allow starting of 1;1 chats.

    commit fc471c9d0444e50ee113db95db19207d373f3cff
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 15:57:46 2017 -0700

        Published v3.8.0-beta3 to npm @next tag

    commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:46:46 2017 -0700

        Removed speech sample. It's in the sample repository

    commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:45:02 2017 -0700

        Improvements to better support speech channels.

    commit d9fe548747742375b70b34e25923bd6fb08b1162
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:49:41 2017 -0700

        Publisshed beta 2 of v3.8

    commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:24:41 2017 -0700

        Tweeks needed to better support speech.

    commit e3f38265dfc72ca0e3116be1005a84c130935fb5
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Thu Apr 13 16:57:43 2017 -0700

        Fix bug in suggested actions and update suggested actions sample

    commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:05:45 2017 -0700

        Fixes in suggested actions sample

    commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:03:58 2017 -0700

        Suggested actions support for Node.js with the new protocol

    commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 22:07:06 2017 -0700

        Enable VSO build for bot builder nuget (#2597)

        Change bot builder app.config to copy always

        Add updateAssemblyInfo

        Add public key for delay signing the assmeblies

        Fix build issues with the public key path

        Fix Multilingual App toolkit build issue

        Remove samples from Release build

        Update builder.nuspec to only include relevant source code

    commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
    Merge: 9146eb7 4647095
    Author: dandriscoll <dan.driscoll@microsoft.com>
    Date:   Wed Apr 12 22:02:11 2017 -0700

        Merge pull request #2548 from Microsoft/feature/new-issue-template

        Create New Issue Template

    commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 16:20:00 2017 -0700

        Update assembly info for release

    commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:41:10 2017 -0700

        Update connector xml documentation

    commit 164e6db689bb84a59e03cd9840074d5f59cad6da
    Merge: cedb5f3 b854967
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:39:00 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:34:14 2017 -0700

        Add Properties to ActivityEx object

    commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:31 2017 -0700

        Update connector assembly version

    commit a5787601c9f44457ff66fb839f123cbdecf37b80
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:17 2017 -0700

        Add EndOfConversationCodes

    commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 11 09:06:13 2017 -0700

        Changed scale of calculated coverage scores.

    commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 20:36:23 2017 -0700

        Node SDK not always sending user-agent

    commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:29:39 2017 -0700

        Choice prompt giving wrong retry prompt.

    commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:23:30 2017 -0700

        Fixed out dated custom routes sample.

    commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:40:02 2017 -0700

        Published beta1 release of 3.8

    commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:20:00 2017 -0700

        New prompts & speech support fixes + tests

    commit 41726fffd76f48a8c5876876f4221ab455fa9055
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 7 12:27:04 2017 -0700

        New prompt system and added support for speech.

    commit 46470951ea682ffd01ae788566342738b8b033c2
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:46:48 2017 -0700

        update issue_template.md

        Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

    commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:39:08 2017 -0700

        update issue_template.md

        Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

    commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
    Merge: cacbc6a 4b3ea78
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:20:58 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:17:19 2017 -0700

        Update namespace for InputHints

    commit 8622b09197431cb691194a262128708a1df44117
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 12:56:36 2017 -0700

        Add InputHints to Activity

    commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:26:37 2017 -0700

        update md formatting of sublist items

        update formatting of sublist items in the Node/npm version section.

    commit ca3b89d8e1b69acc1f223470cda186332d984b63
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:18:18 2017 -0700

        update issue_template.md

        Add suggestion to post issue on Stack Overflow & include link.

    commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:02:56 2017 -0700

        Create issue_template.md

        Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

    commit 933995cfe009976ca2f81340009eccf31dee7498
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:25:01 2017 -0700

        fix net45

    commit 9dff93c1d825418eac69360ab03f8d4d728b450b
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:05:54 2017 -0700

        move cto…
msft-shahins added a commit that referenced this pull request May 9, 2017
Merge master to develop

Squashed commit of the following:

commit 5bbe0ffa5894738f9594bb4d60beb32e01c14400
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 8 11:08:57 2017 -0700

    Add CustomRedirectHandler to handle 307 redirects

commit d1940518ce7b3c2137b7eb82b13c21666e8f3633
Author: Andrea Orimoto <andreo@microsoft.com>
Date:   Mon May 8 17:58:01 2017 -0700

    doc nav changes

commit 74c45e073fba9f3c80f85732216ff5e343a36072
Author: Johannes Goslar <jogo@kronberger-spiele.de>
Date:   Mon May 8 22:02:31 2017 +0200

    Fix public ICallConnectorSettings callbackUrl naming (#2440)

    Compare bots/CallConnector.ts:54

commit 28dc4efd9fb35498b55ecd39bc81e8019bdcd435
Author: Tommy Falgout <tommy@lastcoolnameleft.com>
Date:   Mon May 8 12:54:16 2017 -0700

    Update README.md (#2286)

    Updating documentation to include building core which is required to run any of the examples.

    Otherwise, you get:
    Error: Cannot find module 'url-join'

commit da4cc4638b42119c8f6bada8bd80a719b3c6318c
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 12:45:39 2017 -0700

    Updated RU and NL localization files.

commit 0759b20b5d4ceece949389aa4ec13d820ff4d35a
Author: Mick Vleeshouwer <t-mivlee@microsoft.com>
Date:   Mon May 8 21:39:54 2017 +0200

    Add Dutch translation (nl) (#2361)

commit 03dcf07a6d38bbc664e234283f336fcdf4d5b531
Author: Nikolay Mihailov <hardsky@yandex.ru>
Date:   Mon May 8 22:39:04 2017 +0300

    [Node SDK] 'ru' locale for NodeJs BotBuilder (#2085)

    * 'ru' locale for NodeJs BotBuilder

    * fix typo

    * fix typo

commit e26ea2404724238ac64c701e493c0f005b0f3444
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 12:20:47 2017 -0700

    Updated prompt localization files and built 3.8

commit 6b35e14ac7a2e554c4dba82310875c8c5d5b98b9
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon May 8 11:49:15 2017 -0700

    Interface cleanup

commit 755181f99b66ab1c71446eb9989c807d6b8b6e80
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:23:05 2017 -0700

    Removed "allowSampling" flag.
    - It's now "log" and true by default.

commit 6b672a05b094f09adf9ed4a20e3500a47876c978
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:20:59 2017 -0700

    Reference doc improvements

commit adf569ae3ab5d1896e532a5c650d32430f3987c7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:18:25 2017 -0700

    IMessage.localTimestamp field.
    - Added localTimestamp field.
    - Moved type aliases around.

commit bfc43fdb51eafd1af678ab90be77a3905e5dd150
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:16:31 2017 -0700

    Removed un-used label field.

commit feaaeb77519831dc9ee1dfd331f15ba94c1b3d59
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:15:36 2017 -0700

    Session.delay() changes
    - Fixed to Session.delay() method.
    - Added "delay" support to ConsoleConnector.
    - Removed sendBatch() call from sendTyping(). This will insert a 250ms delay for most people calling sendTyping() but it makes building a chain like "session.sendTyping().delay().say()" work as a single batch.

commit 6a8ba48ea195e053484d3c79cdac8dde32f6f402
Author: Andrea-Orimoto <andreo@microsoft.com>
Date:   Fri May 5 15:42:55 2017 -0700

    Update README.md

commit b787116e86a6fabb44e30c92a802f9474650c151
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri May 5 11:00:44 2017 -0700

    Update assembly version for release

commit 6e39463ad5391dd22bde3fe76667cdf5dfda6a89
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 18:52:56 2017 -0700

    Update builder and connector nuspec to have the right dependency

commit 01fe69cbc985712a230eb92833a3fd401ae3ad43
Author: Will Portnoy <wportnoy@microsoft.com>
Date:   Thu Mar 9 15:43:33 2017 -0800

    Cherry-pick from develop e9a08cd..1e227b0

    add ScorableTriggerTests.TriggerAction demo

    (cherry picked from commit e9a08cdb383dfc1b724cea2214e900adeae70bb4)

    illustrate custom LuisModel for DispatchDialog
    (cherry picked from commit 2961750cdac09d79d0f5e3f6b9f21f896962e856)

    reset on end conversation, plus unit test
    (cherry picked from commit f170cd5e83d60e3f20c7aa4ebee2072161232f75)

    Enable ability/guidance to add registrations to Autofac container without Update

    https://github.com/Microsoft/BotBuilder/issues/1966
    (cherry picked from commit ebbe7ee812e1f3d1e96160177ddceaeae771ccfa)

    StrictEntityToType.Interpret method returns wrong values in some cases, plus tests

    https://github.com/Microsoft/BotBuilder/issues/2088
    https://github.com/Microsoft/BotBuilder/pull/2109
    (cherry picked from commit 885bbf9bf70a44d7bc27e9845358c3012f968abb)

    add delay message type in Session and implement in ChatConnector
    (cherry picked from commit 23f716bfdcf3bd9fa581b48693be733256c9b359)

    use value prop instead of text
    (cherry picked from commit b61d52cb6eed6317076ba6fe66c1de9f1a5deb60)

    Merge branch 'develop' into delay
    (cherry picked from commit f687699f3f4a38b8758ffa66dc21c4c3bbc72f5c)

    Merge pull request #2696 from codefoster/delay

    Add Session.delay() method
    (cherry picked from commit aac445b3aa2e7072811002cb67087368efbed568)

    Add SetLocalTimestampMapper
    (cherry picked from commit 6381c0feac4041b82b64ecc6a5572eaa308193be)

    Merge master to develop
    (cherry picked from commit ce71a2ce7ce2ba36a22ce645e49be58a05f2a158)

    Update LuisRequest for change to log flag and add extra parameters in case something is added in the future.
    (cherry picked from commit 1e227b06f629dcd8e15d31a8f529ffe636cf0ec4)

commit 734e3a9bdc5a0ed0beb3a269cf4868c2d2623269
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 14:09:49 2017 -0700

    Add JsonExtensionData to ChannelAccount and ConversationAccount

    Update Bot.Builder.Calling assembly version for release

commit 30002befec5a7ce867b24021d0323eb5198292ad
Author: Malar <malarch@microsoft.com>
Date:   Thu May 4 16:32:56 2017 -0700

    Moving classes needed for realtime media calling into a separate GIT repo (https://github.com/Microsoft/BotBuilder-RealTimeMediaCalling) & Adding MIT License (#2703)

    1. Fixing typo in ParsedCallingRequest SkypeChaindId as SkypeChainId
    2. Removing NotificationsConverter.cs, NotificationResponse.cs, NotificationBase.cs, CallStateChangeNotification.cs, NotificationType.cs as they are needed only for RealTimeMedia calling
    3. Removing validation of Action property from ActionBase.cs and validating in each action instead
    4. Removing NotificationConverter from list of converters in Serializer

commit 10aaff0669cebab2dab3b7482df16c1b8dac9adb
Author: brijrajsingh <brijrajsingh@gmail.com>
Date:   Fri May 5 03:50:09 2017 +0530

    fixed the Sample code to use the UniversalBot Class (#1711)

commit 87b9fbb0d236f0a5f758a9175f0e009dcf23e42d
Merge: 9154040 7efd75c
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 15:11:37 2017 -0700

    Merge pull request #2585 from nwhitmont/fix-vulnerability-in-base64url-module

    [Node SDK] Fix vulnerability in module base64url@1.0.6

commit 9154040a34c46947b20d7d6ef323ab79b189a4c5
Merge: 1e336b8 89915f5
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 14:30:44 2017 -0700

    Merge pull request #2686 from stevengum97/master

    [Node SDK] Add localization to EntityRecognizer.parseBoolean()

commit 1e336b89dedb9aa387854e1ab76adfafaf8155a1
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu May 4 13:34:43 2017 -0700

    Merge pull request #2696 from codefoster/delay

    Add Session.delay() method

commit 2554e7004f1e51a4150f83309814c2014990ea33
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 12:59:18 2017 -0700

    Add EndorsementsComparer and create a dictionary from distinct endorsements

commit 0f3df6a9f91804f07e3008b9a9dd448e56d57f39
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 17:59:42 2017 -0700

    Use ConcurrentDictionary for openIdMetadataCache

commit b82ec6b7226b84bd7424a6c235e87f4466b21968
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 16:18:57 2017 -0700

    node.js: Enforce endorsements if token's signing key has any endorsements associated with it

commit 9678752f071bbd485fa5fd12a7f21b6566831001
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Wed May 3 14:49:05 2017 -0700

    Enforce endorsements if token's signing key has any endorsements associated with it.

commit 2d8f3ed71e81e4b187176bde9cdd4796d24596f7
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 22:23:41 2017 -0700

    Validate serviceUrl of activity using serviceUrl in the claims.

commit 113ee6db35145b8554eedcb8709bdf96b4962114
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 15:09:17 2017 -0700

    Require minimum of RS256 signing algo on inbound tokens

commit 9057453a459cda573bd80894cca45691b570c1bb
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 12:37:47 2017 -0700

    update system info section as required

commit a3abb66c5eb5c8c3970ae9ccaca548b9819b7aec
Author: Robert Standefer <robstand@outlook.com>
Date:   Wed May 3 12:36:29 2017 -0700

    Fixed Gitter link

commit 8ba1cdb7aaa7ec61f30ac5f0facfb0aaa665d0c7
Merge: 005cc98 172f348
Author: Robert Standefer <robstand@outlook.com>
Date:   Wed May 3 12:30:29 2017 -0700

    Merge pull request #2688 from Microsoft/robstand-DocsChange

    [Docs] Updating README.md for documentation changes

commit 005cc980e26a586541418317d56739636818abee
Merge: 359ff24 102afc6
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 12:14:41 2017 -0700

    Merge pull request #2549 from nwhitmont/bug/BB-2546_add-missing-module-url-join

    [Node SDK] Fix for #2546 Add missing url-join module to package.json so examples run correctly.

commit 359ff244de02889aee90329d75418ca3f115fbb5
Merge: adf055b 730c330
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 10:27:26 2017 -0700

    Merge pull request #2648 from bartlannoeye/Documentation

    [Docs > C#] Bringing Dialog documentation in sync with code

commit adf055b1ced522620ea882ce12992e6be2ba2916
Merge: 1c54d50 b453ad6
Author: Nils <nils.whitmont@gmail.com>
Date:   Wed May 3 10:24:52 2017 -0700

    Merge pull request #2458 from Microsoft/ms-code-of-conduct

    [Docs] Add Microsoft code of conduct

commit 1c54d504dba43a91927730b6f3c4568c55b1e41c
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue May 2 15:56:20 2017 -0700

    Cherry-pick from develop 524c149..c7978b3

    Merge master to develop
    Squashed commit of the following:

    commit a1c1c7ba8f947848aa864c6142b6504600d774a3
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:49:39 2017 -0700

        Add default CancellationToken to Forward extension method (#2677)

    commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:48:13 2017 -0700

        Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

    commit 430a5eabf1bf62451b9e0eec70845adcd236c555
    Merge: 3f3c13d 9df6cc3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue May 2 10:06:23 2017 -0700

        Merge pull request #2362 from iMicknl/de-locale-node

        [Node SDK] Added German (de) locale for NodeJS BotBuilder

    commit 3f3c13d747ff3aa8a5de518257eced189b26799a
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 13:54:21 2017 -0700

        Fix failing BotDispatcher test after merge

    commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 13:05:21 2017 -0700

        No null collections (#2673)

        * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

        * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

    commit 682ed1766713940c8bb382508b5ae68c216c7113
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 11:51:41 2017 -0700

        Add machine translated resource files for new resource strings

    commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 12:30:31 2017 -0700

        Api extensions (#2672)

        * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

        * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

        * GetValueOrDefault for IBotDataBag

        * IActivity.TryGetChannelData<T>(out T instance)

    commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:27:22 2017 -0700

        Published beta 8

    commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:25:00 2017 -0700

        Support for updating & deleting existing messages.

    commit 1e05916c809f71583920c8a7528dd509fec66837
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 15:09:48 2017 -0700

        Return ID's for sent messages.

    commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Fri Apr 28 16:50:43 2017 -0700

        Update assembly info for 3.5.8 release

    commit db2b8f860a3d8f7744a378930f93c4b0baa97978
    Author: Chris McConnell <chrimc@microsoft.com>
    Date:   Fri Apr 21 13:06:49 2017 -0700

        Cherry-pick develop commit d23b639..57b7275

        Switch LUIS resolution to handle objects rather than just strings.

        Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
        Can modify the luis request through attributes, the service or the dialog.
        Made it so that sampling is allowed by default.
        Mark action binding as obsolete.

        [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

        * Added Min & Max to PromptInt64 & PromptDouble

        * Added speak parameter.

        * Added Speak to PromptDialog.Number

        * Add missing documentation

        [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        * Update PromptConfirm to internally use a PromptChoice

        [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

        * fix PromptChoice special case

        * fix range for RecognizeInteger

        * fix ordinal resources

        Fix build break after merge of pull requests

        Update issue template to remove #

        Partially address https://github.com/Microsoft/BotBuilder/issues/2658

        Merge pull request #2659 from ejadib/patch-2

        Update issue template to remove #

        Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

    commit c80cdce10f69bc9a974159ca3ee187a08412036a
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:25:20 2017 -0700

        Published new 3.8 beta7 build

    commit 17e6381d61133c75573d5547635f8d527422b61b
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:16:36 2017 -0700

        Fixed RouteHandler spelling

    commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:13:02 2017 -0700

        Added comment for WaterfallDialog class.

    commit baeaea0f981050c1a11afc459fc6af292d925d35
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:10:46 2017 -0700

        Exposed new WaterfallDialog class.

    commit 0df48494cf578c7075a334049c2920dd05ba4635
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 13:22:14 2017 -0700

        Added automatic setting of allowSampling flag for LUIS

    commit f089c1a2a91082c513eb684224a92792d9c043b7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 24 13:54:26 2017 -0700

        Added new IntentRecognizer bass class.

    commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
    Merge: 60d5a37 4df8945
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 27 09:45:40 2017 -0700

        Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

        [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

    commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 21 00:05:01 2017 -0700

        Fixed bug in ChatConnector

    commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 15:29:47 2017 -0700

        Tweaks needed for MSTeams

    commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 20 22:33:43 2017 -0700

        Update assembly info for 3.5.7-alpha release

    commit f837319db27323c19886545c510c6e49be487cd9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 6 18:15:48 2017 -0700

        cherry-pick develop commit 0a5262f..95a036e

        Update PromptConfirm's Options and Patterns getter (#2564)

        * Changed Options & Patterns getter

        * Apply feedback.

        Fix vulnerability in module base64url@1.0.6

        Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
        severity) introduced by concat-stream@1.4.10 as described here:
        https://snyk.io/test/npm/base64url/1.0.6

        Revert "Fix vulnerability in module base64url@1.0.6"

        This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

        Added spellCheck flag for LUIS to enable spell checking.

        Switch keyboards to suggested actions and deprecate KeyboardCards.

        Cleanup a few compiler warnings.

        *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

        Change IChannelCapability interface to return speak capabilities

        Add AutoInputHint IBotToUser and QueueDrainingDialogTask

        Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

        Add IMessageQueue and InputHintQueue

        Add tests for InputHintQueue

        Refresh tokens even when Forbidden is returned by channel.

        [C# SDK] Add SayAsync extension method (#2596)

        * Add SayAsync extension method

        * Fix typo on method documentation

        Update prompts to use new prompt recognizers (#2609)

        * Added PromptRecognizers & PromptOptions Speak related properties

        * Fix potential run condition when test PromptConfirm Options/Patterns

        * Update PromptStyler so it sets the message InputHint to ExpectingInput.

        * Cleanup code related to locale

        * Fix typo on IntegerOnly

        * changed PromptRecognizer resource keys to constants

        * implemented PromptChoice Options
         recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

        * fix PromptChoice with reverse ordinal selected

        * Added Localization tests for Prompts

        * Changed script for the message.InputHint

        * Moved PromptRecognizerTests resources

        * Extract IPromptRecognizers interface to use it in the PromptOptions

        * Changed RecognizeChoices signature

        * Added IPromptRecognizers documentation
        Changed name DefaultRecognizers to PromptRecognizers

        * consts PascalCase

        * Implemented PromptRecognizersCache with ConcurrentDictionary

        * Changed variable name synonyms

        * Updated multilingual files.

        * Update spanish XLF.

        * Added BooleanChoices to Spanish.

        * Added IPromptRecognizers Extension methods

        * Renamed PromptRecognizer

        * Fix Min/Max order

        * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

        Fix spanish xlf file and regenerate spanish resource file

        Fix different build warnings

        Fix typo in Luis swagger file

        Squashed commit of the following:

        commit 989192449c6b02d1e9546cd4121761988c958447
        Merge: 10233da 865b290
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Thu Apr 20 15:43:14 2017 -0700

            Merge pull request #2087 from tachyons/patch-1

            [Node SDK] Fixed typo in examples

        commit 10233da2dbd57c6efc6565977c344a14b91cd058
        Merge: 86d4318 32adbd1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 20 13:16:26 2017 -0700

            Merge pull request #2623 from ejadib/patch-2

            Fix index when dealing with reverse ordinals

        commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Wed Apr 19 15:57:31 2017 -0700

            Send "endOfConversation" activity to cortana now

        commit 32adbd194c860b39b612de086ecced141dea86e1
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:40:37 2017 -0300

            Apply fix also to JS file

        commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:35:23 2017 -0300

            Fix index when dealing with reverse ordinals

            When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

        commit a4dee8f49658cfc24021182857f9614212b65cce
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 11:01:31 2017 -0700

            update issue issue template

        commit 645256010f2dc9ddb6831279e6757c8cbc85d408
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 10:44:22 2017 -0700

            update issue_template

        commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 16:08:06 2017 -0700

            Added fix for MSTeams to allow starting of 1;1 chats.

        commit fc471c9d0444e50ee113db95db19207d373f3cff
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 15:57:46 2017 -0700

            Published v3.8.0-beta3 to npm @next tag

        commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:46:46 2017 -0700

            Removed speech sample. It's in the sample repository

        commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:45:02 2017 -0700

            Improvements to better support speech channels.

        commit d9fe548747742375b70b34e25923bd6fb08b1162
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:49:41 2017 -0700

            Publisshed beta 2 of v3.8

        commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:24:41 2017 -0700

            Tweeks needed to better support speech.

        commit e3f38265dfc72ca0e3116be1005a84c130935fb5
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Thu Apr 13 16:57:43 2017 -0700

            Fix bug in suggested actions and update suggested actions sample

        commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:05:45 2017 -0700

            Fixes in suggested actions sample

        commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:03:58 2017 -0700

            Suggested actions support for Node.js with the new protocol

        commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 22:07:06 2017 -0700

            Enable VSO build for bot builder nuget (#2597)

            Change bot builder app.config to copy always

            Add updateAssemblyInfo

            Add public key for delay signing the assmeblies

            Fix build issues with the public key path

            Fix Multilingual App toolkit build issue

            Remove samples from Release build

            Update builder.nuspec to only include relevant source code

        commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
        Merge: 9146eb7 4647095
        Author: dandriscoll <dan.driscoll@microsoft.com>
        Date:   Wed Apr 12 22:02:11 2017 -0700

            Merge pull request #2548 from Microsoft/feature/new-issue-template

            Create New Issue Template

        commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 16:20:00 2017 -0700

            Update assembly info for release

        commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:41:10 2017 -0700

            Update connector xml documentation

        commit 164e6db689bb84a59e03cd9840074d5f59cad6da
        Merge: cedb5f3 b854967
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:39:00 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:34:14 2017 -0700

            Add Properties to ActivityEx object

        commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:31 2017 -0700

            Update connector assembly version

        commit a5787601c9f44457ff66fb839f123cbdecf37b80
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:17 2017 -0700

            Add EndOfConversationCodes

        commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 11 09:06:13 2017 -0700

            Changed scale of calculated coverage scores.

        commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 20:36:23 2017 -0700

            Node SDK not always sending user-agent

        commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:29:39 2017 -0700

            Choice prompt giving wrong retry prompt.

        commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:23:30 2017 -0700

            Fixed out dated custom routes sample.

        commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:40:02 2017 -0700

            Published beta1 release of 3.8

        commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:20:00 2017 -0700

            New prompts & speech support fixes + tests

        commit 41726fffd76f48a8c5876876f4221ab455fa9055
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 7 12:27:04 2017 -0700

            New prompt system and added support for speech.

        commit 46470951ea682ffd01ae788566342738b8b033c2
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:46:48 2017 -0700

            update issue_template.md

            Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

        commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:39:08 2017 -0700

            update issue_template.md

            Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

        commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
        Merge: cacbc6a 4b3ea78
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:20:58 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:17:19 2017 -0700

            Update namespace for InputHints

        commit 8622b09197431cb691194a262128708a1df44117
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 12:56:36 2017 -0700

            Add InputHints to Activity

        commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:26:37 2017 -0700

            update md formatting of sublist items

            update formatting of sublist items in the Node/npm version section.

        commit ca3b89d8e1b69acc1f223470cda186332d984b63
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:18:18 2017 -0700

            update issue_template.md

            Add suggestion to post issue on Stack Overflow & include link.

        commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:02:56 2017 -0700

            Create issue_template.md

            Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

        commit 933995cfe009976ca2f81340009eccf31dee7498
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:25:01 2017 -0700

            fix net45

        commit 9dff93c1d825418eac69360ab03f8d4d728b450b
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:05:54 2017 -0700

            move ctor params to be non-breaking

        commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 08:34:56 2017 -0700

            update connector lib to newest swgger

        commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
        Merge: 0864169 2448cc9
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Mar 21 16:25:47 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit 0864169b0088c0466dd2a959f94891c11ddb71c9
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:51:52 2017 -0800

            Update ISSUE_TEMPLATE

        commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:34:05 2017 -0800

            Update ISSUE_TEMPLATE

        commit cf265ff5a3407817b67c239a8d71f2de775010ee
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:33:32 2017 -0800

            Update ISSUE_TEMPLATE

        commit 556aa79c8893a16c200b1900f07561e5b24bb580
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:26:22 2017 -0800

            Create ISSUE_TEMPLATE

        commit 06230696e1a46cd5dabf1da005c867b5e963343c
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Feb 7 14:38:15 2017 -0800

            Revert "Remove suggested actions from Activity"

            This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

        commit 865b29022061df55f0aad0259cb936697e9936d3
        Author: Aboobacker MK <aboobackervyd@gmail.com>
        Date:   Sat Jan 21 22:59:26 2017 +0530

            Fixed typo in examples

    commit 989192449c6b02d1e9546cd4121761988c958447
    Merge: 10233da 865b290
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 20 15:43:14 2017 -0700

        Merge pull request #2087 from tachyons/patch-1

        [Node SDK] Fixed typo in examples

    commit 10233da2dbd57c6efc6565977c344a14b91cd058
    Merge: 86d4318 32adbd1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 13:16:26 2017 -0700

        Merge pull request #2623 from ejadib/patch-2

        Fix index when dealing with reverse ordinals

    commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Wed Apr 19 15:57:31 2017 -0700

        Send "endOfConversation" activity to cortana now

    commit 32adbd194c860b39b612de086ecced141dea86e1
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:40:37 2017 -0300

        Apply fix also to JS file

    commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:35:23 2017 -0300

        Fix index when dealing with reverse ordinals

        When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

    commit a4dee8f49658cfc24021182857f9614212b65cce
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 11:01:31 2017 -0700

        update issue issue template

    commit 645256010f2dc9ddb6831279e6757c8cbc85d408
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 10:44:22 2017 -0700

        update issue_template

    commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 16:08:06 2017 -0700

        Added fix for MSTeams to allow starting of 1;1 chats.

    commit fc471c9d0444e50ee113db95db19207d373f3cff
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 15:57:46 2017 -0700

        Published v3.8.0-beta3 to npm @next tag

    commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:46:46 2017 -0700

        Removed speech sample. It's in the sample repository

    commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:45:02 2017 -0700

        Improvements to better support speech channels.

    commit d9fe548747742375b70b34e25923bd6fb08b1162
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:49:41 2017 -0700

        Publisshed beta 2 of v3.8

    commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:24:41 2017 -0700

        Tweeks needed to better support speech.

    commit e3f38265dfc72ca0e3116be1005a84c130935fb5
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Thu Apr 13 16:57:43 2017 -0700

        Fix bug in suggested actions and update suggested actions sample

    commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:05:45 2017 -0700

        Fixes in suggested actions sample

    commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:03:58 2017 -0700

        Suggested actions support for Node.js with the new protocol

    commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 22:07:06 2017 -0700

        Enable VSO build for bot builder nuget (#2597)

        Change bot builder app.config to copy always

        Add updateAssemblyInfo

        Add public key for delay signing the assmeblies

        Fix build issues with the public key path

        Fix Multilingual App toolkit build issue

        Remove samples from Release build

        Update builder.nuspec to only include relevant source code

    commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
    Merge: 9146eb7 4647095
    Author: dandriscoll <dan.driscoll@microsoft.com>
    Date:   Wed Apr 12 22:02:11 2017 -0700

        Merge pull request #2548 from Microsoft/feature/new-issue-template

        Create New Issue Template

    commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 16:20:00 2017 -0700

        Update assembly info for release

    commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:41:10 2017 -0700

        Update connector xml documentation

    commit 164e6db689bb84a59e03cd9840074d5f59cad6da
    Merge: cedb5f3 b854967
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:39:00 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:34:14 2017 -0700

        Add Properties to ActivityEx object

    commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:31 2017 -0700

        Update connector assembly version

    commit a5787601c9f44457ff66fb839f123cbdecf37b80
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:17 2017 -0700

        Add EndOfConversationCodes

    commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 11 09:06:13 2017 -0700

        Changed scale of calculated coverage scores.

    commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 20:36:23 2017 -0700

        Node SDK not always sending user-agent

    commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:29:39 2017 -0700

        Choice prompt giving wrong retry prompt.

    commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:23:30 2017 -0700

        Fixed out dated custom routes sample.

    commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:40:02 2017 -0700

        Published beta1 release of 3.8

    commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:20:00 2017 -0700

        New prompts & speech support fixes + tests

    commit 41726fffd76f48a8c5876876f4221ab455fa9055
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 7 12:27:04 2017 -0700

        New prompt system and added support for speech.

    commit 46470951ea682ffd01ae788566342738b8b033c2
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:46:48 2017 -0700

        update issue_template.md

        Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

    commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:39:08 2017 -0700

        update issue_template.md

        Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

    commit 4df894563f761c52324cdc961d880916ea9cf1fc
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 5 15:39:29 2017 -0700

        Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

    commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
    Merge: cacbc6a 4b3ea78
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:20:58 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:17:19 2017 -0700

        Update namespace for InputHints

    commit 8622b09197431cb691194a262128708a1df44117
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 12:56:36 2017 -0700

        Add InputHints to Activity

    commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:26:37 2017 -0700

        update md formatting of sublist items

        update formatting of sublist items in the Node/npm version section.

    commit ca3b89d8e1b69acc1f223470cda186332d984b63
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:18:18 2017 -0700

        update issue_template.md

        Add suggestion to post issue on Stack Overflow & include link.

    commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:02:56 2017 -0700

        Create issue_template.md

        Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

    commit 933995cfe009976ca2f81340009eccf31dee7498
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:25:01 2017 -0700

        fix net45

    commit 9dff93c1d825418eac69360ab03f8d4d728b450b
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:05:54 2017 -0700

        move ctor params to be non-breaking

    commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 08:34:56 2017 -0700

        update connector lib to newest swgger

    commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
    Merge: 0864169 2448cc9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Mar 21 16:25:47 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit 9df6cc32f864bbe04449436cd2628e9a12395d42
    Author: Mick Vleeshouwer <mick@imick.nl>
    Date:   Tue Feb 28 14:54:37 2017 +0100

        Add German translation (de)

    commit 0864169b0088c0466dd2a959f94891c11ddb71c9
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:51:52 2017 -0800

        Update ISSUE_TEMPLATE

    commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:34:05 2017 -0800

        Update ISSUE_TEMPLATE

    commit cf265ff5a3407817b67c239a8d71f2de775010ee
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:33:32 2017 -0800

        Update ISSUE_TEMPLATE

    commit 556aa79c8893a16c200b1900f07561e5b24bb580
    Author: Andrea-Orimoto <andreo@microsoft.com>
    Date:   Tue Feb 21 14:26:22 2017 -0800

        Create ISSUE_TEMPLATE

    commit 06230696e1a46cd5dabf1da005c867b5e963343c
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Feb 7 14:38:15 2017 -0800

        Revert "Remove suggested actions from Activity"

        This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

    commit 865b29022061df55f0aad0259cb936697e9936d3
    Author: Aboobacker MK <aboobackervyd@gmail.com>
    Date:   Sat Jan 21 22:59:26 2017 +0530

        Fixed typo in examples

    (cherry picked from commit 524c14909233cbc57a910e29b57a214afd6dc1a3)

    # Conflicts:
    #	CSharp/Library/Microsoft.Bot.Builder/ConnectorEx/BotToUser.cs
    #	CSharp/Library/Microsoft.Bot.Builder/Dialogs/IDialogContext.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotDataTests.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotTests.cs
    #	CSharp/Tests/Microsoft.Bot.Builder.Tests/ChainTests.cs

    fix promptChoice options match caseInsensitive (#2685)
    (cherry picked from commit c7978b3015d10d68d902ec5a42fce54ae8417a8c)

commit 89915f54b27393e8a0c218df2d02102c61f7c838
Author: Steven Gum <steven.gum@gmail.com>
Date:   Tue May 2 16:02:16 2017 -0700

    Update EntityRecognizer.ts

    Change EntityRecognizer.ts to reflect new location of IRecognizeContext

commit 172f34861478e061842efd639670c023d99a3f3f
Author: Robert Standefer <rstand@microsoft.com>
Date:   Tue May 2 15:03:58 2017 -0700

    Updating README.md for documentation changes

commit 30e1e85e37df709c501fd03fd50cacb47dd7b6b0
Author: stevengum97 <steven.gum@gmail.com>
Date:   Tue May 2 11:21:20 2017 -0700

    Added yesExp and noExp to deutsch locale

commit e8b1d7ef0da3d48d463043a8e476f3edb60b6380
Merge: a1c1c7b cbfa7b5
Author: stevengum97 <steven.gum@gmail.com>
Date:   Tue May 2 11:17:23 2017 -0700

    Merge branch 'EntityRecognizer'

commit a1c1c7ba8f947848aa864c6142b6504600d774a3
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:49:39 2017 -0700

    Add default CancellationToken to Forward extension method (#2677)

commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Tue May 2 10:48:13 2017 -0700

    Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

commit 430a5eabf1bf62451b9e0eec70845adcd236c555
Merge: 3f3c13d 9df6cc3
Author: Nils <nils.whitmont@gmail.com>
Date:   Tue May 2 10:06:23 2017 -0700

    Merge pull request #2362 from iMicknl/de-locale-node

    [Node SDK] Added German (de) locale for NodeJS BotBuilder

commit 3f3c13d747ff3aa8a5de518257eced189b26799a
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 13:54:21 2017 -0700

    Fix failing BotDispatcher test after merge

commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 13:05:21 2017 -0700

    No null collections (#2673)

    * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

    * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

commit 682ed1766713940c8bb382508b5ae68c216c7113
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 1 11:51:41 2017 -0700

    Add machine translated resource files for new resource strings

commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
Author: Brandon H <brandonh-msft@users.noreply.github.com>
Date:   Mon May 1 12:30:31 2017 -0700

    Api extensions (#2672)

    * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

    * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

    * GetValueOrDefault for IBotDataBag

    * IActivity.TryGetChannelData<T>(out T instance)

commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:27:22 2017 -0700

    Published beta 8

commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 28 17:25:00 2017 -0700

    Support for updating & deleting existing messages.

commit 1e05916c809f71583920c8a7528dd509fec66837
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 15:09:48 2017 -0700

    Return ID's for sent messages.

commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri Apr 28 16:50:43 2017 -0700

    Update assembly info for 3.5.8 release

commit db2b8f860a3d8f7744a378930f93c4b0baa97978
Author: Chris McConnell <chrimc@microsoft.com>
Date:   Fri Apr 21 13:06:49 2017 -0700

    Cherry-pick develop commit d23b639..57b7275

    Switch LUIS resolution to handle objects rather than just strings.

    Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
    Can modify the luis request through attributes, the service or the dialog.
    Made it so that sampling is allowed by default.
    Mark action binding as obsolete.

    [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

    * Added Min & Max to PromptInt64 & PromptDouble

    * Added speak parameter.

    * Added Speak to PromptDialog.Number

    * Add missing documentation

    [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

    * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

    * Add missing documentation

    * Update PromptConfirm to internally use a PromptChoice

    [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

    * fix PromptChoice special case

    * fix range for RecognizeInteger

    * fix ordinal resources

    Fix build break after merge of pull requests

    Update issue template to remove #

    Partially address https://github.com/Microsoft/BotBuilder/issues/2658

    Merge pull request #2659 from ejadib/patch-2

    Update issue template to remove #

    Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

commit c80cdce10f69bc9a974159ca3ee187a08412036a
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:25:20 2017 -0700

    Published new 3.8 beta7 build

commit 17e6381d61133c75573d5547635f8d527422b61b
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:16:36 2017 -0700

    Fixed RouteHandler spelling

commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:13:02 2017 -0700

    Added comment for WaterfallDialog class.

commit baeaea0f981050c1a11afc459fc6af292d925d35
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 14:10:46 2017 -0700

    Exposed new WaterfallDialog class.

commit 0df48494cf578c7075a334049c2920dd05ba4635
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 27 13:22:14 2017 -0700

    Added automatic setting of allowSampling flag for LUIS

commit f089c1a2a91082c513eb684224a92792d9c043b7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Mon Apr 24 13:54:26 2017 -0700

    Added new IntentRecognizer bass class.

commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
Merge: 60d5a37 4df8945
Author: Nils <nils.whitmont@gmail.com>
Date:   Thu Apr 27 09:45:40 2017 -0700

    Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

    [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

commit cbfa7b5869c3d9791527f9e138c0dd143cf046e0
Author: stevengum97 <steven.gum@gmail.com>
Date:   Wed Apr 26 17:00:33 2017 -0700

    added localization to EntityRecognizer.parseBoolean, added basic regExp patterns to BotBuilder.json files

commit 730c330db7066e03d08d4b1b5f5064c90b1c3f0a
Author: Bart Lannoeye <bart.lannoeye@gmail.com>
Date:   Tue Apr 25 18:47:24 2017 +0200

    Bringing documentation in sync with the included code

commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Fri Apr 21 00:05:01 2017 -0700

    Fixed bug in ChatConnector

commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
Author: Steven Ickman <stevenic@microsoft.com>
Date:   Thu Apr 20 15:29:47 2017 -0700

    Tweaks needed for MSTeams

commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 20 22:33:43 2017 -0700

    Update assembly info for 3.5.7-alpha release

commit f837319db27323c19886545c510c6e49be487cd9
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu Apr 6 18:15:48 2017 -0700

    cherry-pick develop commit 0a5262f..95a036e

    Update PromptConfirm's Options and Patterns getter (#2564)

    * Changed Options & Patterns getter

    * Apply feedback.

    Fix vulnerability in module base64url@1.0.6

    Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
    severity) introduced by concat-stream@1.4.10 as described here:
    https://snyk.io/test/npm/base64url/1.0.6

    Revert "Fix vulnerability in module base64url@1.0.6"

    This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

    Added spellCheck flag for LUIS to enable spell checking.

    Switch keyboards to suggested actions and deprecate KeyboardCards.

    Cleanup a few compiler warnings.

    *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

    Change IChannelCapability interface to return speak capabilities

    Add AutoInputHint IBotToUser and QueueDrainingDialogTask

    Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

    Add IMessageQueue and InputHintQueue

    Add tests for InputHintQueue

    Refresh tokens even when Forbidden is returned by channel.

    [C# SDK] Add SayAsync extension method (#2596)

    * Add SayAsync extension method

    * Fix typo on method documentation

    Update prompts to use new prompt recognizers (#2609)

    * Added PromptRecognizers & PromptOptions Speak related properties

    * Fix potential run condition when test PromptConfirm Options/Patterns

    * Update PromptStyler so it sets the message InputHint to ExpectingInput.

    * Cleanup code related to locale

    * Fix typo on IntegerOnly

    * changed PromptRecognizer resource keys to constants

    * implemented PromptChoice Options
     recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

    * fix PromptChoice with reverse ordinal selected

    * Added Localization tests for Prompts

    * Changed script for the message.InputHint

    * Moved PromptRecognizerTests resources

    * Extract IPromptRecognizers interface to use it in the PromptOptions

    * Changed RecognizeChoices signature

    * Added IPromptRecognizers documentation
    Changed name DefaultRecognizers to PromptRecognizers

    * consts PascalCase

    * Implemented PromptRecognizersCache with ConcurrentDictionary

    * Changed variable name synonyms

    * Updated multilingual files.

    * Update spanish XLF.

    * Added BooleanChoices to Spanish.

    * Added IPromptRecognizers Extension methods

    * Renamed PromptRecognizer

    * Fix Min/Max order

    * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

    Fix spanish xlf file and regenerate spanish resource file

    Fix different build warnings

    Fix typo in Luis swagger file

    Squashed commit of the following:

    commit 989192449c6b02d1e9546cd4121761988c958447
    Merge: 10233da 865b290
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 20 15:43:14 2017 -0700

        Merge pull request #2087 from tachyons/patch-1

        [Node SDK] Fixed typo in examples

    commit 10233da2dbd57c6efc6565977c344a14b91cd058
    Merge: 86d4318 32adbd1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 13:16:26 2017 -0700

        Merge pull request #2623 from ejadib/patch-2

        Fix index when dealing with reverse ordinals

    commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Wed Apr 19 15:57:31 2017 -0700

        Send "endOfConversation" activity to cortana now

    commit 32adbd194c860b39b612de086ecced141dea86e1
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:40:37 2017 -0300

        Apply fix also to JS file

    commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
    Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
    Date:   Wed Apr 19 15:35:23 2017 -0300

        Fix index when dealing with reverse ordinals

        When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

    commit a4dee8f49658cfc24021182857f9614212b65cce
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 11:01:31 2017 -0700

        update issue issue template

    commit 645256010f2dc9ddb6831279e6757c8cbc85d408
    Author: Nils Whitmont <nils.whitmont@gmail.com>
    Date:   Wed Apr 19 10:44:22 2017 -0700

        update issue_template

    commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 16:08:06 2017 -0700

        Added fix for MSTeams to allow starting of 1;1 chats.

    commit fc471c9d0444e50ee113db95db19207d373f3cff
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 15:57:46 2017 -0700

        Published v3.8.0-beta3 to npm @next tag

    commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:46:46 2017 -0700

        Removed speech sample. It's in the sample repository

    commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 18 13:45:02 2017 -0700

        Improvements to better support speech channels.

    commit d9fe548747742375b70b34e25923bd6fb08b1162
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:49:41 2017 -0700

        Publisshed beta 2 of v3.8

    commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 14 16:24:41 2017 -0700

        Tweeks needed to better support speech.

    commit e3f38265dfc72ca0e3116be1005a84c130935fb5
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Thu Apr 13 16:57:43 2017 -0700

        Fix bug in suggested actions and update suggested actions sample

    commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:05:45 2017 -0700

        Fixes in suggested actions sample

    commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
    Author: Carlos Castro <ccastro@microsoft.com>
    Date:   Mon Mar 27 15:03:58 2017 -0700

        Suggested actions support for Node.js with the new protocol

    commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 22:07:06 2017 -0700

        Enable VSO build for bot builder nuget (#2597)

        Change bot builder app.config to copy always

        Add updateAssemblyInfo

        Add public key for delay signing the assmeblies

        Fix build issues with the public key path

        Fix Multilingual App toolkit build issue

        Remove samples from Release build

        Update builder.nuspec to only include relevant source code

    commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
    Merge: 9146eb7 4647095
    Author: dandriscoll <dan.driscoll@microsoft.com>
    Date:   Wed Apr 12 22:02:11 2017 -0700

        Merge pull request #2548 from Microsoft/feature/new-issue-template

        Create New Issue Template

    commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 16:20:00 2017 -0700

        Update assembly info for release

    commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:41:10 2017 -0700

        Update connector xml documentation

    commit 164e6db689bb84a59e03cd9840074d5f59cad6da
    Merge: cedb5f3 b854967
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:39:00 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 12 15:34:14 2017 -0700

        Add Properties to ActivityEx object

    commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:31 2017 -0700

        Update connector assembly version

    commit a5787601c9f44457ff66fb839f123cbdecf37b80
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue Apr 11 15:23:17 2017 -0700

        Add EndOfConversationCodes

    commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Tue Apr 11 09:06:13 2017 -0700

        Changed scale of calculated coverage scores.

    commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 20:36:23 2017 -0700

        Node SDK not always sending user-agent

    commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:29:39 2017 -0700

        Choice prompt giving wrong retry prompt.

    commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 19:23:30 2017 -0700

        Fixed out dated custom routes sample.

    commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:40:02 2017 -0700

        Published beta1 release of 3.8

    commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 10 15:20:00 2017 -0700

        New prompts & speech support fixes + tests

    commit 41726fffd76f48a8c5876876f4221ab455fa9055
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 7 12:27:04 2017 -0700

        New prompt system and added support for speech.

    commit 46470951ea682ffd01ae788566342738b8b033c2
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:46:48 2017 -0700

        update issue_template.md

        Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

    commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Fri Apr 7 12:39:08 2017 -0700

        update issue_template.md

        Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

    commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
    Merge: cacbc6a 4b3ea78
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:20:58 2017 -0700

        Merge remote-tracking branch 'botbuilder-public/master'

    commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 13:17:19 2017 -0700

        Update namespace for InputHints

    commit 8622b09197431cb691194a262128708a1df44117
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed Apr 5 12:56:36 2017 -0700

        Add InputHints to Activity

    commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:26:37 2017 -0700

        update md formatting of sublist items

        update formatting of sublist items in the Node/npm version section.

    commit ca3b89d8e1b69acc1f223470cda186332d984b63
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:18:18 2017 -0700

        update issue_template.md

        Add suggestion to post issue on Stack Overflow & include link.

    commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue Apr 4 11:02:56 2017 -0700

        Create issue_template.md

        Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

    commit 933995cfe009976ca2f81340009eccf31dee7498
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu Mar 23 10:25:01 2017 -0700

        fix net45

    commit 9dff93c1d825418eac69360ab03f8d4d728b450b
    Author: Tom Laird-McConnell <tomlm@microsoft.com>
    Date:   Thu M…
msft-shahins added a commit that referenced this pull request May 10, 2017
Squashed commit of the following:

commit 720046eb8d55cc7615456736a665f9deffa7bad7
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue May 9 20:27:39 2017 -0700

    Update assembly version for latest release of bot.builder

commit 9f4176e4f824e01cafbaaecb4791a686670a7f0a
Merge: 3413e8b 7b70cfd
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue May 9 14:24:55 2017 -0700

    Merge remote-tracking branch 'botbuilder-public/master'

commit 3413e8bc4378d96b95354d969c9b2453679da19e
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Tue May 9 11:10:47 2017 -0700

    Make the reason to be empty string by default in GenerateUnauthorizedResponse

commit 7518d32ba15905c55713f76824af416c47ebcdc1
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 8 17:41:50 2017 -0700

    Update botbuilder.history to 3.0.4

commit abec32ca88e5823946c1704c3ae1317b8c4b5560
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Mon May 8 16:23:55 2017 -0700

    Update assembly version for 3.8 release

commit 5874a16d2a037ab2ce59e4b35e2b9b9b6259028c
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri May 5 15:42:22 2017 -0700

    Add payment types

commit 8eb83d2bc468060f4d39c025a1e84528bec7d367
Merge: 90847c5 b787116
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Fri May 5 14:33:19 2017 -0700

    Merge remote-tracking branch 'botbuilder-public/master'

commit 90847c55e99df43e6b176074dc45207befa2e65e
Author: Shahin Shayandeh <shahins@microsoft.com>
Date:   Thu May 4 19:12:12 2017 -0700

    Merge botbuilder/master to botbuilder-dev/master

    Squashed commit of the following:

    commit 6e39463ad5391dd22bde3fe76667cdf5dfda6a89
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu May 4 18:52:56 2017 -0700

        Update builder and connector nuspec to have the right dependency

    commit 01fe69cbc985712a230eb92833a3fd401ae3ad43
    Author: Will Portnoy <wportnoy@microsoft.com>
    Date:   Thu Mar 9 15:43:33 2017 -0800

        Cherry-pick from develop e9a08cd..1e227b0

        add ScorableTriggerTests.TriggerAction demo

        (cherry picked from commit e9a08cdb383dfc1b724cea2214e900adeae70bb4)

        illustrate custom LuisModel for DispatchDialog
        (cherry picked from commit 2961750cdac09d79d0f5e3f6b9f21f896962e856)

        reset on end conversation, plus unit test
        (cherry picked from commit f170cd5e83d60e3f20c7aa4ebee2072161232f75)

        Enable ability/guidance to add registrations to Autofac container without Update

        https://github.com/Microsoft/BotBuilder/issues/1966
        (cherry picked from commit ebbe7ee812e1f3d1e96160177ddceaeae771ccfa)

        StrictEntityToType.Interpret method returns wrong values in some cases, plus tests

        https://github.com/Microsoft/BotBuilder/issues/2088
        https://github.com/Microsoft/BotBuilder/pull/2109
        (cherry picked from commit 885bbf9bf70a44d7bc27e9845358c3012f968abb)

        add delay message type in Session and implement in ChatConnector
        (cherry picked from commit 23f716bfdcf3bd9fa581b48693be733256c9b359)

        use value prop instead of text
        (cherry picked from commit b61d52cb6eed6317076ba6fe66c1de9f1a5deb60)

        Merge branch 'develop' into delay
        (cherry picked from commit f687699f3f4a38b8758ffa66dc21c4c3bbc72f5c)

        Merge pull request #2696 from codefoster/delay

        Add Session.delay() method
        (cherry picked from commit aac445b3aa2e7072811002cb67087368efbed568)

        Add SetLocalTimestampMapper
        (cherry picked from commit 6381c0feac4041b82b64ecc6a5572eaa308193be)

        Merge master to develop
        (cherry picked from commit ce71a2ce7ce2ba36a22ce645e49be58a05f2a158)

        Update LuisRequest for change to log flag and add extra parameters in case something is added in the future.
        (cherry picked from commit 1e227b06f629dcd8e15d31a8f529ffe636cf0ec4)

    commit 734e3a9bdc5a0ed0beb3a269cf4868c2d2623269
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu May 4 14:09:49 2017 -0700

        Add JsonExtensionData to ChannelAccount and ConversationAccount

        Update Bot.Builder.Calling assembly version for release

    commit 30002befec5a7ce867b24021d0323eb5198292ad
    Author: Malar <malarch@microsoft.com>
    Date:   Thu May 4 16:32:56 2017 -0700

        Moving classes needed for realtime media calling into a separate GIT repo (https://github.com/Microsoft/BotBuilder-RealTimeMediaCalling) & Adding MIT License (#2703)

        1. Fixing typo in ParsedCallingRequest SkypeChaindId as SkypeChainId
        2. Removing NotificationsConverter.cs, NotificationResponse.cs, NotificationBase.cs, CallStateChangeNotification.cs, NotificationType.cs as they are needed only for RealTimeMedia calling
        3. Removing validation of Action property from ActionBase.cs and validating in each action instead
        4. Removing NotificationConverter from list of converters in Serializer

    commit 10aaff0669cebab2dab3b7482df16c1b8dac9adb
    Author: brijrajsingh <brijrajsingh@gmail.com>
    Date:   Fri May 5 03:50:09 2017 +0530

        fixed the Sample code to use the UniversalBot Class (#1711)

    commit 87b9fbb0d236f0a5f758a9175f0e009dcf23e42d
    Merge: 9154040 7efd75c
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu May 4 15:11:37 2017 -0700

        Merge pull request #2585 from nwhitmont/fix-vulnerability-in-base64url-module

        [Node SDK] Fix vulnerability in module base64url@1.0.6

    commit 9154040a34c46947b20d7d6ef323ab79b189a4c5
    Merge: 1e336b8 89915f5
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu May 4 14:30:44 2017 -0700

        Merge pull request #2686 from stevengum97/master

        [Node SDK] Add localization to EntityRecognizer.parseBoolean()

    commit 1e336b89dedb9aa387854e1ab76adfafaf8155a1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu May 4 13:34:43 2017 -0700

        Merge pull request #2696 from codefoster/delay

        Add Session.delay() method

    commit 2554e7004f1e51a4150f83309814c2014990ea33
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu May 4 12:59:18 2017 -0700

        Add EndorsementsComparer and create a dictionary from distinct endorsements

    commit 0f3df6a9f91804f07e3008b9a9dd448e56d57f39
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed May 3 17:59:42 2017 -0700

        Use ConcurrentDictionary for openIdMetadataCache

    commit b82ec6b7226b84bd7424a6c235e87f4466b21968
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed May 3 16:18:57 2017 -0700

        node.js: Enforce endorsements if token's signing key has any endorsements associated with it

    commit 9678752f071bbd485fa5fd12a7f21b6566831001
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Wed May 3 14:49:05 2017 -0700

        Enforce endorsements if token's signing key has any endorsements associated with it.

    commit 2d8f3ed71e81e4b187176bde9cdd4796d24596f7
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 22:23:41 2017 -0700

        Validate serviceUrl of activity using serviceUrl in the claims.

    commit 113ee6db35145b8554eedcb8709bdf96b4962114
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 15:09:17 2017 -0700

        Require minimum of RS256 signing algo on inbound tokens

    commit 9057453a459cda573bd80894cca45691b570c1bb
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Wed May 3 12:37:47 2017 -0700

        update system info section as required

    commit a3abb66c5eb5c8c3970ae9ccaca548b9819b7aec
    Author: Robert Standefer <robstand@outlook.com>
    Date:   Wed May 3 12:36:29 2017 -0700

        Fixed Gitter link

    commit 8ba1cdb7aaa7ec61f30ac5f0facfb0aaa665d0c7
    Merge: 005cc98 172f348
    Author: Robert Standefer <robstand@outlook.com>
    Date:   Wed May 3 12:30:29 2017 -0700

        Merge pull request #2688 from Microsoft/robstand-DocsChange

        [Docs] Updating README.md for documentation changes

    commit 005cc980e26a586541418317d56739636818abee
    Merge: 359ff24 102afc6
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Wed May 3 12:14:41 2017 -0700

        Merge pull request #2549 from nwhitmont/bug/BB-2546_add-missing-module-url-join

        [Node SDK] Fix for #2546 Add missing url-join module to package.json so examples run correctly.

    commit 359ff244de02889aee90329d75418ca3f115fbb5
    Merge: adf055b 730c330
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Wed May 3 10:27:26 2017 -0700

        Merge pull request #2648 from bartlannoeye/Documentation

        [Docs > C#] Bringing Dialog documentation in sync with code

    commit adf055b1ced522620ea882ce12992e6be2ba2916
    Merge: 1c54d50 b453ad6
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Wed May 3 10:24:52 2017 -0700

        Merge pull request #2458 from Microsoft/ms-code-of-conduct

        [Docs] Add Microsoft code of conduct

    commit 1c54d504dba43a91927730b6f3c4568c55b1e41c
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Tue May 2 15:56:20 2017 -0700

        Cherry-pick from develop 524c149..c7978b3

        Merge master to develop
        Squashed commit of the following:

        commit a1c1c7ba8f947848aa864c6142b6504600d774a3
        Author: Brandon H <brandonh-msft@users.noreply.github.com>
        Date:   Tue May 2 10:49:39 2017 -0700

            Add default CancellationToken to Forward extension method (#2677)

        commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
        Author: Brandon H <brandonh-msft@users.noreply.github.com>
        Date:   Tue May 2 10:48:13 2017 -0700

            Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

        commit 430a5eabf1bf62451b9e0eec70845adcd236c555
        Merge: 3f3c13d 9df6cc3
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue May 2 10:06:23 2017 -0700

            Merge pull request #2362 from iMicknl/de-locale-node

            [Node SDK] Added German (de) locale for NodeJS BotBuilder

        commit 3f3c13d747ff3aa8a5de518257eced189b26799a
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Mon May 1 13:54:21 2017 -0700

            Fix failing BotDispatcher test after merge

        commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
        Author: Brandon H <brandonh-msft@users.noreply.github.com>
        Date:   Mon May 1 13:05:21 2017 -0700

            No null collections (#2673)

            * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

            * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

        commit 682ed1766713940c8bb382508b5ae68c216c7113
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Mon May 1 11:51:41 2017 -0700

            Add machine translated resource files for new resource strings

        commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
        Author: Brandon H <brandonh-msft@users.noreply.github.com>
        Date:   Mon May 1 12:30:31 2017 -0700

            Api extensions (#2672)

            * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

            * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

            * GetValueOrDefault for IBotDataBag

            * IActivity.TryGetChannelData<T>(out T instance)

        commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 28 17:27:22 2017 -0700

            Published beta 8

        commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 28 17:25:00 2017 -0700

            Support for updating & deleting existing messages.

        commit 1e05916c809f71583920c8a7528dd509fec66837
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 15:09:48 2017 -0700

            Return ID's for sent messages.

        commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Fri Apr 28 16:50:43 2017 -0700

            Update assembly info for 3.5.8 release

        commit db2b8f860a3d8f7744a378930f93c4b0baa97978
        Author: Chris McConnell <chrimc@microsoft.com>
        Date:   Fri Apr 21 13:06:49 2017 -0700

            Cherry-pick develop commit d23b639..57b7275

            Switch LUIS resolution to handle objects rather than just strings.

            Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
            Can modify the luis request through attributes, the service or the dialog.
            Made it so that sampling is allowed by default.
            Mark action binding as obsolete.

            [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

            * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

            * Add missing documentation

            [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

            * Added Min & Max to PromptInt64 & PromptDouble

            * Added speak parameter.

            * Added Speak to PromptDialog.Number

            * Add missing documentation

            [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

            * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

            * Add missing documentation

            * Update PromptConfirm to internally use a PromptChoice

            [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

            * fix PromptChoice special case

            * fix range for RecognizeInteger

            * fix ordinal resources

            Fix build break after merge of pull requests

            Update issue template to remove #

            Partially address https://github.com/Microsoft/BotBuilder/issues/2658

            Merge pull request #2659 from ejadib/patch-2

            Update issue template to remove #

            Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

        commit c80cdce10f69bc9a974159ca3ee187a08412036a
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 14:25:20 2017 -0700

            Published new 3.8 beta7 build

        commit 17e6381d61133c75573d5547635f8d527422b61b
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 14:16:36 2017 -0700

            Fixed RouteHandler spelling

        commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 14:13:02 2017 -0700

            Added comment for WaterfallDialog class.

        commit baeaea0f981050c1a11afc459fc6af292d925d35
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 14:10:46 2017 -0700

            Exposed new WaterfallDialog class.

        commit 0df48494cf578c7075a334049c2920dd05ba4635
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 27 13:22:14 2017 -0700

            Added automatic setting of allowSampling flag for LUIS

        commit f089c1a2a91082c513eb684224a92792d9c043b7
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 24 13:54:26 2017 -0700

            Added new IntentRecognizer bass class.

        commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
        Merge: 60d5a37 4df8945
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Thu Apr 27 09:45:40 2017 -0700

            Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

            [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

        commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 21 00:05:01 2017 -0700

            Fixed bug in ChatConnector

        commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 20 15:29:47 2017 -0700

            Tweaks needed for MSTeams

        commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Thu Apr 20 22:33:43 2017 -0700

            Update assembly info for 3.5.7-alpha release

        commit f837319db27323c19886545c510c6e49be487cd9
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Thu Apr 6 18:15:48 2017 -0700

            cherry-pick develop commit 0a5262f..95a036e

            Update PromptConfirm's Options and Patterns getter (#2564)

            * Changed Options & Patterns getter

            * Apply feedback.

            Fix vulnerability in module base64url@1.0.6

            Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
            severity) introduced by concat-stream@1.4.10 as described here:
            https://snyk.io/test/npm/base64url/1.0.6

            Revert "Fix vulnerability in module base64url@1.0.6"

            This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

            Added spellCheck flag for LUIS to enable spell checking.

            Switch keyboards to suggested actions and deprecate KeyboardCards.

            Cleanup a few compiler warnings.

            *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

            Change IChannelCapability interface to return speak capabilities

            Add AutoInputHint IBotToUser and QueueDrainingDialogTask

            Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

            Add IMessageQueue and InputHintQueue

            Add tests for InputHintQueue

            Refresh tokens even when Forbidden is returned by channel.

            [C# SDK] Add SayAsync extension method (#2596)

            * Add SayAsync extension method

            * Fix typo on method documentation

            Update prompts to use new prompt recognizers (#2609)

            * Added PromptRecognizers & PromptOptions Speak related properties

            * Fix potential run condition when test PromptConfirm Options/Patterns

            * Update PromptStyler so it sets the message InputHint to ExpectingInput.

            * Cleanup code related to locale

            * Fix typo on IntegerOnly

            * changed PromptRecognizer resource keys to constants

            * implemented PromptChoice Options
             recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

            * fix PromptChoice with reverse ordinal selected

            * Added Localization tests for Prompts

            * Changed script for the message.InputHint

            * Moved PromptRecognizerTests resources

            * Extract IPromptRecognizers interface to use it in the PromptOptions

            * Changed RecognizeChoices signature

            * Added IPromptRecognizers documentation
            Changed name DefaultRecognizers to PromptRecognizers

            * consts PascalCase

            * Implemented PromptRecognizersCache with ConcurrentDictionary

            * Changed variable name synonyms

            * Updated multilingual files.

            * Update spanish XLF.

            * Added BooleanChoices to Spanish.

            * Added IPromptRecognizers Extension methods

            * Renamed PromptRecognizer

            * Fix Min/Max order

            * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

            Fix spanish xlf file and regenerate spanish resource file

            Fix different build warnings

            Fix typo in Luis swagger file

            Squashed commit of the following:

            commit 989192449c6b02d1e9546cd4121761988c958447
            Merge: 10233da 865b290
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Thu Apr 20 15:43:14 2017 -0700

                Merge pull request #2087 from tachyons/patch-1

                [Node SDK] Fixed typo in examples

            commit 10233da2dbd57c6efc6565977c344a14b91cd058
            Merge: 86d4318 32adbd1
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Thu Apr 20 13:16:26 2017 -0700

                Merge pull request #2623 from ejadib/patch-2

                Fix index when dealing with reverse ordinals

            commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Wed Apr 19 15:57:31 2017 -0700

                Send "endOfConversation" activity to cortana now

            commit 32adbd194c860b39b612de086ecced141dea86e1
            Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
            Date:   Wed Apr 19 15:40:37 2017 -0300

                Apply fix also to JS file

            commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
            Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
            Date:   Wed Apr 19 15:35:23 2017 -0300

                Fix index when dealing with reverse ordinals

                When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

            commit a4dee8f49658cfc24021182857f9614212b65cce
            Author: Nils Whitmont <nils.whitmont@gmail.com>
            Date:   Wed Apr 19 11:01:31 2017 -0700

                update issue issue template

            commit 645256010f2dc9ddb6831279e6757c8cbc85d408
            Author: Nils Whitmont <nils.whitmont@gmail.com>
            Date:   Wed Apr 19 10:44:22 2017 -0700

                update issue_template

            commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Tue Apr 18 16:08:06 2017 -0700

                Added fix for MSTeams to allow starting of 1;1 chats.

            commit fc471c9d0444e50ee113db95db19207d373f3cff
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Tue Apr 18 15:57:46 2017 -0700

                Published v3.8.0-beta3 to npm @next tag

            commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Tue Apr 18 13:46:46 2017 -0700

                Removed speech sample. It's in the sample repository

            commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Tue Apr 18 13:45:02 2017 -0700

                Improvements to better support speech channels.

            commit d9fe548747742375b70b34e25923bd6fb08b1162
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Fri Apr 14 16:49:41 2017 -0700

                Publisshed beta 2 of v3.8

            commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Fri Apr 14 16:24:41 2017 -0700

                Tweeks needed to better support speech.

            commit e3f38265dfc72ca0e3116be1005a84c130935fb5
            Author: Carlos Castro <ccastro@microsoft.com>
            Date:   Thu Apr 13 16:57:43 2017 -0700

                Fix bug in suggested actions and update suggested actions sample

            commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
            Author: Carlos Castro <ccastro@microsoft.com>
            Date:   Mon Mar 27 15:05:45 2017 -0700

                Fixes in suggested actions sample

            commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
            Author: Carlos Castro <ccastro@microsoft.com>
            Date:   Mon Mar 27 15:03:58 2017 -0700

                Suggested actions support for Node.js with the new protocol

            commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 12 22:07:06 2017 -0700

                Enable VSO build for bot builder nuget (#2597)

                Change bot builder app.config to copy always

                Add updateAssemblyInfo

                Add public key for delay signing the assmeblies

                Fix build issues with the public key path

                Fix Multilingual App toolkit build issue

                Remove samples from Release build

                Update builder.nuspec to only include relevant source code

            commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
            Merge: 9146eb7 4647095
            Author: dandriscoll <dan.driscoll@microsoft.com>
            Date:   Wed Apr 12 22:02:11 2017 -0700

                Merge pull request #2548 from Microsoft/feature/new-issue-template

                Create New Issue Template

            commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 12 16:20:00 2017 -0700

                Update assembly info for release

            commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 12 15:41:10 2017 -0700

                Update connector xml documentation

            commit 164e6db689bb84a59e03cd9840074d5f59cad6da
            Merge: cedb5f3 b854967
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 12 15:39:00 2017 -0700

                Merge remote-tracking branch 'botbuilder-public/master'

            commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 12 15:34:14 2017 -0700

                Add Properties to ActivityEx object

            commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Tue Apr 11 15:23:31 2017 -0700

                Update connector assembly version

            commit a5787601c9f44457ff66fb839f123cbdecf37b80
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Tue Apr 11 15:23:17 2017 -0700

                Add EndOfConversationCodes

            commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Tue Apr 11 09:06:13 2017 -0700

                Changed scale of calculated coverage scores.

            commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Mon Apr 10 20:36:23 2017 -0700

                Node SDK not always sending user-agent

            commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Mon Apr 10 19:29:39 2017 -0700

                Choice prompt giving wrong retry prompt.

            commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Mon Apr 10 19:23:30 2017 -0700

                Fixed out dated custom routes sample.

            commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Mon Apr 10 15:40:02 2017 -0700

                Published beta1 release of 3.8

            commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Mon Apr 10 15:20:00 2017 -0700

                New prompts & speech support fixes + tests

            commit 41726fffd76f48a8c5876876f4221ab455fa9055
            Author: Steven Ickman <stevenic@microsoft.com>
            Date:   Fri Apr 7 12:27:04 2017 -0700

                New prompt system and added support for speech.

            commit 46470951ea682ffd01ae788566342738b8b033c2
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Fri Apr 7 12:46:48 2017 -0700

                update issue_template.md

                Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

            commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Fri Apr 7 12:39:08 2017 -0700

                update issue_template.md

                Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

            commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
            Merge: cacbc6a 4b3ea78
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 5 13:20:58 2017 -0700

                Merge remote-tracking branch 'botbuilder-public/master'

            commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 5 13:17:19 2017 -0700

                Update namespace for InputHints

            commit 8622b09197431cb691194a262128708a1df44117
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Wed Apr 5 12:56:36 2017 -0700

                Add InputHints to Activity

            commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Tue Apr 4 11:26:37 2017 -0700

                update md formatting of sublist items

                update formatting of sublist items in the Node/npm version section.

            commit ca3b89d8e1b69acc1f223470cda186332d984b63
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Tue Apr 4 11:18:18 2017 -0700

                update issue_template.md

                Add suggestion to post issue on Stack Overflow & include link.

            commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
            Author: Nils <nils.whitmont@gmail.com>
            Date:   Tue Apr 4 11:02:56 2017 -0700

                Create issue_template.md

                Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

            commit 933995cfe009976ca2f81340009eccf31dee7498
            Author: Tom Laird-McConnell <tomlm@microsoft.com>
            Date:   Thu Mar 23 10:25:01 2017 -0700

                fix net45

            commit 9dff93c1d825418eac69360ab03f8d4d728b450b
            Author: Tom Laird-McConnell <tomlm@microsoft.com>
            Date:   Thu Mar 23 10:05:54 2017 -0700

                move ctor params to be non-breaking

            commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
            Author: Tom Laird-McConnell <tomlm@microsoft.com>
            Date:   Thu Mar 23 08:34:56 2017 -0700

                update connector lib to newest swgger

            commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
            Merge: 0864169 2448cc9
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Tue Mar 21 16:25:47 2017 -0700

                Merge remote-tracking branch 'botbuilder-public/master'

            commit 0864169b0088c0466dd2a959f94891c11ddb71c9
            Author: Andrea-Orimoto <andreo@microsoft.com>
            Date:   Tue Feb 21 14:51:52 2017 -0800

                Update ISSUE_TEMPLATE

            commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
            Author: Andrea-Orimoto <andreo@microsoft.com>
            Date:   Tue Feb 21 14:34:05 2017 -0800

                Update ISSUE_TEMPLATE

            commit cf265ff5a3407817b67c239a8d71f2de775010ee
            Author: Andrea-Orimoto <andreo@microsoft.com>
            Date:   Tue Feb 21 14:33:32 2017 -0800

                Update ISSUE_TEMPLATE

            commit 556aa79c8893a16c200b1900f07561e5b24bb580
            Author: Andrea-Orimoto <andreo@microsoft.com>
            Date:   Tue Feb 21 14:26:22 2017 -0800

                Create ISSUE_TEMPLATE

            commit 06230696e1a46cd5dabf1da005c867b5e963343c
            Author: Shahin Shayandeh <shahins@microsoft.com>
            Date:   Tue Feb 7 14:38:15 2017 -0800

                Revert "Remove suggested actions from Activity"

                This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

            commit 865b29022061df55f0aad0259cb936697e9936d3
            Author: Aboobacker MK <aboobackervyd@gmail.com>
            Date:   Sat Jan 21 22:59:26 2017 +0530

                Fixed typo in examples

        commit 989192449c6b02d1e9546cd4121761988c958447
        Merge: 10233da 865b290
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Thu Apr 20 15:43:14 2017 -0700

            Merge pull request #2087 from tachyons/patch-1

            [Node SDK] Fixed typo in examples

        commit 10233da2dbd57c6efc6565977c344a14b91cd058
        Merge: 86d4318 32adbd1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 20 13:16:26 2017 -0700

            Merge pull request #2623 from ejadib/patch-2

            Fix index when dealing with reverse ordinals

        commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Wed Apr 19 15:57:31 2017 -0700

            Send "endOfConversation" activity to cortana now

        commit 32adbd194c860b39b612de086ecced141dea86e1
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:40:37 2017 -0300

            Apply fix also to JS file

        commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:35:23 2017 -0300

            Fix index when dealing with reverse ordinals

            When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

        commit a4dee8f49658cfc24021182857f9614212b65cce
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 11:01:31 2017 -0700

            update issue issue template

        commit 645256010f2dc9ddb6831279e6757c8cbc85d408
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 10:44:22 2017 -0700

            update issue_template

        commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 16:08:06 2017 -0700

            Added fix for MSTeams to allow starting of 1;1 chats.

        commit fc471c9d0444e50ee113db95db19207d373f3cff
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 15:57:46 2017 -0700

            Published v3.8.0-beta3 to npm @next tag

        commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:46:46 2017 -0700

            Removed speech sample. It's in the sample repository

        commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:45:02 2017 -0700

            Improvements to better support speech channels.

        commit d9fe548747742375b70b34e25923bd6fb08b1162
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:49:41 2017 -0700

            Publisshed beta 2 of v3.8

        commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:24:41 2017 -0700

            Tweeks needed to better support speech.

        commit e3f38265dfc72ca0e3116be1005a84c130935fb5
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Thu Apr 13 16:57:43 2017 -0700

            Fix bug in suggested actions and update suggested actions sample

        commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:05:45 2017 -0700

            Fixes in suggested actions sample

        commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:03:58 2017 -0700

            Suggested actions support for Node.js with the new protocol

        commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 22:07:06 2017 -0700

            Enable VSO build for bot builder nuget (#2597)

            Change bot builder app.config to copy always

            Add updateAssemblyInfo

            Add public key for delay signing the assmeblies

            Fix build issues with the public key path

            Fix Multilingual App toolkit build issue

            Remove samples from Release build

            Update builder.nuspec to only include relevant source code

        commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
        Merge: 9146eb7 4647095
        Author: dandriscoll <dan.driscoll@microsoft.com>
        Date:   Wed Apr 12 22:02:11 2017 -0700

            Merge pull request #2548 from Microsoft/feature/new-issue-template

            Create New Issue Template

        commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 16:20:00 2017 -0700

            Update assembly info for release

        commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:41:10 2017 -0700

            Update connector xml documentation

        commit 164e6db689bb84a59e03cd9840074d5f59cad6da
        Merge: cedb5f3 b854967
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:39:00 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:34:14 2017 -0700

            Add Properties to ActivityEx object

        commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:31 2017 -0700

            Update connector assembly version

        commit a5787601c9f44457ff66fb839f123cbdecf37b80
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:17 2017 -0700

            Add EndOfConversationCodes

        commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 11 09:06:13 2017 -0700

            Changed scale of calculated coverage scores.

        commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 20:36:23 2017 -0700

            Node SDK not always sending user-agent

        commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:29:39 2017 -0700

            Choice prompt giving wrong retry prompt.

        commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:23:30 2017 -0700

            Fixed out dated custom routes sample.

        commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:40:02 2017 -0700

            Published beta1 release of 3.8

        commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:20:00 2017 -0700

            New prompts & speech support fixes + tests

        commit 41726fffd76f48a8c5876876f4221ab455fa9055
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 7 12:27:04 2017 -0700

            New prompt system and added support for speech.

        commit 46470951ea682ffd01ae788566342738b8b033c2
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:46:48 2017 -0700

            update issue_template.md

            Added link to BotBuilder SDK contribution guidelines at top of "Pre-flight checklist" section.

        commit a9c1b70cb8ee5b9f3b9c74fe4e9ce52e390a7718
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Fri Apr 7 12:39:08 2017 -0700

            update issue_template.md

            Add more options in the section "Environment" Eg. localhost, Azure Web App, Azure Bot Service App, other. Added more options to the section "Operating System". Add section "Example Code" asks user to provide code snippet or complete working bot example.

        commit 4df894563f761c52324cdc961d880916ea9cf1fc
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 5 15:39:29 2017 -0700

            Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

        commit 2725ef4108da412ee9f1ad87c8e899712580e6a7
        Merge: cacbc6a 4b3ea78
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:20:58 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cacbc6a0f37e6b5c83fde638a8fc26a520eea120
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 13:17:19 2017 -0700

            Update namespace for InputHints

        commit 8622b09197431cb691194a262128708a1df44117
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 5 12:56:36 2017 -0700

            Add InputHints to Activity

        commit 5f651c46ae7fb8c6606e835b70ddf6393eea51a0
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:26:37 2017 -0700

            update md formatting of sublist items

            update formatting of sublist items in the Node/npm version section.

        commit ca3b89d8e1b69acc1f223470cda186332d984b63
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:18:18 2017 -0700

            update issue_template.md

            Add suggestion to post issue on Stack Overflow & include link.

        commit 3312a8257f3e61d29459a94f2f6e2e591c2f37e3
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Tue Apr 4 11:02:56 2017 -0700

            Create issue_template.md

            Provide users with more comprehensive instructions for reporting new issues, including link to Gitter group

        commit 933995cfe009976ca2f81340009eccf31dee7498
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:25:01 2017 -0700

            fix net45

        commit 9dff93c1d825418eac69360ab03f8d4d728b450b
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 10:05:54 2017 -0700

            move ctor params to be non-breaking

        commit dfcf92805e6fcb4f094e87b6f2c5b057e839c2ef
        Author: Tom Laird-McConnell <tomlm@microsoft.com>
        Date:   Thu Mar 23 08:34:56 2017 -0700

            update connector lib to newest swgger

        commit 410bd3c7a8417b565bf77c94c9516bc2eb196594
        Merge: 0864169 2448cc9
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Mar 21 16:25:47 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit 9df6cc32f864bbe04449436cd2628e9a12395d42
        Author: Mick Vleeshouwer <mick@imick.nl>
        Date:   Tue Feb 28 14:54:37 2017 +0100

            Add German translation (de)

        commit 0864169b0088c0466dd2a959f94891c11ddb71c9
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:51:52 2017 -0800

            Update ISSUE_TEMPLATE

        commit a0d20ca90749c72d356d2fa64bd7a40eedebc542
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:34:05 2017 -0800

            Update ISSUE_TEMPLATE

        commit cf265ff5a3407817b67c239a8d71f2de775010ee
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:33:32 2017 -0800

            Update ISSUE_TEMPLATE

        commit 556aa79c8893a16c200b1900f07561e5b24bb580
        Author: Andrea-Orimoto <andreo@microsoft.com>
        Date:   Tue Feb 21 14:26:22 2017 -0800

            Create ISSUE_TEMPLATE

        commit 06230696e1a46cd5dabf1da005c867b5e963343c
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Feb 7 14:38:15 2017 -0800

            Revert "Remove suggested actions from Activity"

            This reverts commit a71e64c24bd40f8b99de0a3326ea1b79110c33e1.

        commit 865b29022061df55f0aad0259cb936697e9936d3
        Author: Aboobacker MK <aboobackervyd@gmail.com>
        Date:   Sat Jan 21 22:59:26 2017 +0530

            Fixed typo in examples

        (cherry picked from commit 524c14909233cbc57a910e29b57a214afd6dc1a3)

        # Conflicts:
        #	CSharp/Library/Microsoft.Bot.Builder/ConnectorEx/BotToUser.cs
        #	CSharp/Library/Microsoft.Bot.Builder/Dialogs/IDialogContext.cs
        #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotDataTests.cs
        #	CSharp/Tests/Microsoft.Bot.Builder.Tests/BotTests.cs
        #	CSharp/Tests/Microsoft.Bot.Builder.Tests/ChainTests.cs

        fix promptChoice options match caseInsensitive (#2685)
        (cherry picked from commit c7978b3015d10d68d902ec5a42fce54ae8417a8c)

    commit 89915f54b27393e8a0c218df2d02102c61f7c838
    Author: Steven Gum <steven.gum@gmail.com>
    Date:   Tue May 2 16:02:16 2017 -0700

        Update EntityRecognizer.ts

        Change EntityRecognizer.ts to reflect new location of IRecognizeContext

    commit 172f34861478e061842efd639670c023d99a3f3f
    Author: Robert Standefer <rstand@microsoft.com>
    Date:   Tue May 2 15:03:58 2017 -0700

        Updating README.md for documentation changes

    commit 30e1e85e37df709c501fd03fd50cacb47dd7b6b0
    Author: stevengum97 <steven.gum@gmail.com>
    Date:   Tue May 2 11:21:20 2017 -0700

        Added yesExp and noExp to deutsch locale

    commit e8b1d7ef0da3d48d463043a8e476f3edb60b6380
    Merge: a1c1c7b cbfa7b5
    Author: stevengum97 <steven.gum@gmail.com>
    Date:   Tue May 2 11:17:23 2017 -0700

        Merge branch 'EntityRecognizer'

    commit a1c1c7ba8f947848aa864c6142b6504600d774a3
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:49:39 2017 -0700

        Add default CancellationToken to Forward extension method (#2677)

    commit af06e37b87ee4a49b4d37524c56d5c820e93cf57
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Tue May 2 10:48:13 2017 -0700

        Change CardAction to have default Type of 'ImBack' if it is not provided (#2675)

    commit 430a5eabf1bf62451b9e0eec70845adcd236c555
    Merge: 3f3c13d 9df6cc3
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Tue May 2 10:06:23 2017 -0700

        Merge pull request #2362 from iMicknl/de-locale-node

        [Node SDK] Added German (de) locale for NodeJS BotBuilder

    commit 3f3c13d747ff3aa8a5de518257eced189b26799a
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 13:54:21 2017 -0700

        Fix failing BotDispatcher test after merge

    commit 5ecf2d3c7737dc05895c99e1c50188f260e7e34f
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 13:05:21 2017 -0700

        No null collections (#2673)

        * Card array properties should be populated & empty so they don't result in a nullref when developer tries to add an item to them.

        * If a developer creates a new Activity object, the Attachments, Entities, MemebersAdded, and MembersRemoved collections are all null. In this case, an .Add() on the property throws a nullref. Instead, ensure these properties are at least initialized to empty, and not just during CreateReply()

    commit 682ed1766713940c8bb382508b5ae68c216c7113
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Mon May 1 11:51:41 2017 -0700

        Add machine translated resource files for new resource strings

    commit fb5314a4da4b0dc2fb1f50ae2b3571fc9962bb1b
    Author: Brandon H <brandonh-msft@users.noreply.github.com>
    Date:   Mon May 1 12:30:31 2017 -0700

        Api extensions (#2672)

        * Making a bunch of the convenience methods on Activity extension methods of IActivity or IMessageActivity to avoid requirement of using the "heavy" Activity object

        * IBotDataBag uses "setvalue" but "get" instead of "getvalue". Fixed.

        * GetValueOrDefault for IBotDataBag

        * IActivity.TryGetChannelData<T>(out T instance)

    commit 0b0887f70780bcb1aa641606d4595a15ccf980b0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:27:22 2017 -0700

        Published beta 8

    commit b19de3bfa3fa30eb1660bc057d114e4c9394b280
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 28 17:25:00 2017 -0700

        Support for updating & deleting existing messages.

    commit 1e05916c809f71583920c8a7528dd509fec66837
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 15:09:48 2017 -0700

        Return ID's for sent messages.

    commit 20c6493bd49ef63c5d95a6e3a824786b26c6d6da
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Fri Apr 28 16:50:43 2017 -0700

        Update assembly info for 3.5.8 release

    commit db2b8f860a3d8f7744a378930f93c4b0baa97978
    Author: Chris McConnell <chrimc@microsoft.com>
    Date:   Fri Apr 21 13:06:49 2017 -0700

        Cherry-pick develop commit d23b639..57b7275

        Switch LUIS resolution to handle objects rather than just strings.

        Add the ability to specify LUIS flags including spellCheck, allowSampling, staging  and domain.
        Can modify the luis request through attributes, the service or the dialog.
        Made it so that sampling is allowed by default.
        Mark action binding as obsolete.

        [C# SDK] Fix PromptOptions<T> ambiguous constructor issue (#2636)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        [C# SDK] Add Min/Max/Speak parameters to PromptInt64 and PromptDouble (#2637)

        * Added Min & Max to PromptInt64 & PromptDouble

        * Added speak parameter.

        * Added Speak to PromptDialog.Number

        * Add missing documentation

        [C# SDK] Update PromptConfirm to internally use a PromptChoice (#2644)

        * Fix ambiguous constructor issue in PromptOptions by introducing a IPromptOptions<T>

        * Add missing documentation

        * Update PromptConfirm to internally use a PromptChoice

        [C# SDK] Fix recognition of utterance "the last one" in PromptChoice (#2647)

        * fix PromptChoice special case

        * fix range for RecognizeInteger

        * fix ordinal resources

        Fix build break after merge of pull requests

        Update issue template to remove #

        Partially address https://github.com/Microsoft/BotBuilder/issues/2658

        Merge pull request #2659 from ejadib/patch-2

        Update issue template to remove #

        Fix issue #2589: Make sure that thread culture is set before dialogTaskManager loading the dialog stacks

    commit c80cdce10f69bc9a974159ca3ee187a08412036a
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:25:20 2017 -0700

        Published new 3.8 beta7 build

    commit 17e6381d61133c75573d5547635f8d527422b61b
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:16:36 2017 -0700

        Fixed RouteHandler spelling

    commit c5bcfafcee9b90ef079e0e1fc1b9a544a98e3ff1
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:13:02 2017 -0700

        Added comment for WaterfallDialog class.

    commit baeaea0f981050c1a11afc459fc6af292d925d35
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 14:10:46 2017 -0700

        Exposed new WaterfallDialog class.

    commit 0df48494cf578c7075a334049c2920dd05ba4635
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 27 13:22:14 2017 -0700

        Added automatic setting of allowSampling flag for LUIS

    commit f089c1a2a91082c513eb684224a92792d9c043b7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Mon Apr 24 13:54:26 2017 -0700

        Added new IntentRecognizer bass class.

    commit 0a702bc926bb670e9b4f9bca90abe41bdfcf301b
    Merge: 60d5a37 4df8945
    Author: Nils <nils.whitmont@gmail.com>
    Date:   Thu Apr 27 09:45:40 2017 -0700

        Merge pull request #2555 from nwhitmont/docs/node-core-readme-broken-link

        [Node SDK] Fix for #2552 update broken docs link in BotBuilder/Node/core/README.md

    commit cbfa7b5869c3d9791527f9e138c0dd143cf046e0
    Author: stevengum97 <steven.gum@gmail.com>
    Date:   Wed Apr 26 17:00:33 2017 -0700

        added localization to EntityRecognizer.parseBoolean, added basic regExp patterns to BotBuilder.json files

    commit 730c330db7066e03d08d4b1b5f5064c90b1c3f0a
    Author: Bart Lannoeye <bart.lannoeye@gmail.com>
    Date:   Tue Apr 25 18:47:24 2017 +0200

        Bringing documentation in sync with the included code

    commit 60d5a375c1d886b855b96f5afdbd970800a2e9c7
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Fri Apr 21 00:05:01 2017 -0700

        Fixed bug in ChatConnector

    commit 8ee47d765944ba6de7be85fe589763de0e46a0e0
    Author: Steven Ickman <stevenic@microsoft.com>
    Date:   Thu Apr 20 15:29:47 2017 -0700

        Tweaks needed for MSTeams

    commit 605eeceb36c01771d7146b39a6ec8b2184ad41a6
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 20 22:33:43 2017 -0700

        Update assembly info for 3.5.7-alpha release

    commit f837319db27323c19886545c510c6e49be487cd9
    Author: Shahin Shayandeh <shahins@microsoft.com>
    Date:   Thu Apr 6 18:15:48 2017 -0700

        cherry-pick develop commit 0a5262f..95a036e

        Update PromptConfirm's Options and Patterns getter (#2564)

        * Changed Options & Patterns getter

        * Apply feedback.

        Fix vulnerability in module base64url@1.0.6

        Upgrade module base64url to v2.0.0 - fixes vulnerability (Medium
        severity) introduced by concat-stream@1.4.10 as described here:
        https://snyk.io/test/npm/base64url/1.0.6

        Revert "Fix vulnerability in module base64url@1.0.6"

        This reverts commit a594363a17d9f0534e4828da6f378f7f6ac7d29c.

        Added spellCheck flag for LUIS to enable spell checking.

        Switch keyboards to suggested actions and deprecate KeyboardCards.

        Cleanup a few compiler warnings.

        *** Breaking change *** Got rid of static setters for PromptConfirm.Options and Patterns because they really needed to be instance based.  This caused tests to fail because they were global settings.

        Change IChannelCapability interface to return speak capabilities

        Add AutoInputHint IBotToUser and QueueDrainingDialogTask

        Add PassThroughDialogTask as a replacement to QueueDrainingDialogTask for test cases

        Add IMessageQueue and InputHintQueue

        Add tests for InputHintQueue

        Refresh tokens even when Forbidden is returned by channel.

        [C# SDK] Add SayAsync extension method (#2596)

        * Add SayAsync extension method

        * Fix typo on method documentation

        Update prompts to use new prompt recognizers (#2609)

        * Added PromptRecognizers & PromptOptions Speak related properties

        * Fix potential run condition when test PromptConfirm Options/Patterns

        * Update PromptStyler so it sets the message InputHint to ExpectingInput.

        * Cleanup code related to locale

        * Fix typo on IntegerOnly

        * changed PromptRecognizer resource keys to constants

        * implemented PromptChoice Options
         recognizeChoices, recognizeNumbers, recognizeOrdinals and minScore

        * fix PromptChoice with reverse ordinal selected

        * Added Localization tests for Prompts

        * Changed script for the message.InputHint

        * Moved PromptRecognizerTests resources

        * Extract IPromptRecognizers interface to use it in the PromptOptions

        * Changed RecognizeChoices signature

        * Added IPromptRecognizers documentation
        Changed name DefaultRecognizers to PromptRecognizers

        * consts PascalCase

        * Implemented PromptRecognizersCache with ConcurrentDictionary

        * Changed variable name synonyms

        * Updated multilingual files.

        * Update spanish XLF.

        * Added BooleanChoices to Spanish.

        * Added IPromptRecognizers Extension methods

        * Renamed PromptRecognizer

        * Fix Min/Max order

        * Rename synonyms to choices. Move Choices to PromptOptions and uses Choices in all the prompts instead of Options.

        Fix spanish xlf file and regenerate spanish resource file

        Fix different build warnings

        Fix typo in Luis swagger file

        Squashed commit of the following:

        commit 989192449c6b02d1e9546cd4121761988c958447
        Merge: 10233da 865b290
        Author: Nils <nils.whitmont@gmail.com>
        Date:   Thu Apr 20 15:43:14 2017 -0700

            Merge pull request #2087 from tachyons/patch-1

            [Node SDK] Fixed typo in examples

        commit 10233da2dbd57c6efc6565977c344a14b91cd058
        Merge: 86d4318 32adbd1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Thu Apr 20 13:16:26 2017 -0700

            Merge pull request #2623 from ejadib/patch-2

            Fix index when dealing with reverse ordinals

        commit 86d4318e75cd2411372fa9c2a2594d7f2f051f59
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Wed Apr 19 15:57:31 2017 -0700

            Send "endOfConversation" activity to cortana now

        commit 32adbd194c860b39b612de086ecced141dea86e1
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:40:37 2017 -0300

            Apply fix also to JS file

        commit 72dbcc3b63ae276f897aa40ac96fc3c2d3126b7d
        Author: Ezequiel Jadib <ezequieljadib@hotmail.com>
        Date:   Wed Apr 19 15:35:23 2017 -0300

            Fix index when dealing with reverse ordinals

            When dealing with reverse ordinals, the match.entity will be a negative value and so it needs to be subtracted from the choices.length to get the proper index. The current code is adding the match.entity value because its doing minus negative number.

        commit a4dee8f49658cfc24021182857f9614212b65cce
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 11:01:31 2017 -0700

            update issue issue template

        commit 645256010f2dc9ddb6831279e6757c8cbc85d408
        Author: Nils Whitmont <nils.whitmont@gmail.com>
        Date:   Wed Apr 19 10:44:22 2017 -0700

            update issue_template

        commit 5125d028c8a6022439cbf4fa73c61584ebe5c781
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 16:08:06 2017 -0700

            Added fix for MSTeams to allow starting of 1;1 chats.

        commit fc471c9d0444e50ee113db95db19207d373f3cff
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 15:57:46 2017 -0700

            Published v3.8.0-beta3 to npm @next tag

        commit aa9ae79ffeb7aaa39ad0722b11c2c10e619780e4
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:46:46 2017 -0700

            Removed speech sample. It's in the sample repository

        commit 727647079b7d8bd92e7f3a0031cbf0acbd3065b9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 18 13:45:02 2017 -0700

            Improvements to better support speech channels.

        commit d9fe548747742375b70b34e25923bd6fb08b1162
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:49:41 2017 -0700

            Publisshed beta 2 of v3.8

        commit 0bd5c778f7b9c96f1d70a034869ade6330e39fd2
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Fri Apr 14 16:24:41 2017 -0700

            Tweeks needed to better support speech.

        commit e3f38265dfc72ca0e3116be1005a84c130935fb5
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Thu Apr 13 16:57:43 2017 -0700

            Fix bug in suggested actions and update suggested actions sample

        commit 1cdcf7cc0ab2a4593c41e3d9ab7cd84298b303ec
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:05:45 2017 -0700

            Fixes in suggested actions sample

        commit 6f54b90b03b1c5edbaf87bf509d54a950bc8c3ee
        Author: Carlos Castro <ccastro@microsoft.com>
        Date:   Mon Mar 27 15:03:58 2017 -0700

            Suggested actions support for Node.js with the new protocol

        commit 3ad8d42cebfa2fee96bb5b87a91ba671f03e54af
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 22:07:06 2017 -0700

            Enable VSO build for bot builder nuget (#2597)

            Change bot builder app.config to copy always

            Add updateAssemblyInfo

            Add public key for delay signing the assmeblies

            Fix build issues with the public key path

            Fix Multilingual App toolkit build issue

            Remove samples from Release build

            Update builder.nuspec to only include relevant source code

        commit 51a6f3307bb09aae91c7e32dad7809ddbfcd02ef
        Merge: 9146eb7 4647095
        Author: dandriscoll <dan.driscoll@microsoft.com>
        Date:   Wed Apr 12 22:02:11 2017 -0700

            Merge pull request #2548 from Microsoft/feature/new-issue-template

            Create New Issue Template

        commit 9146eb7c6ad4df62d4d0f80ff1e1de359722fdbd
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 16:20:00 2017 -0700

            Update assembly info for release

        commit 3ff57f6739be29c9f10325e6e41ba4b8fd0a4a24
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:41:10 2017 -0700

            Update connector xml documentation

        commit 164e6db689bb84a59e03cd9840074d5f59cad6da
        Merge: cedb5f3 b854967
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:39:00 2017 -0700

            Merge remote-tracking branch 'botbuilder-public/master'

        commit cedb5f30b5ea6d9d97c0a0212270bfaea52362c6
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Wed Apr 12 15:34:14 2017 -0700

            Add Properties to ActivityEx object

        commit c5c03ef2bc6b20fc717c3e9a5b9ebe0ccdcf00a3
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:31 2017 -0700

            Update connector assembly version

        commit a5787601c9f44457ff66fb839f123cbdecf37b80
        Author: Shahin Shayandeh <shahins@microsoft.com>
        Date:   Tue Apr 11 15:23:17 2017 -0700

            Add EndOfConversationCodes

        commit b854967c9bb7a42a8302ef52a33fa5638a9bd874
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Tue Apr 11 09:06:13 2017 -0700

            Changed scale of calculated coverage scores.

        commit d5e21cc291587a7867d9fb61ee8605cdd47fd017
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 20:36:23 2017 -0700

            Node SDK not always sending user-agent

        commit 48443a765762d7d4ade273ea6ffe8be0eb8332a9
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:29:39 2017 -0700

            Choice prompt giving wrong retry prompt.

        commit e82b3dde7a2ba310d92c59b9f58f8b73dfce459e
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 19:23:30 2017 -0700

            Fixed out dated custom routes sample.

        commit ee0fb0bf2db3f7d720f3ae1aec0cfa4a7d1709b1
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:40:02 2017 -0700

            Published beta1 release of 3.8

        commit 2818c6998f250b3ad3cef2f4581e8af99c36a70c
        Author: Steven Ickman <stevenic@microsoft.com>
        Date:   Mon Apr 10 15:20:00 2017 -0700

            New prompts & speech support fixes + tests

        commit 41726fffd76f48a8c5876876f4221…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants