Skip to content

Update dependency @slack/web-api to v7.15.1#101

Merged
igorbelo merged 1 commit intomainfrom
renovate/slack-web-api-7.x
Apr 24, 2026
Merged

Update dependency @slack/web-api to v7.15.1#101
igorbelo merged 1 commit intomainfrom
renovate/slack-web-api-7.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 18, 2026

This PR contains the following updates:

Package Change Age Confidence
@slack/web-api (source) 7.13.07.15.1 age confidence

Release Notes

slackapi/node-slack-sdk (@​slack/web-api)

v7.15.1

Compare Source

Patch Changes
  • 3a9c444: build(deps): bump minimum axios version to 1.15.0
  • 175dcb8: Fix user-agent header to URI-encode characters outside the Latin-1 range, preventing errors when process.title contains non-ASCII characters

v7.15.0

Compare Source

Minor Changes
Patch Changes

v7.14.1

Compare Source

Patch Changes
  • 370cf22: chore(deps): bump axios to ^1.13.5

v7.14.0

Compare Source

Agent Thinking Steps: Display Tasks/Tools, Plans, and Markdown Text
🍿 Preview: Display as Plan
2026-02-11-thinking-steps-js-display-mode-plan.mov
🍿 Preview: Display as Timeline
2026-02-11-thinking-steps-js-display-mode-timeline.mov
📺 Chat Stream with 2 Display Mode
  • Plan Display Mode
  • Timeline Display Mode
👾 Chat Stream Structured Content

Now, you can display a mixture of structured content called "chunks":

  • 🔠 Markdown Text Block to format your text with standard markdown
  • ☑️ Task Card Block to display a single task, representing an AI Tool Call or general action
  • 🗒️ Plan Block to display a collection of related tasks
  • 📚 URL Sources Element to display references within a task card block

Available in:

  • 🔌 API Methods: chat.startStream, chat.appendStream, and chat.stopStream
  • 🛟 Chat Stream Helper: const stream = new ChatStreamer(...);, stream.append(...)
📖 Documentation
🍿 Getting Started
$ slack create

# → AI Agent App

#   → Bolt for JavaScript
#     Bolt for Python

Minor Changes
  • 1fbce32: feat: add thinking steps support to streaming methods

    chat.appendStream, chat.startStream, and chat.stopStream now accept a chunks parameter for streaming structured content including markdown text, plan updates, and task updates.

    Related PRs:

    • #​2467 - accept chunks as arguments to chat.{start,append,stop}Stream methods
    • #​2470 - accept chunks as arguments to chat stream helper
    • #​2479 - add task display mode option to start of chat streams
    • #​2481 - export the chat streamer and related options from the package
Example
```js
const stream = new ChatStreamer(client, client.logger, {
  channel: CHANNEL_ID,
  thread_ts: threadTs,
});

await stream.append({
  chunks: [
    {
      type: "markdown_text",
      text: "**Hello!** I am starting to process your request...\n\n",
    },
  ],
});

await stream.append({
  chunks: [
    {
      type: "plan_update",
      title: "Processing tasks...",
    },
    {
      type: "task_update",
      id: "task-1",
      title: "Fetching data from API",
      status: "complete",
      output: "Successfully retrieved 42 records",
    },
  ],
});

await stream.stop({
  chunks: [
    {
      type: "markdown_text",
      text: "\n\n---\n\n✅ **All tasks completed successfully!**\n",
    },
  ],
});
```
Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Monday through Friday (* * * * 1-5)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from a team as a code owner February 18, 2026 00:01
@renovate renovate Bot requested review from igorbelo and removed request for a team February 18, 2026 00:01
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch from 2aabf13 to f0860c9 Compare February 20, 2026 05:41
@renovate renovate Bot changed the title Update dependency @slack/web-api to v7.14.0 Update dependency @slack/web-api to v7.14.1 Feb 20, 2026
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch 2 times, most recently from 3f94915 to be4da54 Compare March 10, 2026 14:50
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch 3 times, most recently from f81f7b7 to ec72049 Compare March 17, 2026 11:05
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch from ec72049 to 32871b7 Compare March 20, 2026 05:28
@renovate renovate Bot changed the title Update dependency @slack/web-api to v7.14.1 Update dependency @slack/web-api to v7.15.0 Mar 20, 2026
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch 2 times, most recently from cf30a78 to 8c52d57 Compare April 1, 2026 10:59
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch 2 times, most recently from c717af8 to daf1610 Compare April 16, 2026 13:34
@renovate renovate Bot force-pushed the renovate/slack-web-api-7.x branch from daf1610 to 254691f Compare April 20, 2026 22:56
@renovate renovate Bot changed the title Update dependency @slack/web-api to v7.15.0 Update dependency @slack/web-api to v7.15.1 Apr 20, 2026
@igorbelo igorbelo merged commit 3403ac9 into main Apr 24, 2026
4 checks passed
@igorbelo igorbelo deleted the renovate/slack-web-api-7.x branch April 24, 2026 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant