Skip to content

Bump @slack/bolt from 4.6.0 to 4.7.0#27

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/slack/bolt-4.7.0
Apr 7, 2026
Merged

Bump @slack/bolt from 4.6.0 to 4.7.0#27
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/slack/bolt-4.7.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2026

Bumps @slack/bolt from 4.6.0 to 4.7.0.

Release notes

Sourced from @​slack/bolt's releases.

@​slack/bolt@​4.7.0

What's Changed

Bring magic to a conversation with sayStream for streaming messages and show loading status with setStatus. Now available for app.event and app.message listeners:

app.event('app_mention', async ({ sayStream, setStatus }) => {
  setStatus({
    status: 'Thinking...',
    loading_messages: ['Waking up...', 'Loading a witty response...'],
  });
  const stream = sayStream({ buffer_size: 100 });
  await stream.append({ markdown_text: 'Thinking... :thinking_face:\n\n' });
  await stream.append({ markdown_text: 'Here is my response!' });
  await stream.stop();
});

The respond function now accepts thread_ts to publish responses in a thread:

app.action('my_action', async ({ ack, respond }) => {
  await ack();
  await respond({ text: 'Replying in thread!', thread_ts: '1234567890.123456' });
});

Configure ping timeouts, reconnect behavior, and other Socket Mode settings directly through App options:

const app = new App({
  socketMode: true,
  appToken: process.env.SLACK_APP_TOKEN,
  token: process.env.SLACK_BOT_TOKEN,
  clientPingTimeout: 15000,
  serverPingTimeout: 60000,
  pingPongLoggingEnabled: true,
});

👾 Enhancements

🐛 Fixes

... (truncated)

Commits
  • 4cdbe3a chore(release): version @​slack/bolt@​4.7.0 (#2848)
  • e81864a feat: surface the setStatus argument to listeners if required event details a...
  • 175e0b1 chore(deps-dev): update serverless requirement from ^4.33.0 to ^4.33.3 in /ex...
  • 18e095a chore(deps): bump koa from 3.1.2 to 3.2.0 in /examples/custom-receiver (#2846)
  • 4659778 chore(deps): bump dotenv from 17.3.1 to 17.4.0 in /examples/custom-receiver (...
  • 94b7e63 chore(deps-dev): bump @​types/node from 24.12.0 to 24.12.2 in /examples/custom...
  • 8f9ef24 feat: add support for sayStream listener argument (#2841)
  • 7df4cf3 chore(deps): bump path-to-regexp from 8.3.0 to 8.4.0 in /examples/custom-rece...
  • 0dfaba0 chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /examples/custom-rece...
  • 27e6322 chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /examples/getting-sta...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@slack/bolt](https://github.com/slackapi/bolt-js) from 4.6.0 to 4.7.0.
- [Release notes](https://github.com/slackapi/bolt-js/releases)
- [Commits](https://github.com/slackapi/bolt-js/compare/@slack/bolt@4.6.0...@slack/bolt@4.7.0)

---
updated-dependencies:
- dependency-name: "@slack/bolt"
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions github-actions bot merged commit d6614b6 into main Apr 7, 2026
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/slack/bolt-4.7.0 branch April 7, 2026 10:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants