Skip to content

build(deps): bump @slack/web-api from 7.10.0 to 7.12.0#506

Merged
hello-ashleyintech merged 1 commit intomainfrom
dependabot/npm_and_yarn/slack/web-api-7.12.0
Nov 3, 2025
Merged

build(deps): bump @slack/web-api from 7.10.0 to 7.12.0#506
hello-ashleyintech merged 1 commit intomainfrom
dependabot/npm_and_yarn/slack/web-api-7.12.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

Bumps @slack/web-api from 7.10.0 to 7.12.0.

Release notes

Sourced from @​slack/web-api's releases.

@​slack/web-api@​7.11.0

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:

# Create a new AI Agent app
$ slack create slack-ai-agent-app --template slack-samples/bolt-js-assistant-template
$ cd slack-ai-agent-app/
Add your OPENAI_API_KEY
$ export OPENAI_API_KEY=sk-proj-ahM...
Run the local dev server
$ slack run

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:

app.event('message', async ({ client, context, event, logger }) => {
    // ...
    await client.assistant.threads.setStatus({
        channel_id: channelId,
        thread_ts: threadTs,
        status: 'thinking...',
        loading_messages: [
            'Teaching the hamsters to type faster…',
            'Untangling the internet cables…',
            'Consulting the office goldfish…',
            'Polishing up the response just for you…',
            'Convincing the AI to stop overthinking…',
        ],
    });
// Start a new message stream

</tr></table>

... (truncated)

Commits
  • 9e73506 chore(web-api): release @​slack/web-api@​7.12.0 (#2419)
  • 9ed8713 feat: add support to @​slack/web-api for work objects (#2231)
  • 16bd88e web-api(fix):Update SearchMessagesArguments to support cursor pagination (#2361)
  • 7c60024 chore(types): release @​slack/types@​2.18.0 (#2417)
  • 5e24c9d feat: add support to @​slack/types for work objects (#2412)
  • a2ef748 fix[cli-test]: update buffer type in tests (#2411)
  • ff03f78 chore(web-api): release @​slack/web-api@​7.11.0 (#2402)
  • a41a41c build(web-api): bump to minimum @​slack/types@​2.17.0 (#2401)
  • fa52a28 chore(types): release @​slack/types@​2.17.0 (#2400)
  • 7316568 feat: add ai-enabled features text streaming methods, feedback blocks, and lo...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 1, 2025
@hello-ashleyintech
Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps [@slack/web-api](https://github.com/slackapi/node-slack-sdk) from 7.10.0 to 7.12.0.
- [Release notes](https://github.com/slackapi/node-slack-sdk/releases)
- [Commits](https://github.com/slackapi/node-slack-sdk/compare/@slack/web-api@7.10.0...@slack/web-api@7.12.0)

---
updated-dependencies:
- dependency-name: "@slack/web-api"
  dependency-version: 7.12.0
  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/web-api-7.12.0 branch from 34972d3 to 4365ac7 Compare November 3, 2025 16:03
@codecov
Copy link
Copy Markdown

codecov bot commented Nov 3, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 99.86%. Comparing base (a540467) to head (4365ac7).
⚠️ Report is 4 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #506   +/-   ##
=======================================
  Coverage   99.86%   99.86%           
=======================================
  Files           7        7           
  Lines         722      722           
=======================================
  Hits          721      721           
  Misses          1        1           

☔ 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.

@hello-ashleyintech hello-ashleyintech merged commit 8e38857 into main Nov 3, 2025
6 checks passed
@hello-ashleyintech hello-ashleyintech deleted the dependabot/npm_and_yarn/slack/web-api-7.12.0 branch November 3, 2025 16:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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