releases.shpreview
Slack/Node SDK/@slack/cli-test@3.0.2

@slack/cli-test@3.0.2

$npx @buildinternet/releases get rel_iwce-6Nm7G0fCfA9Iqbbq

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"])

Fetched May 7, 2026