Node Slack Sdk: @slack/cli-test@3.0.0 Release

Release date:
April 21, 2026
Previous version:
@slack/cli-test@2.2.2 (released March 13, 2026)
Magnitude:
327 Diff Delta
Contributors:
4 total committers
Data confidence:
Commits:

Top Contributors in @slack/cli-test@3.0.0

github-actions[bot]
WilliamBergamin
zimeg
dependabot-bot

Directory Browser for @slack/cli-test@3.0.0

All files are compared to previous version, @slack/cli-test@2.2.2. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Major Changes

  • d2b7a89: refactor(cli-test)!: rename env add/remove to env set/unset

    The Slack CLI v4.0.0 release changes the env commands to prefer set and unset aliases and the test tracers of this package were changed to match:

    - SLACK_TRACE_ENV_ADD_SUCCESS
    - SLACK_TRACE_ENV_REMOVE_SUCCESS
    + SLACK_TRACE_ENV_SET_SUCCESS
    + SLACK_TRACE_ENV_UNSET_SUCCESS
    
  • 5a9bb9a: refactor(cli-test)!: move 'create' to 'project create'

    Before the Slack CLI v4.0.0 release, the create command became a project subcommand while remaining aliased the same. This project now prefers:

    const createOutput = await SlackCLI.project.create({
      template: "slack-samples/bolt-js-starter-template",
      appPath,
      verbose: true,
    });
    

    But continues to run the slack create command for confidence in getting started guides.