Skip to content

build(deps): bump @slack/bolt from 4.6.0 to 4.7.1#27

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/slack/bolt-4.7.1
Apr 28, 2026
Merged

build(deps): bump @slack/bolt from 4.6.0 to 4.7.1#27
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/slack/bolt-4.7.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 28, 2026

Bumps @slack/bolt from 4.6.0 to 4.7.1.

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)

Changelog

Sourced from @​slack/bolt's changelog.

4.7.1

Patch Changes

  • a18c359: fix: correct InvalidCustomPropertyError code and MemoryStore promise handling
Commits
  • 7690366 chore: release (#2878)
  • f8b616e docs: redirect readme reference links to developer documentation (#2879)
  • 54f3577 ci: post release announcement to slack channel (#2877)
  • c24faff build: use version controlled lockfile of package dependencies for developmen...
  • 29167c5 chore(deps-dev): update serverless requirement from ^4.33.3 to ^4.34.0 in /ex...
  • 28eb36d chore(deps): update @​slack/web-api requirement from ^7.15.0 to ^7.15.1 (#2871)
  • b0d5cb8 chore(deps-dev): bump typescript from 6.0.2 to 6.0.3 in /examples/getting-sta...
  • a884fdc chore(deps): bump dotenv from 17.4.1 to 17.4.2 in /examples/custom-receiver (...
  • 1211d96 chore(deps-dev): bump typescript from 6.0.2 to 6.0.3 in /examples/custom-rece...
  • df5a9ca chore(deps): bump fastify from 5.8.4 to 5.8.5 in /examples/custom-receiver (#...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​slack/bolt since your current version.


@dependabot dependabot Bot added dependencies javascript Pull requests that update javascript code labels Apr 28, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 28, 2026 01:39
@dependabot dependabot Bot added dependencies javascript Pull requests that update javascript code labels Apr 28, 2026
@zimeg
Copy link
Copy Markdown
Member

zimeg commented Apr 28, 2026

@dependabot recreate

Bumps [@slack/bolt](https://github.com/slackapi/bolt-js) from 4.6.0 to 4.7.1.
- [Release notes](https://github.com/slackapi/bolt-js/releases)
- [Changelog](https://github.com/slackapi/bolt-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/slackapi/bolt-js/compare/@slack/bolt@4.6.0...v4.7.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slack/bolt-4.7.1 branch from 64fe44a to 93d178e Compare April 28, 2026 18:20
@github-actions github-actions Bot merged commit 31ed100 into main Apr 28, 2026
2 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/slack/bolt-4.7.1 branch April 28, 2026 18:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant