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

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
benbrown committed May 20, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 5f84cb2 commit 6c96e16
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -11,6 +11,8 @@

* FIX: Allow size limits to be adjusted on the Express json and urlencoded parsers. Fixes [#1941](https://github.com/howdyai/botkit/issues/1941)

* FIX: Allow bots to be spawned with null config. Thanks to [@NxP4Code](https://github.com/NxP4Code) for [this pull request](https://github.com/howdyai/botkit/pull/1955)

# 4.8.1

* FIX: Fixing a bug introduced in 4.8 pertaining to spawning proactive bots for Slack. [#1937](https://github.com/howdyai/botkit/issues/1937)
1 change: 1 addition & 0 deletions packages/botbuilder-adapter-slack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
# 1.0.11

* Update dependencies to Botkit 4.9, Bot Framework 4.9
* Fox: Remove enforcement of as_user field when using v2 oauth - Thanks to [@garytowers](https://github.com/GaryTowers) for [this pull request](https://github.com/howdyai/botkit/pull/1944).

# 1.0.10

4 changes: 2 additions & 2 deletions packages/botbuilder-adapter-slack/readme.md
Original file line number Diff line number Diff line change
@@ -96,8 +96,8 @@ The application must implement its own mechanism for securely storing and retrie
```javascript
const adapter = new SlackAdapter({
clientSigningSecret: process.env.SLACK_SECRET,
clientId: process.env.CLIENTID, // oauth client id
clientSecret: process.env.CLIENTSECRET, // oauth client secret
clientId: process.env.CLIENT_ID, // oauth client id
clientSecret: process.env.CLIENT_SECRET, // oauth client secret
scopes: ['bot'], // oauth scopes requested, 'bot' deprecated by Slack in favor of granular permissions
redirectUri: process.env.REDIRECT_URI, // url to redirect post-login
oauthVersion: 'v1', // or use v2

0 comments on commit 6c96e16

Please sign in to comment.