Node Slack Sdk: @slack/[email protected] Release

Release date:
May 7, 2026
Previous version:
@slack/[email protected] (released May 7, 2026)
Magnitude:
292 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

Top Contributors in @slack/[email protected]

github-actions[bot]
zimeg
dependabot-bot
WilliamBergamin

Directory Browser for @slack/[email protected]

All files are compared to previous version, @slack/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Patch Changes

  • 3c4e927: fix: invoke commands without shell intermediate

    Behind the scenes commands are now spawned direct to avoid unexpected input and output redirection or odd argument parsings. This is what happens and what changed:

    Linux:

    - /bin/sh -c "slack trigger run --workflow #/workflows/give_kudos_workflow"
    + execvp("slack", ["trigger", "run", "--workflow", "#/workflows/give_kudos_workflow"])
    

    Windows:

    - cmd.exe /s /c "slack trigger run --workflow #/workflows/give_kudos_workflow"
    + CreateProcessW("slack", ["trigger", "run", "--workflow", "#/workflows/give_kudos_workflow"])