Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Next Release #1929

Merged
merged 39 commits into from
Mar 17, 2020
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
eff8233
Remove `files` key with empty string value
viveksyngh Feb 1, 2020
79380e2
parse channelData with mustache in conversations
me-cedric Mar 10, 2020
4dcae4a
pass in the raw activity to the callback as well as the text
benbrown Mar 10, 2020
703e072
add an ingest middleware
benbrown Mar 10, 2020
f30475c
include incoming botkit message as paramter to the ask callbacks
benbrown Mar 10, 2020
1fbe0cc
update docs
benbrown Mar 10, 2020
08de469
adds oauth v2 support
sfny Mar 10, 2020
1351aac
add example response for oauth v2
sfny Mar 10, 2020
a1637af
update docs
benbrown Mar 11, 2020
6631a61
Fixes #1920 - Use contextual adapter when spawning bots,
benbrown Mar 11, 2020
61056cc
Merge branch 'patch-2' of https://github.com/sfny/botkit into benbrow…
benbrown Mar 11, 2020
e820414
Fixes #1892 - add support for slack oauth v2
benbrown Mar 11, 2020
14f9a03
changelog
benbrown Mar 11, 2020
9fbf495
Merge branch 'patch-3' of https://github.com/sfny/botkit into benbrow…
benbrown Mar 11, 2020
76b3437
update docs
benbrown Mar 11, 2020
33024d5
add docs for slack v2 oauth
benbrown Mar 11, 2020
2d9d8f6
add docs for slack v2 oauth
benbrown Mar 11, 2020
c4f20a2
add docs for slack v2 oauth
benbrown Mar 11, 2020
c9c2993
Merge branch 'fix-cisco-webex-message-send' of https://github.com/viv…
benbrown Mar 11, 2020
d332408
fix issue with webex adapter sending empty files parameter
benbrown Mar 11, 2020
1c56e87
Merge branch 'feature/parse-mustache-channelData' of https://github.c…
benbrown Mar 11, 2020
f045e1b
changelog
benbrown Mar 11, 2020
b658660
Fixes #1916 - check for webserver before attempting to add a route
benbrown Mar 11, 2020
f57e059
changelog
benbrown Mar 11, 2020
46f9120
Fix #1911 - copy authed_user into message object
benbrown Mar 11, 2020
f776ed5
Fixes #1849 - exclude conversation.properties field from key generation
benbrown Mar 11, 2020
a7942f7
Merge branch 'master' of github.com:howdyai/botkit into benbrown/4.7
benbrown Mar 11, 2020
3d2488e
Fixes #1834 Allow startConversationWithUser to work with Bot Framewor…
benbrown Mar 11, 2020
e46ba7a
Fixes #1878 - fixes behavior when beginDialog is called from inside a…
benbrown Mar 12, 2020
b1d4c77
update tests to test for beginDialog inside an ask
benbrown Mar 12, 2020
db64e24
Merge branch 'benbrown/4.7' into benbrown/1878
benbrown Mar 12, 2020
59760d2
Fixes #1932 - inserts a blank message after each prompt which allows …
benbrown Mar 13, 2020
87c0fec
add getActiveDialog() hasActiveDialog() and isDialogActive()
benbrown Mar 13, 2020
39f0a44
Merge branch 'master' of github.com:howdyai/botkit into benbrown/4.7
benbrown Mar 16, 2020
bbe592e
update package version numbers
benbrown Mar 16, 2020
5b5f3db
Update package versions for publishing
benbrown Mar 17, 2020
64390f4
update docs
benbrown Mar 17, 2020
0210ff5
update changelog with links to docs
benbrown Mar 17, 2020
56f2fcd
changelog formatting
benbrown Mar 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changelog
benbrown committed Mar 11, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 14f9a036e9b83d4ac41639a4f66eeab89d6e13b2
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@

* NEW: At long last, the convo.ask callbacks can receive the full incoming message payload in addition to the text content.
This allows developers to use payload values inside quick replies, button clicks and other rich operations. Many thanks to [@naikus](https://github.com/naikus) for the effort and patience it took to get this in! [PR #1801](https://github.com/howdyai/botkit/pull/1801)

* Multi-adapter support improved. Botkit will now spawn the appropriate type of Botworker when used in a multi-adapter scenario. [See this example for a demonstration of using multiple adapters in a single bot app](./packages/testbot/multiadapter.js). [Issue #1920](https://github.com/howdyai/botkit/issues/1920)
* Add support for Slack's v2 oauth. [More details here](./packages/botbuilder-adapter-slack/CHANGELOG.md#109). Thanks to [@sfny](https://github.com/sfny) for [PR #1928](https://github.com/howdyai/botkit/pull/1928)

# 4.6.1