chore(deps): update dependency @slack/bolt to v4.7.3#44
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the
Comment |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
December 3, 2025 18:44
fd2b181 to
3bd76f8
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
2 times, most recently
from
January 23, 2026 16:33
5d1c4e8 to
a430fb1
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
February 2, 2026 21:02
a430fb1 to
952e8c3
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
2 times, most recently
from
February 17, 2026 19:03
d7de90a to
5d2a668
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
March 5, 2026 20:54
5d2a668 to
72d5f5f
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
March 13, 2026 10:32
72d5f5f to
ce6b692
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
2 times, most recently
from
April 7, 2026 01:28
5a825db to
708a3f3
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
April 8, 2026 18:07
708a3f3 to
88d0b11
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
April 22, 2026 22:56
88d0b11 to
c4f89e1
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
April 30, 2026 22:34
c4f89e1 to
2dae88a
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
2 times, most recently
from
May 18, 2026 10:28
87d73b4 to
22cd980
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
May 28, 2026 01:09
22cd980 to
ab3d533
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
June 11, 2026 13:12
ab3d533 to
0b90fa9
Compare
renovate
Bot
force-pushed
the
renovate/slack-bolt-4.x-lockfile
branch
from
July 12, 2026 18:08
0b90fa9 to
ff4f03d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.4.0→4.7.3Release Notes
slackapi/bolt-js (@slack/bolt)
v4.7.3Compare Source
Patch Changes
341b60e: Reject emptysigningSecretat initialization to prevent accidental HMAC signature forgery.v4.7.2Compare Source
Patch Changes
4545150: Require exactssl_check=1value to bypass signature verification, preventing truthy but incorrect values from skipping authentication checks.v4.7.1Compare Source
Patch Changes
a18c359: fix: correct InvalidCustomPropertyError code and MemoryStore promise handlingv4.7.0Compare Source
What's Changed
Bring magic to a conversation with
sayStreamfor streaming messages and show loading status withsetStatus. Now available forapp.eventandapp.messagelisteners:The
respondfunction now acceptsthread_tsto publish responses in a thread:Configure ping timeouts, reconnect behavior, and other Socket Mode settings directly through
Appoptions:👾 Enhancements
🐛 Fixes
📚 Documentation
🧰 Maintenance
🎁 Dependencies
Core
CI
Dev
Examples
👋 New Contributors 🎉
Full Changelog: https://github.com/slackapi/bolt-js/compare/@slack/bolt@4.6.0...@slack/bolt@4.7.0
Milestone: https://github.com/slackapi/bolt-js/milestone/61
Package: https://www.npmjs.com/package/@slack/bolt/v/4.7.0
v4.6.0Compare Source
📚 Changelog
What's Changed
👾 Enhancements
🐛 Bug fixes
📚 Documentation
🤖 Dependencies
🧰 Maintenance
Milestone: https://github.com/slackapi/bolt-js/milestone/60?closed=1
Full Changelog: https://github.com/slackapi/bolt-js/compare/@slack/bolt@4.5.0...@slack/bolt@4.6.0
Package: https://www.npmjs.com/package/@slack/bolt/v/4.6.0
v4.5.0Compare Source
AI-Enabled Features: Loading States, Text Streaming, and Feedback Buttons
🍿 Preview
2025-10-06-loading-state-text-streaming-feedback.mov
📚 Changelog
⚡ Getting Started
Try the AI Agent Sample app to explore the AI-enabled features and existing Assistant helper:
After the app starts, send a message to the "slack-ai-agent-app" bot for a unique response.
⌛ Loading States
Loading states allows you to not only set the status (e.g. "My app is typing...") but also sprinkle some personality by cycling through a collection of loading messages:
Web Client SDK:
Assistant Class:
🔮 Text Streaming Helper
The
client.chatStream()helper utility can be used to streamline calling the 3 text streaming methods:🔠 Text Streaming Methods
Alternative to the Text Streaming Helper is to call the individual methods.
1)
client.chat.startStreamFirst, start a chat text stream to stream a response to any message:
2)
client.chat.appendStreamAfter starting a chat text stream, you can then append text to it in chunks (often from your favourite LLM SDK) to convey a streaming effect:
3)
client.chat.stopStreamLastly, you can stop the chat text stream to finalize your message:
👍🏻 Feedback Buttons
Add feedback buttons to the bottom of a message, after stopping a text stream, to gather user feedback:
What's Changed
👾 Enhancements
🐛 Bug fixes
📚 Documentation
🤖 Dependencies
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
This change is