Skip to content

version 1.3.3

Compare
Choose a tag to compare
@seratch seratch released this 28 Nov 06:37
· 6 commits to main since this release

Version 1.3.3 is now available with a new customize option called authorizeErrorHandler!

If you want to ignore authorize errors for edge cases, which are not actionable for your app, you can set the following option to immediately return 200 OK / ack message in Socket Mode to Slack API servers.

const app = new SlackApp({
  authorizeErrorHandler: async ({ request, error }) => new Response("", { status: 200 }),
  // other arguments ...
});

All changes can be reviewed at 1.3.2...1.3.3