You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cli-test/CHANGELOG.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,34 @@
1
1
# @slack/cli-test
2
2
3
+
## 3.0.0
4
+
5
+
### Major Changes
6
+
7
+
- d2b7a89: refactor(cli-test)!: rename env add/remove to env set/unset
8
+
9
+
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:
10
+
11
+
```diff
12
+
- SLACK_TRACE_ENV_ADD_SUCCESS
13
+
- SLACK_TRACE_ENV_REMOVE_SUCCESS
14
+
+ SLACK_TRACE_ENV_SET_SUCCESS
15
+
+ SLACK_TRACE_ENV_UNSET_SUCCESS
16
+
```
17
+
18
+
- 5a9bb9a: refactor(cli-test)!: move 'create' to 'project create'
19
+
20
+
Before the Slack CLI v4.0.0 release, the `create` command became a `project` subcommand while remaining aliased the same. This project now prefers:
1.`SlackCLI` - an object containing a variety of methods to interact with the CLI
36
-
- methods are named after [Slack CLI commands][commands], e.g. `SlackCLI.deploy()`
36
+
- methods are named after [Slack CLI commands][commands], e.g. `SlackCLI.deploy()`
37
37
2.`SlackCLIProcess` - a class that can be instantiated that exposes the ability to run arbitrary commands, with optional global flags as well as command-specific flags.
38
38
3.`SlackTracerId` - trace IDs to verify CLI command output
39
-
- see available exported IDs on `SlackTracerId` object
40
-
- to enable the CLI to show this output, any CLI commands executed by this library are invoked with the environment variable set: `SLACK_TEST_TRACE=true`
39
+
- see available exported IDs on `SlackTracerId` object
40
+
- to enable the CLI to show this output, any CLI commands executed by this library are invoked with the environment variable set: `SLACK_TEST_TRACE=true`
0 commit comments