- No change to the express middleware.
- Breaking change to
verifySignature
function:- Signature changed. Now
secret
is the 4th argument and is optional, defaults toprocess.env.SLACK_SIGNING_SECRET
. - Before:
verifySignature(secret, signature, timestamp, body)
- After:
verifySignature(signature, timestamp, body, secret?)
- Signature changed. Now