Skip to content

chore(deps): update @slack/bolt requirement from ^4.6.0 to ^4.7.0 in /examples/message-metadata#2861

Merged
zimeg merged 1 commit intomainfrom
dependabot/npm_and_yarn/examples/message-metadata/slack/bolt-tw-4.7.0
Apr 12, 2026
Merged

chore(deps): update @slack/bolt requirement from ^4.6.0 to ^4.7.0 in /examples/message-metadata#2861
zimeg merged 1 commit intomainfrom
dependabot/npm_and_yarn/examples/message-metadata/slack/bolt-tw-4.7.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Updates the requirements on @slack/bolt to permit the latest version.

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 dependabot bot added area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 10, 2026
@dependabot dependabot bot requested a review from a team as a code owner April 10, 2026 15:54
@dependabot dependabot bot added area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 10, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Apr 10, 2026

⚠️ No Changeset found

Latest commit: 8c2ce66

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 10, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.59%. Comparing base (375d441) to head (8c2ce66).
⚠️ Report is 7 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2861   +/-   ##
=======================================
  Coverage   93.59%   93.59%           
=======================================
  Files          44       44           
  Lines        7855     7855           
  Branches      687      687           
=======================================
  Hits         7352     7352           
  Misses        498      498           
  Partials        5        5           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/message-metadata/slack/bolt-tw-4.7.0 branch 2 times, most recently from 6c8b423 to 68f5418 Compare April 10, 2026 16:09
Updates the requirements on [@slack/bolt](https://github.com/slackapi/bolt-js) to permit the latest version.
- [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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/message-metadata/slack/bolt-tw-4.7.0 branch from 68f5418 to 8c2ce66 Compare April 10, 2026 17:32
@zimeg zimeg merged commit f2d0882 into main Apr 12, 2026
26 checks passed
@zimeg zimeg deleted the dependabot/npm_and_yarn/examples/message-metadata/slack/bolt-tw-4.7.0 branch April 12, 2026 22:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant